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 7954 for branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES – NEMO

Ignore:
Timestamp:
2017-04-24T09:19:00+02:00 (7 years ago)
Author:
gm
Message:

#1880 (HPC-09): OPA & TOP replace key_trabbl by ln_trabbl + in CONFIG, remove reference to key_zdfXXX and key_trabbl

Location:
branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES
Files:
26 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/ISOMIP/EXP00/namelist_cfg

    r7715 r7954  
    326326/ 
    327327!----------------------------------------------------------------------- 
    328 &namzdf        !   vertical physics 
    329 !----------------------------------------------------------------------- 
    330    rn_avm0     =   1.0e-3  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    331    rn_avt0     =   5.0e-5  !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    332    nn_avb      =    0      !  profile for background avt & avm (=1) or not (=0) 
    333    nn_havtb    =    0      !  horizontal shape for avtb (=1) or not (=0) 
    334    ln_zdfevd   = .true.    !  enhanced vertical diffusion (evd) (T) or not (F) 
    335    nn_evdm     =    1      !  evd apply on tracer (=0) or on tracer and momentum (=1) 
    336    rn_avevd    =   0.1     !  evd mixing coefficient [m2/s] 
    337    ln_zdfnpc   = .false.   !  Non-Penetrative Convective algorithm (T) or not (F) 
    338    nn_npc      =    1            !  frequency of application of npc 
    339    nn_npcp     =  365            !  npc control print frequency 
    340    ln_zdfexp   = .false.   !  time-stepping: split-explicit (T) or implicit (F) time stepping 
    341    nn_zdfexp   =    3            !  number of sub-timestep for ln_zdfexp=T 
    342 / 
    343 !----------------------------------------------------------------------- 
    344 &namzdf_ric    !   richardson number dependent vertical diffusion       ("key_zdfric" ) 
    345 !----------------------------------------------------------------------- 
    346 / 
    347 !----------------------------------------------------------------------- 
    348 &namzdf_tke    !   turbulent eddy kinetic dependent vertical diffusion  ("key_zdftke") 
    349 !----------------------------------------------------------------------- 
    350 / 
    351 !----------------------------------------------------------------------- 
    352 &namzdf_gls                !   GLS vertical diffusion                   ("key_zdfgls") 
    353 !----------------------------------------------------------------------- 
    354 / 
    355 !----------------------------------------------------------------------- 
    356 &namzdf_ddm    !   double diffusive mixing parameterization             ("key_zdfddm") 
    357 !----------------------------------------------------------------------- 
    358 / 
    359 !----------------------------------------------------------------------- 
    360 &namzdf_tmx    !   tidal mixing parameterization                        ("key_zdftmx") 
    361 !----------------------------------------------------------------------- 
    362    ln_tmx_itf  = .false.   !  ITF specific parameterisation 
     328&namzdf        !   vertical physics                                     (default: NO selection) 
     329!----------------------------------------------------------------------- 
     330   !                       ! type of vertical closure 
     331   ln_zdfcst   = .true.       !  constant mixing 
     332   ln_zdfric   = .false.      !  local Richardson dependent formulation (T =>   fill namzdf_ric) 
     333   ln_zdftke   = .false.      !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke) 
     334   ln_zdfgls   = .false.      !  Generic Length Scale closure           (T =>   fill namzdf_gls) 
     335   ! 
     336   !                       ! convection 
     337   ln_zdfevd   = .true.       !  enhanced vertical diffusion 
     338      nn_evdm     =    1         ! apply on tracer (=0) or on tracer and momentum (=1) 
     339      rn_evd      =   0.1        ! mixing coefficient [m2/s] 
     340   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     341      nn_npc      =    1         ! frequency of application of npc 
     342      nn_npcp     =  365         ! npc control print frequency 
     343   ! 
     344   ln_zdfddm   = .false.   ! double diffusive mixing 
     345   ! 
     346   ln_zdftmx   = .false.   ! tidal mixing parameterization              (T =>   fill namzdf_tmx) 
     347   ! 
     348   ln_zdfqiao  = .false.   ! surface wave-induced mixing                (T => ln_wave=ln_sdw=T ) 
     349   ! 
     350   !                       ! time-stepping 
     351   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     352   ! 
     353   !                       ! coefficients 
     354   rn_avm0     =   1.e-3     !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     355   rn_avt0     =   5.e-5     !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     356   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     357   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    363358/ 
    364359!----------------------------------------------------------------------- 
     
    380375/ 
    381376!----------------------------------------------------------------------- 
    382 &namflo       !   float parameters                                      ("key_float") 
    383 !----------------------------------------------------------------------- 
    384 / 
    385 !----------------------------------------------------------------------- 
    386 &namptr       !   Poleward Transport Diagnostic 
    387 !----------------------------------------------------------------------- 
    388 / 
    389 !----------------------------------------------------------------------- 
    390377&namhsb       !  Heat and salt budgets 
    391378!----------------------------------------------------------------------- 
    392379/ 
    393380!----------------------------------------------------------------------- 
    394 &namdct        ! transports through sections 
    395 !----------------------------------------------------------------------- 
    396 / 
    397 !----------------------------------------------------------------------- 
    398 &namobs       !  observation usage switch                               ('key_diaobs') 
     381&namobs       !  observation usage switch                               (ln_diaobs =T) 
    399382!----------------------------------------------------------------------- 
    400383/ 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/ISOMIP/cpp_ISOMIP.fcm

    r7715 r7954  
    1  bld::tool::fppkeys key_zdfcst key_iomput key_mpp_mpi key_nosignedzero  
     1 bld::tool::fppkeys   key_iomput key_mpp_mpi key_nosignedzero  
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT2_flux_cen2_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT2_flux_ubs_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT2_vect_eenH_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT2_vect_een_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT2_vect_ene_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT2_vect_ens_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT4_flux_cen2_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT4_flux_ubs_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT4_vect_eenH_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT4_vect_een_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT4_vect_ene_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_FCT4_vect_ens_cfg

    r7640 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/EXP00/namelist_cfg

    r7623 r7954  
    7272   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    7373                           !                              = 2 : nonlinear friction 
    74 / 
    75 !----------------------------------------------------------------------- 
    76 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    77 !----------------------------------------------------------------------- 
    78 / 
    79 !----------------------------------------------------------------------- 
    80 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    81 !----------------------------------------------------------------------- 
    8274/ 
    8375!----------------------------------------------------------------------- 
     
    197189   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    198190/ 
    199 !----------------------------------------------------------------------- 
    200 &namzdf        !   vertical physics 
    201 !----------------------------------------------------------------------- 
    202    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    203    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    204    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    205    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     191!!====================================================================== 
     192!!                     vertical physics namelists                     !! 
     193!!====================================================================== 
     194!----------------------------------------------------------------------- 
     195&namzdf        !   vertical physics                                     (default: NO selection) 
     196!----------------------------------------------------------------------- 
     197   !                       ! type of vertical closure 
     198   ln_zdfcst   = .true.       !  constant mixing 
     199   ! 
     200   !                       ! convection 
     201   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     202   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     203   ! 
     204   !                       ! time-stepping 
     205   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     206   ! 
     207   !                       ! coefficients 
     208   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     209   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     210   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     211   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    206212/ 
    207213!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/LOCK_EXCHANGE/cpp_LOCK_EXCHANGE.fcm

    r7423 r7954  
    1  bld::tool::fppkeys key_zdfcst key_iomput key_mpp_mpi key_nosignedzero 
     1 bld::tool::fppkeys   key_iomput key_mpp_mpi key_nosignedzero 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/OVERFLOW/EXP00/namelist_cfg

    r7624 r7954  
    6666   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    6767                           !                              = 2 : nonlinear friction 
    68 / 
    69 !----------------------------------------------------------------------- 
    70 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    71 !----------------------------------------------------------------------- 
    72 / 
    73 !----------------------------------------------------------------------- 
    74 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    75 !----------------------------------------------------------------------- 
    7668/ 
    7769!----------------------------------------------------------------------- 
     
    191183   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    192184/ 
    193 !----------------------------------------------------------------------- 
    194 &namzdf        !   vertical physics 
    195 !----------------------------------------------------------------------- 
    196    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    197    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    198    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    199    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     185!!====================================================================== 
     186!!                     vertical physics namelists                     !! 
     187!!====================================================================== 
     188!----------------------------------------------------------------------- 
     189&namzdf        !   vertical physics                                     (default: NO selection) 
     190!----------------------------------------------------------------------- 
     191   !                       ! type of vertical closure 
     192   ln_zdfcst   = .true.       !  constant mixing 
     193   ln_zdfric   = .false.      !  local Richardson dependent formulation (T =>   fill namzdf_ric) 
     194   ln_zdftke   = .false.      !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke) 
     195   ln_zdfgls   = .false.      !  Generic Length Scale closure           (T =>   fill namzdf_gls) 
     196   ! 
     197   !                       ! convection 
     198   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     199   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     200   ! 
     201   !                       ! time-stepping 
     202   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     203   ! 
     204   !                       ! coefficients 
     205   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     206   rn_avt0     =   0.         !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     207   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     208   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    200209/ 
    201210!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/OVERFLOW/EXP00/namelist_sco_FCT2_flux_ubs_cfg

    r7640 r7954  
    6666   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    6767                           !                              = 2 : nonlinear friction 
    68 / 
    69 !----------------------------------------------------------------------- 
    70 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    71 !----------------------------------------------------------------------- 
    72 / 
    73 !----------------------------------------------------------------------- 
    74 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    75 !----------------------------------------------------------------------- 
    7668/ 
    7769!----------------------------------------------------------------------- 
     
    191183   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    192184/ 
    193 !----------------------------------------------------------------------- 
    194 &namzdf        !   vertical physics 
    195 !----------------------------------------------------------------------- 
    196    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    197    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    198    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    199    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     185!!====================================================================== 
     186!!                     vertical physics namelists                     !! 
     187!!====================================================================== 
     188!----------------------------------------------------------------------- 
     189&namzdf        !   vertical physics                                     (default: NO selection) 
     190!----------------------------------------------------------------------- 
     191   !                       ! type of vertical closure 
     192   ln_zdfcst   = .false.      !  constant mixing 
     193   ln_zdfric   = .false.      !  local Richardson dependent formulation (T =>   fill namzdf_ric) 
     194   ln_zdftke   = .true.       !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke) 
     195   ln_zdfgls   = .false.      !  Generic Length Scale closure           (T =>   fill namzdf_gls) 
     196   ! 
     197   !                       ! convection 
     198   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     199   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     200   ! 
     201   !                       ! time-stepping 
     202   ln_zdfexp   = .false.   ! split-explicit (T) or implicit (F) scheme 
     203   ! 
     204   !                       ! coefficients 
     205   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     206   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     207   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     208   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    200209/ 
    201210!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/OVERFLOW/EXP00/namelist_zps_FCT2_flux_ubs_cfg

    r7640 r7954  
    6666   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    6767                           !                              = 2 : nonlinear friction 
    68 / 
    69 !----------------------------------------------------------------------- 
    70 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    71 !----------------------------------------------------------------------- 
    72 / 
    73 !----------------------------------------------------------------------- 
    74 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    75 !----------------------------------------------------------------------- 
    7668/ 
    7769!----------------------------------------------------------------------- 
     
    191183   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    192184/ 
    193 !----------------------------------------------------------------------- 
    194 &namzdf        !   vertical physics 
    195 !----------------------------------------------------------------------- 
    196    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    197    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    198    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    199    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     185!!====================================================================== 
     186!!                     vertical physics namelists                     !! 
     187!!====================================================================== 
     188!----------------------------------------------------------------------- 
     189&namzdf        !   vertical physics                                     (default: NO selection) 
     190!----------------------------------------------------------------------- 
     191   !                       ! type of vertical closure 
     192   ln_zdfcst   = .true.       !  constant mixing 
     193   ln_zdfric   = .false.      !  local Richardson dependent formulation (T =>   fill namzdf_ric) 
     194   ln_zdftke   = .false.      !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke) 
     195   ln_zdfgls   = .false.      !  Generic Length Scale closure           (T =>   fill namzdf_gls) 
     196   ! 
     197   !                       ! convection 
     198   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     199   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     200   ! 
     201   !                       ! time-stepping 
     202   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     203   ! 
     204   !                       ! coefficients 
     205   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     206   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     207   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     208   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    200209/ 
    201210!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/OVERFLOW/EXP00/namelist_zps_FCT4_flux_ubs_cfg

    r7640 r7954  
    6666   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    6767                           !                              = 2 : nonlinear friction 
    68 / 
    69 !----------------------------------------------------------------------- 
    70 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    71 !----------------------------------------------------------------------- 
    72 / 
    73 !----------------------------------------------------------------------- 
    74 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    75 !----------------------------------------------------------------------- 
    7668/ 
    7769!----------------------------------------------------------------------- 
     
    191183   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    192184/ 
    193 !----------------------------------------------------------------------- 
    194 &namzdf        !   vertical physics 
    195 !----------------------------------------------------------------------- 
    196    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    197    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    198    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    199    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     185!!====================================================================== 
     186!!                     vertical physics namelists                     !! 
     187!!====================================================================== 
     188!----------------------------------------------------------------------- 
     189&namzdf        !   vertical physics                                     (default: NO selection) 
     190!----------------------------------------------------------------------- 
     191   !                       ! type of vertical closure 
     192   ln_zdfcst   = .true.       !  constant mixing 
     193   ln_zdfric   = .false.      !  local Richardson dependent formulation (T =>   fill namzdf_ric) 
     194   ln_zdftke   = .false.      !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke) 
     195   ln_zdfgls   = .false.      !  Generic Length Scale closure           (T =>   fill namzdf_gls) 
     196   ! 
     197   !                       ! convection 
     198   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     199   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     200   ! 
     201   !                       ! time-stepping 
     202   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     203   ! 
     204   !                       ! coefficients 
     205   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     206   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     207   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     208   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    200209/ 
    201210!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/OVERFLOW/EXP00/namelist_zps_FCT4_vect_een_cfg

    r7640 r7954  
    6666   nn_bfr      =    0      !  type of bottom friction :   = 0 : free slip,  = 1 : linear friction 
    6767                           !                              = 2 : nonlinear friction 
    68 / 
    69 !----------------------------------------------------------------------- 
    70 &nambbc        !   bottom temperature boundary condition                (default: NO) 
    71 !----------------------------------------------------------------------- 
    72 / 
    73 !----------------------------------------------------------------------- 
    74 &nambbl        !   bottom boundary layer scheme                         ("key_trabbl") 
    75 !----------------------------------------------------------------------- 
    7668/ 
    7769!----------------------------------------------------------------------- 
     
    191183   rn_bhm_0      =     1.e+12  !  horizontal bilaplacian eddy viscosity [m4/s] 
    192184/ 
    193 !----------------------------------------------------------------------- 
    194 &namzdf        !   vertical physics 
    195 !----------------------------------------------------------------------- 
    196    rn_avm0     =   1.e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    197    rn_avt0     =   0.     !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    198    ln_zdfevd   = .false.  !  enhanced vertical diffusion (evd) 
    199    ln_zdfnpc   = .false.  !  Non-Penetrative Convective algorithm 
     185!!====================================================================== 
     186!!                     vertical physics namelists                     !! 
     187!!====================================================================== 
     188!----------------------------------------------------------------------- 
     189&namzdf        !   vertical physics                                     (default: NO selection) 
     190!----------------------------------------------------------------------- 
     191   !                       ! type of vertical closure 
     192   ln_zdfcst   = .true.       !  constant mixing 
     193   ln_zdfric   = .false.      !  local Richardson dependent formulation (T =>   fill namzdf_ric) 
     194   ln_zdftke   = .false.      !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke) 
     195   ln_zdfgls   = .false.      !  Generic Length Scale closure           (T =>   fill namzdf_gls) 
     196   ! 
     197   !                       ! convection 
     198   ln_zdfevd   = .false.      !  enhanced vertical diffusion 
     199   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     200   ! 
     201   !                       ! time-stepping 
     202   ln_zdfexp   = .false.      ! split-explicit (T) or implicit (F) scheme 
     203   ! 
     204   !                       ! coefficients 
     205   rn_avm0     =   1.e-4      !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     206   rn_avt0     =   0.e0       !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     207   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     208   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
    200209/ 
    201210!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/OVERFLOW/cpp_OVERFLOW.fcm

    r7423 r7954  
    1 bld::tool::fppkeys key_zdfcst key_mpp_mpi key_iomput key_nosignedzero 
     1bld::tool::fppkeys   key_mpp_mpi key_iomput key_nosignedzero 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/SAS_BIPER/EXP00/1_namelist_cfg

    r7821 r7954  
    3333/ 
    3434!----------------------------------------------------------------------- 
    35 &namcrs        !   Grid coarsening for dynamics output and/or 
    36                !   passive tracer coarsened online simulations 
     35&namcrs        !   coarsened grid (for outputs and/or TOP)              (ln_crs =T) 
    3736!----------------------------------------------------------------------- 
    3837/ 
     
    141140&namtra_ldfeiv !   eddy induced velocity param. 
    142141!---------------------------------------------------------------------------------- 
    143    ln_ldfeiv     =.true.   ! use eddy induced velocity parameterization 
    144    ln_ldfeiv_dia =.true.   ! diagnose eiv stream function and velocities 
    145    rn_aeiv_0     = 2000.   ! eddy induced velocity coefficient   [m2/s] 
    146    nn_aei_ijk_t  = 21      ! space/time variation of the eiv coeficient 
    147    !                                !   =-20 (=-30)    read in eddy_induced_velocity_2D.nc (..._3D.nc) file 
    148    !                                !   =  0           constant  
    149    !                                !   = 10 F(k)      =ldf_c1d  
    150    !                                !   = 20 F(i,j)    =ldf_c2d  
    151    !                                !   = 21 F(i,j,t)  =Treguier et al. JPO 1997 formulation 
    152    !                                !   = 30 F(i,j,k)  =ldf_c2d + ldf_c1d 
    153142/ 
    154143!----------------------------------------------------------------------- 
     
    209198/ 
    210199!----------------------------------------------------------------------- 
    211 &namzdf_tke    !   turbulent eddy kinetic dependent vertical diffusion  ("key_zdftke") 
    212 !----------------------------------------------------------------------- 
    213 / 
    214 !----------------------------------------------------------------------- 
    215 &namzdf_ddm    !   double diffusive mixing parameterization             ("key_zdfddm") 
    216 !----------------------------------------------------------------------- 
    217 / 
    218 !----------------------------------------------------------------------- 
    219 &namzdf_tmx    !   tidal mixing parameterization                        ("key_zdftmx") 
    220 !----------------------------------------------------------------------- 
    221 / 
    222 !----------------------------------------------------------------------- 
    223200&nammpp        !   Massively Parallel Processing                        ("key_mpp_mpi) 
    224201!----------------------------------------------------------------------- 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/SAS_BIPER/EXP00/namelist_cfg

    r7822 r7954  
    3333/ 
    3434!----------------------------------------------------------------------- 
    35 &namcrs        !   Grid coarsening for dynamics output and/or 
    36                !   passive tracer coarsened online simulations 
     35&namcrs        !   coarsened grid (for outputs and/or TOP)              (ln_crs =T) 
    3736!----------------------------------------------------------------------- 
    3837/ 
     
    210209/ 
    211210!----------------------------------------------------------------------- 
    212 &namzdf        !   vertical physics 
    213 !----------------------------------------------------------------------- 
    214 / 
    215 !----------------------------------------------------------------------- 
    216 &namzdf_tke    !   turbulent eddy kinetic dependent vertical diffusion  ("key_zdftke") 
    217 !----------------------------------------------------------------------- 
    218 / 
    219 !----------------------------------------------------------------------- 
    220 &namzdf_ddm    !   double diffusive mixing parameterization             ("key_zdfddm") 
    221 !----------------------------------------------------------------------- 
    222 / 
    223 !----------------------------------------------------------------------- 
    224 &namzdf_tmx    !   tidal mixing parameterization                        ("key_zdftmx") 
    225 !----------------------------------------------------------------------- 
    226 / 
    227 !----------------------------------------------------------------------- 
    228 &nammpp        !   Massively Parallel Processing                        ("key_mpp_mpi) 
     211&namzdf        !   vertical physics                                     (default: NO selection) 
     212!----------------------------------------------------------------------- 
     213   !                       ! type of vertical closure 
     214   ln_zdfcst   = .true.       !  constant mixing 
     215/ 
     216!----------------------------------------------------------------------- 
     217&namzdf_tke    !   turbulent eddy kinetic dependent vertical diffusion  (ln_zdftke =T) 
     218!----------------------------------------------------------------------- 
     219/ 
     220!----------------------------------------------------------------------- 
     221&namzdf_ddm    !   double diffusive mixing parameterization             (ln_zdfddm =T) 
     222!----------------------------------------------------------------------- 
     223/ 
     224!----------------------------------------------------------------------- 
     225&namzdf_tmx    !   tidal mixing parameterization                        (ln_zdftmx =T) 
     226!----------------------------------------------------------------------- 
     227/ 
     228!----------------------------------------------------------------------- 
     229&nammpp        !   Massively Parallel Processing                        ("key_mpp_mpi") 
    229230!----------------------------------------------------------------------- 
    230231/ 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/WAD/EXP00/namelist_cfg

    r7609 r7954  
    3232/ 
    3333!----------------------------------------------------------------------- 
    34 &namzgr        !   vertical coordinate 
    35 !----------------------------------------------------------------------- 
    36    ln_zps      = .false.   !  z-coordinate - partial steps 
    37    ln_sco      = .true.    !  s-coordinate 
    38 / 
    39 !----------------------------------------------------------------------- 
    4034&namdom        !   space and time domain (bathymetry, mesh, timestep) 
    4135!----------------------------------------------------------------------- 
     
    4640/ 
    4741!----------------------------------------------------------------------- 
    48 &namcrs        !   Grid coarsening for dynamics output and/or 
    49                !   passive tracer coarsened online simulations 
     42&namcrs        !   coarsened grid (for outputs and/or TOP)              (ln_crs =T) 
    5043!----------------------------------------------------------------------- 
    5144/ 
     
    6255   nn_fsbc     = 1         !  frequency of surface boundary condition computation 
    6356   !                       !     (also = the frequency of sea-ice model call) 
    64    ln_usr      = .true.    !  analytical formulation                    (T => fill namsbc_ana ) 
    65    ln_blk      = .false.   !  CORE bulk formulation                     (T => fill namsbc_core) 
     57   ln_usr      = .true.    !  analytical formulation                    (T => check usrdef_sbc) 
     58   ln_blk      = .false.   !  CORE bulk formulation                     (T => fill namsbc_blk ) 
    6659   nn_ice      = 0         !  =0 no ice boundary condition   , 
    67    ln_rnf      = .false.   !  runoffs                                   (T => fill namsbc_rnf) 
    68    ln_ssr      = .false.   !  Sea Surface Restoring on T and/or S       (T => fill namsbc_ssr) 
     60   ln_rnf      = .false.   !  runoffs                                   (T => fill namsbc_rnf ) 
     61   ln_ssr      = .false.   !  Sea Surface Restoring on T and/or S       (T => fill namsbc_ssr ) 
    6962   nn_fwb      = 0         !  FreshWater Budget: =0 unchecked 
    70 / 
    71 !----------------------------------------------------------------------- 
    72 &namsbc_ana    !   analytical surface boundary condition 
    73 !----------------------------------------------------------------------- 
    74    nn_tau000   =   100     !  gently increase the stress over the first ntau_rst time-steps 
    75    rn_utau0    =   0.0e0   !  uniform value for the i-stress 
    76 / 
    77 !----------------------------------------------------------------------- 
    78 &namsbc_flx    !   surface boundary condition : flux formulation 
    79 !----------------------------------------------------------------------- 
    80 / 
    81 !----------------------------------------------------------------------- 
    82 &namsbc_clio   !   namsbc_clio  CLIO bulk formulae 
    83 !----------------------------------------------------------------------- 
    84 / 
    85 !----------------------------------------------------------------------- 
    86 &namsbc_core   !   namsbc_core  CORE bulk formulae 
    87 !----------------------------------------------------------------------- 
    88 / 
    89 !----------------------------------------------------------------------- 
    90 &namsbc_mfs   !   namsbc_mfs  MFS bulk formulae 
    91 !----------------------------------------------------------------------- 
    9263/ 
    9364!----------------------------------------------------------------------- 
     
    350321   rn_bhm_0      =      0.     !  horizontal bilaplacian eddy viscosity [m4/s] 
    351322/ 
    352 !----------------------------------------------------------------------- 
    353 &namzdf        !   vertical physics 
    354 !----------------------------------------------------------------------- 
    355    nn_evdm     =    1      !  evd apply on tracer (=0) or on tracer and momentum (=1) 
    356 / 
    357 !----------------------------------------------------------------------- 
    358 &namzdf_ric    !   richardson number dependent vertical diffusion       ("key_zdfric" ) 
    359 !----------------------------------------------------------------------- 
    360 / 
    361 !----------------------------------------------------------------------- 
    362 &namzdf_tke    !   turbulent eddy kinetic dependent vertical diffusion  ("key_zdftke") 
     323!!====================================================================== 
     324!!                     vertical physics namelists                     !! 
     325!!====================================================================== 
     326!!    namzdf        vertical physics 
     327!!    namzdf_ric    richardson number vertical mixing                   (ln_zdfric=T) 
     328!!    namzdf_tke    TKE vertical mixing                                 (ln_zdftke=T) 
     329!!    namzdf_gls    GLS vertical mixing                                 (ln_zdfgls=T) 
     330!!    namzdf_tmx    tidal mixing parameterization                       (ln_zdftmx=T) 
     331!!====================================================================== 
     332!----------------------------------------------------------------------- 
     333&namzdf        !   vertical physics                                     (default: NO selection) 
     334!----------------------------------------------------------------------- 
     335   !                       ! type of vertical closure 
     336   ln_zdfcst   = .false.      !  constant mixing 
     337   ln_zdfric   = .false.      !  local Richardson dependent formulation (T =>   fill namzdf_ric) 
     338   ln_zdftke   = .true.       !  Turbulent Kinetic Energy closure       (T =>   fill namzdf_tke) 
     339   ln_zdfgls   = .false.      !  Generic Length Scale closure           (T =>   fill namzdf_gls) 
     340   ! 
     341   !                       ! convection 
     342   ln_zdfevd   = .true.       !  enhanced vertical diffusion 
     343      nn_evdm     =    1         ! apply on tracer (=0) or on tracer and momentum (=1) 
     344      rn_evd      =  100.        ! mixing coefficient [m2/s] 
     345   ln_zdfnpc   = .false.      !  Non-Penetrative Convective algorithm 
     346      nn_npc      =    1         ! frequency of application of npc 
     347      nn_npcp     =  365         ! npc control print frequency 
     348   ! 
     349   ln_zdfddm   = .false.   ! double diffusive mixing 
     350      rn_avts  =    1.e-4     !  maximum avs (vertical mixing on salinity) 
     351      rn_hsbfr =    1.6       !  heat/salt buoyancy flux ratio 
     352   ! 
     353   ln_zdftmx   = .false.   ! tidal mixing parameterization              (T =>   fill namzdf_tmx) 
     354   ! 
     355   ln_zdfqiao  = .false.   ! surface wave-induced mixing (Qiao et al. 2010) (T =>   ln_wave=ln_sdw=T. & fill namsbc_wave) 
     356   ! 
     357   !                       ! time-stepping 
     358   ln_zdfexp   = .false.   ! split-explicit (T) or implicit (F) scheme 
     359   ! 
     360   !                       ! coefficients 
     361   rn_avm0     =   1.2e-4     !  vertical eddy viscosity   [m2/s]       (background Kz if ln_zdfcst=F) 
     362   rn_avt0     =   1.2e-5     !  vertical eddy diffusivity [m2/s]       (background Kz if ln_zdfcst=F) 
     363   nn_avb      =    0         !  profile for background avt & avm (=1) or not (=0) 
     364   nn_havtb    =    0         !  horizontal shape for avtb (=1) or not (=0) 
     365/ 
     366!----------------------------------------------------------------------- 
     367&namzdf_tke    !   turbulent eddy kinetic dependent vertical diffusion  (ln_zdftke =T) 
    363368!----------------------------------------------------------------------- 
    364369   nn_etau     =   0       !  penetration of tke below the mixed layer (ML) due to internal & intertial waves 
    365370/ 
    366 !----------------------------------------------------------------------- 
    367 &namzdf_gls                !   GLS vertical diffusion                   ("key_zdfgls") 
    368 !----------------------------------------------------------------------- 
    369 / 
    370 !----------------------------------------------------------------------- 
    371 &namzdf_ddm    !   double diffusive mixing parameterization             ("key_zdfddm") 
    372 !----------------------------------------------------------------------- 
    373 / 
    374 !----------------------------------------------------------------------- 
    375 &namzdf_tmx    !   tidal mixing parameterization                        ("key_zdftmx") 
    376 !----------------------------------------------------------------------- 
    377    ln_tmx_itf  = .false.   !  ITF specific parameterisation 
    378 / 
     371 
     372!!====================================================================== 
     373!!                  ***  Miscellaneous namelists  *** 
     374!!====================================================================== 
    379375!----------------------------------------------------------------------- 
    380376&nammpp        !   Massively Parallel Processing                        ("key_mpp_mpi) 
     
    411407!!gm 
    412408!----------------------------------------------------------------------- 
    413 &namflo       !   float parameters                                      ("key_float") 
    414 !----------------------------------------------------------------------- 
    415 / 
    416 !----------------------------------------------------------------------- 
    417 &namptr       !   Poleward Transport Diagnostic 
    418 !----------------------------------------------------------------------- 
    419 / 
    420 !----------------------------------------------------------------------- 
    421409&namhsb       !  Heat and salt budgets 
    422410!----------------------------------------------------------------------- 
     
    430418/ 
    431419!----------------------------------------------------------------------- 
    432 &namobs       !  observation usage switch                               ('key_diaobs') 
     420&namobs       !  observation usage switch 
    433421!----------------------------------------------------------------------- 
    434422/ 
  • branches/2017/dev_r7881_HPC09_ZDF/NEMOGCM/CONFIG/TEST_CASES/WAD/cpp_WAD.fcm

    r7645 r7954  
    1  bld::tool::fppkeys key_zdftke key_iomput key_mpp_mpi key_nosignedzero 
     1 bld::tool::fppkeys   key_iomput key_mpp_mpi key_nosignedzero 
Note: See TracChangeset for help on using the changeset viewer.