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 9190 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/ZDF/zdfdrg.F90 – NEMO

Ignore:
Timestamp:
2018-01-06T15:18:23+01:00 (6 years ago)
Author:
gm
Message:

dev_merge_2017: OPA_SRC: style only, results unchanged

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/ZDF/zdfdrg.F90

    r9168 r9190  
    289289      IF( ln_boost ) THEN           !* regional boost:   boost factor = 1 + regional boost 
    290290         IF(lwp) WRITE(numout,*) 
    291          IF(lwp) WRITE(numout,*) '   ==>>   use a regional boost read in ', TRIM(cl_file), ' file' 
    292          IF(lwp) WRITE(numout,*) '          using enhancement factor of ', rn_boost 
     291         IF(lwp) WRITE(numout,*) '   ==>>>   use a regional boost read in ', TRIM(cl_file), ' file' 
     292         IF(lwp) WRITE(numout,*) '           using enhancement factor of ', rn_boost 
    293293         ! cl_varname is a coefficient in [0,1] giving where to apply the regional boost 
    294294         CALL iom_open ( TRIM(cl_file), inum ) 
     
    309309      CASE( np_NONE )            !==  No top/bottom friction  ==!   (pCdU = 0) 
    310310         IF(lwp) WRITE(numout,*) 
    311          IF(lwp) WRITE(numout,*) '   ==>>   ',TRIM(cd_topbot),' free-slip, friction set to zero' 
     311         IF(lwp) WRITE(numout,*) '   ==>>>   ',TRIM(cd_topbot),' free-slip, friction set to zero' 
    312312         ! 
    313313         l_zdfdrg = .FALSE.         ! no time variation of the drag: set it one for all 
     
    318318      CASE( np_lin )             !==  linear friction  ==!   (pCdU = Cd0 * Uc0) 
    319319         IF(lwp) WRITE(numout,*) 
    320          IF(lwp) WRITE(numout,*) '   ==>>   linear ',TRIM(cd_topbot),' friction (constant coef = Cd0*Uc0 = ', rn_Cd0*rn_Uc0, ')' 
     320         IF(lwp) WRITE(numout,*) '   ==>>>   linear ',TRIM(cd_topbot),' friction (constant coef = Cd0*Uc0 = ', rn_Cd0*rn_Uc0, ')' 
    321321         ! 
    322322         l_zdfdrg = .FALSE.         ! no time variation of the Cd*|U| : set it one for all 
     
    327327      CASE( np_non_lin )         !== non-linear friction  ==!   (pCd0 = Cd0 ) 
    328328         IF(lwp) WRITE(numout,*) 
    329          IF(lwp) WRITE(numout,*) '   ==>>   quadratic ',TRIM(cd_topbot),' friction (propotional to module of the velocity)' 
    330          IF(lwp) WRITE(numout,*) '   with   Cd0 = ', rn_Cd0, ', and',   & 
    331             &                             ' a background velocity module of (rn_ke0)^1/2 = ', SQRT(rn_ke0), 'm/s)' 
     329         IF(lwp) WRITE(numout,*) '   ==>>>   quadratic ',TRIM(cd_topbot),' friction (propotional to module of the velocity)' 
     330         IF(lwp) WRITE(numout,*) '   with    a drag coefficient Cd0 = ', rn_Cd0, ', and' 
     331         IF(lwp) WRITE(numout,*) '          a background velocity module of (rn_ke0)^1/2 = ', SQRT(rn_ke0), 'm/s)' 
    332332         ! 
    333333         l_zdfdrg = .TRUE.          !* Cd*|U| updated at each time-step (it depends on ocean velocity) 
     
    338338      CASE( np_loglayer )       !== logarithmic layer formulation of friction  ==!   (CdU = (vkarman log(z/z0))^2 |U| ) 
    339339         IF(lwp) WRITE(numout,*) 
    340          IF(lwp) WRITE(numout,*) '   ==>>   quadratic ',TRIM(cd_topbot),' drag (propotional to module of the velocity)' 
     340         IF(lwp) WRITE(numout,*) '   ==>>>   quadratic ',TRIM(cd_topbot),' drag (propotional to module of the velocity)' 
    341341         IF(lwp) WRITE(numout,*) '   with   a logarithmic Cd0 formulation Cd0 = ( vkarman log(z/z0) )^2 ,' 
    342342         IF(lwp) WRITE(numout,*) '          a background velocity module of (rn_ke0)^1/2 = ', SQRT(pke0), 'm/s), ' 
Note: See TracChangeset for help on using the changeset viewer.