New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
#98 (Bound the latent heat flux over sea-ice to avoid negative values (CLIO bulk)) – NEMO

Opened 16 years ago

Closed 16 years ago

#98 closed Bug (fixed)

Bound the latent heat flux over sea-ice to avoid negative values (CLIO bulk)

Reported by: ctlod Owned by: nemo
Priority: low Milestone:
Component: OCE Version:
Severity: Keywords:
Cc:

Description

In flxblk.F90 module:

only the qla_ice(:,:) field is bounded whereas zqla_ice is not

         !  latent heat flux 
            zqla_ice(ji,jj,jl) = zrhovaclei * ( zqsati        - zqatm(ji,jj) )
            qla_ice (ji,jj,jl) = MAX(0.e0, zqla_ice(ji,jj,jl) )

but is used in the computation of net heat flux qnsr_ice(:,:):

qnsr_ice(:,:) = zqlw_ice(:,:) - zqsb_ice(:,:) - zqla_ice(:,:)

This last line must be replaced with:

qnsr_ice(:,:) = zqlw_ice(:,:) - zqsb_ice(:,:) - qla_ice(:,:)

Commit History (1)

ChangesetAuthorTimeChangeLog
873ctlod2008-04-01T10:29:35+02:00

Bound the latent heat flux over sea-ice to avoid negative values (CLIO bulk), see ticket:#98

Change History (1)

comment:1 Changed 16 years ago by ctlod

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.