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.
Changeset 4634 for branches/2013/dev_r4028_CNRS_LIM3/NEMOGCM/NEMO/OPA_SRC/SBC/sbcblk_clio.F90 – NEMO

Ignore:
Timestamp:
2014-05-12T22:46:18+02:00 (10 years ago)
Author:
clem
Message:

major changes in heat budget

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r4028_CNRS_LIM3/NEMOGCM/NEMO/OPA_SRC/SBC/sbcblk_clio.F90

    r3625 r4634  
    599599               zdqlw = 4.0 * emic * stefan * ztice3 
    600600               zdqsb = zrhovacshi 
    601                zdqla = zrhovaclei * ( zdesidt * ( zqsati * zqsati / ( zesi * zesi ) ) * ( zpatm / 0.622 ) )    
     601                
     602               ! MV 2014 we must cap derivative also 
     603               IF ( p_qla(ji,jj,jl) .GT. 0.0 ) THEN 
     604                  zdqla = zrhovaclei * ( zdesidt * ( zqsati * zqsati / ( zesi * zesi ) ) * ( zpatm / 0.622 ) )    
     605               ELSE 
     606                  zdqla = 0.0 
     607               ENDIF 
    602608               ! 
    603609               p_dqla(ji,jj,jl) = zdqla                           ! latent flux sensitivity 
Note: See TracChangeset for help on using the changeset viewer.