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 810 – NEMO

Changeset 810


Ignore:
Timestamp:
2008-02-06T17:36:03+01:00 (16 years ago)
Author:
ctlod
Message:

dev_001_SBC: problem in the computation of p_dqla(:,:), prf1(:,:) p_fr2(:,:) fields in CORE bulk formulae, see ticket:#63

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_001_SBC/NEMO/OPA_SRC/SBC/sbcblk_core.F90

    r802 r810  
    349349      INTEGER  ::   ji, jj                    ! dummy loop indices 
    350350      REAL(wp) ::   zst3 
    351       REAL(wp) ::   zcoef_wnorm, zcoef_dqlw, zcoef_dqla, zcoef_dqsb, zcoef_fr12 
     351      REAL(wp) ::   zcoef_wnorm, zcoef_dqlw, zcoef_dqla, zcoef_dqsb 
     352      REAL(wp) ::   zcoef_frca                       ! fractional cloud amount 
    352353      REAL(wp) ::   zwnorm_f, zwndi_f , zwndj_f      ! relative wind module and components at F-point 
    353354      REAL(wp) ::             zwndi_t , zwndj_t      ! relative wind components at T-point 
     
    362363      zcoef_wnorm = rhoa * Cice 
    363364      zcoef_dqlw = 4.0 * 0.95 * Stef 
    364       zcoef_dqla = -Ls * Cice * 0.98 * 11637800. / (rhoa*rhoa) * (-5897.8) 
     365      zcoef_dqla = -Ls * Cice * 11637800. * (-5897.8) 
    365366      zcoef_dqsb = rhoa * cpa * Cice 
    366       zcoef_fr12 = 1.0  - 0.3       !!!gm ??? ! sf(jp_snow)%fnow(:,:) 
     367      zcoef_frca = 1.0  - 0.3 
    367368 
    368369!!gm brutal.... 
     
    452453      ! FRACTIONs of net shortwave radiation which is not absorbed in the 
    453454      ! thin surface layer and penetrates inside the ice cover 
    454       ! ( Maykut and Untersteiner, 1971 ; Elbert and Curry, 1993 ) 
     455      ! ( Maykut and Untersteiner, 1971 ; Ebert and Curry, 1993 ) 
    455456     
    456457!CDIR COLLAPSE 
    457       p_fr1(:,:) = ( 0.18 * zcoef_fr12 + 0.35 * sf(jp_snow)%fnow(:,:) ) 
    458 !CDIR COLLAPSE 
    459       p_fr2(:,:) = ( 0.82 * zcoef_fr12 + 0.65 * sf(jp_snow)%fnow(:,:) ) 
     458      p_fr1(:,:) = ( 0.18 * ( 1.0 - zcoef_frca ) + 0.35 * zcoef_frca ) 
     459!CDIR COLLAPSE 
     460      p_fr2(:,:) = ( 0.82 * ( 1.0 - zcoef_frca ) + 0.65 * zcoef_frca ) 
    460461        
    461462!CDIR COLLAPSE 
Note: See TracChangeset for help on using the changeset viewer.