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 6225 for branches/2014/dev_r4704_NOC5_MPP_BDY_UPDATE/NEMOGCM/CONFIG/SHARED/namelist_top_ref – NEMO

Ignore:
Timestamp:
2016-01-08T10:35:19+01:00 (8 years ago)
Author:
jamesharle
Message:

Update MPP_BDY_UPDATE branch to be consistent with head of trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2014/dev_r4704_NOC5_MPP_BDY_UPDATE/NEMOGCM/CONFIG/SHARED/namelist_top_ref

    r4340 r6225  
    1111!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
    1212!----------------------------------------------------------------------- 
    13 &namtrc_run     !   run information 
     13&namtrc_run      !   run information 
    1414!----------------------------------------------------------------------- 
    1515   nn_dttrc      =  1        !  time step frequency for passive sn_tracers 
    1616   nn_writetrc   =  5475     !  time step frequency for sn_tracer outputs 
    17    ln_top_euler  = .false.    !  use Euler time-stepping for TOP 
     17   ln_top_euler  = .false.   !  use Euler time-stepping for TOP 
    1818   ln_rsttr      = .false.   !  start from a restart file (T) or not (F) 
    1919   nn_rsttr      =   0       !  restart control = 0 initial time step is not compared to the restart file value 
    20                            !                  = 1 do not use the value in the restart file 
    21                            !                  = 2 calendar parameters read in the restart file 
     20                             !                  = 1 do not use the value in the restart file 
     21                             !                  = 2 calendar parameters read in the restart file 
    2222   cn_trcrst_in  = "restart_trc"   !  suffix of pass. sn_tracer restart name (input) 
     23   cn_trcrst_indir = "."           !  directory from which to read input passive tracer restarts 
    2324   cn_trcrst_out = "restart_trc"   !  suffix of pass. sn_tracer restart name (output) 
     25   cn_trcrst_outdir = "."          !  directory to which to write output passive tracer restarts 
    2426/ 
    2527!----------------------------------------------------------------------- 
    26 &namtrc     !   tracers definition 
     28&namtrc          !   tracers definition 
    2729!----------------------------------------------------------------------- 
    2830   ln_trcdta     =   .true.  !  Initialisation from data input file (T) or not (F) 
     
    3335&namtrc_dta      !    Initialisation from data input file 
    3436!----------------------------------------------------------------------- 
    35 ! 
    36    cn_dir        =  './'      !  root directory for the location of the data files 
     37   cn_dir        =  './'     !  root directory for the location of the data files 
    3738/ 
    3839!----------------------------------------------------------------------- 
    39 &namtrc_adv    !   advection scheme for passive tracer  
     40&namtrc_adv      !   advection scheme for passive tracer  
    4041!----------------------------------------------------------------------- 
    41    ln_trcadv_cen2    =  .false.  !  2nd order centered scheme    
    42    ln_trcadv_tvd     =  .true.  !  TVD scheme 
    43    ln_trcadv_muscl   =  .false.   !  MUSCL scheme 
    44    ln_trcadv_muscl2  =  .false.  !  MUSCL2 scheme + cen2 at boundaries 
    45    ln_trcadv_ubs     =  .false.  !  UBS scheme 
    46    ln_trcadv_qck     =  .false.  !  QUICKEST scheme 
    47    ln_trcadv_msc_ups =  .false.  !  use upstream scheme within muscl 
     42   ln_trcadv_cen =  .false.  !  2nd order centered scheme 
     43      nn_cen_h   =  4               !  =2/4, horizontal 2nd order CEN / 4th order CEN 
     44      nn_cen_v   =  4               !  =2/4, vertical   2nd order CEN / 4th order COMPACT 
     45   ln_trcadv_fct =  .false.  !  FCT scheme 
     46      nn_fct_h   =  2               !  =2/4, horizontal 2nd / 4th order  
     47      nn_fct_v   =  2               !  =2/4, vertical   2nd / COMPACT 4th order  
     48      nn_fct_zts =  0               !  >=1,  2nd order FCT scheme with vertical sub-timestepping 
     49      !                             !        (number of sub-timestep = nn_fct_zts) 
     50   ln_trcadv_mus =  .false.  !  MUSCL scheme 
     51      ln_mus_ups =  .false.         !  use upstream scheme near river mouths 
     52   ln_trcadv_ubs =  .false.  !  UBS scheme 
     53      nn_ubs_v   =  2               !  =2  , vertical 2nd order FCT 
     54   ln_trcadv_qck =  .false.  !  QUICKEST scheme 
    4855/ 
    4956!----------------------------------------------------------------------- 
    50 &namtrc_ldf    !   lateral diffusion scheme for passive tracer  
     57&namtrc_ldf      !   lateral diffusion scheme for passive tracer  
    5158!----------------------------------------------------------------------- 
    52    ln_trcldf_diff   =  .true.   !  performs lateral diffusion (T) or not (F) 
    53 !                               !  Type of the operator :  
    54    ln_trcldf_lap    =  .true.   !     laplacian operator        
    55    ln_trcldf_bilap  =  .false.  !     bilaplacian operator      
    56                                 !  Direction of action  : 
    57    ln_trcldf_level  =  .false.  !     iso-level                 
    58    ln_trcldf_hor    =  .false.  !     horizontal (geopotential)         (require "key_ldfslp" when ln_sco=T) 
    59    ln_trcldf_iso    =  .true.   !     iso-neutral                       (require "key_ldfslp") 
    60 !                               !  Coefficient 
    61    rn_ahtrc_0       =  2000.    !  horizontal eddy diffusivity for tracers [m2/s] 
    62    rn_ahtrb_0       =     0.    !     background eddy diffusivity for ldf_iso [m2/s] 
     59!                            !  Type of the operator:   
     60   ln_trcldf_lap   =  .true.     !    laplacian operator 
     61   ln_trcldf_blp   =  .false.    !  bilaplacian operator 
     62   !                         !  Direction of action: 
     63   ln_trcldf_lev   =  .false.    !  iso-level 
     64   ln_trcldf_hor   =  .false.    !  horizontal (geopotential) 
     65   ln_trcldf_iso   =  .true.     !  iso-neutral (standard operator) 
     66   ln_trcldf_triad =  .false.    !  iso-neutral (triad    operator) 
     67   !                         !  Coefficient  
     68   rn_ahtrc_0      = 2000.       !  lateral eddy diffusivity   (lap. operator) [m2/s] 
     69   rn_bhtrc_0      = 1.e+12      !  lateral eddy diffusivity (bilap. operator) [m4/s] 
    6370/ 
    6471!----------------------------------------------------------------------- 
    65 &namtrc_zdf        !   vertical physics 
     72&namtrc_zdf      !   vertical physics 
    6673!----------------------------------------------------------------------- 
    67    ln_trczdf_exp   =  .false.  !  split explicit (T) or implicit (F) time stepping 
    68    nn_trczdf_exp   =   3       !  number of sub-timestep for ln_trczdfexp=T 
     74   ln_trczdf_exp =  .false.  !  split explicit (T) or implicit (F) time stepping 
     75   nn_trczdf_exp =   3       !  number of sub-timestep for ln_trczdfexp=T 
    6976/ 
    7077!----------------------------------------------------------------------- 
    71 &namtrc_rad        !  treatment of negative concentrations  
     78&namtrc_rad      !  treatment of negative concentrations  
    7279!----------------------------------------------------------------------- 
    73    ln_trcrad   =  .true.  !  artificially correct negative concentrations (T) or not (F) 
     80   ln_trcrad     =  .true.   !  artificially correct negative concentrations (T) or not (F) 
    7481/ 
    7582!----------------------------------------------------------------------- 
    76 &namtrc_dmp    !   passive tracer newtonian damping    
     83&namtrc_dmp      !   passive tracer newtonian damping    
    7784!----------------------------------------------------------------------- 
    78    nn_hdmp_tr  =   -1      !  horizontal shape =-1, damping in Med and Red Seas only 
    79                            !                   =XX, damping poleward of XX degrees (XX>0) 
    80                            !                      + F(distance-to-coast) + Red and Med Seas 
    81    nn_zdmp_tr  =    1      !  vertical   shape =0    damping throughout the water column 
    82                            !                   =1 no damping in the mixing layer (kz  criteria) 
    83                            !                   =2 no damping in the mixed  layer (rho crieria) 
    84    rn_surf_tr  =   50.     !  surface time scale of damping   [days] 
    85    rn_bot_tr   =  360.     !  bottom  time scale of damping   [days] 
    86    rn_dep_tr   =  800.     !  depth of transition between rn_surf and rn_bot [meters] 
    87    nn_file_tr  =    0      !  create a damping.coeff NetCDF file (=1) or not (=0) 
     85   nn_zdmp_tr    =    1      !  vertical   shape =0    damping throughout the water column 
     86                             !                   =1 no damping in the mixing layer (kz  criteria) 
     87                             !                   =2 no damping in the mixed  layer (rho crieria) 
     88   cn_resto_tr   = 'resto_tr.nc'    !  create a damping.coeff NetCDF file (=1) or not (=0) 
    8889/ 
    8990!----------------------------------------------------------------------- 
    90 &namtrc_trd       !   diagnostics on tracer trends        ('key_trdtrc') 
    91 !                          or mixed-layer trends          ('key_trdmld_trc') 
    92 !---------------------------------------------------------------------- 
    93    nn_trd_trc  =  5475      !  time step frequency and tracers trends 
    94    nn_ctls_trc =   0        !  control surface type in mixed-layer trends (0,1 or n<jpk) 
    95    rn_ucf_trc  =   1        !  unit conversion factor (=1 -> /seconds ; =86400. -> /day) 
    96    ln_trdmld_trc_restart = .false.  !  restart for ML diagnostics 
    97    ln_trdmld_trc_instant = .true.  !  flag to diagnose trends of instantantaneous or mean ML T/S 
    98    ln_trdtrc(1)  =   .true. 
    99    ln_trdtrc(2)  =   .true. 
    100    ln_trdtrc(23) =   .true. 
     91&namtrc_ice      !    Representation of sea ice growth & melt effects 
     92!----------------------------------------------------------------------- 
     93   nn_ice_tr     =  -1       !  tracer concentration in sea ice  
     94                             !    =-1 (no vvl: identical cc in ice and ocean / vvl: cc_ice = 0) 
     95                             !    = 0 (no vvl: cc_ice = zero / vvl: cc_ice = ) 
     96                             !    = 1 prescribed to a namelist value (implemented in pisces only) 
    10197/ 
    10298!----------------------------------------------------------------------- 
    103 &namtrc_dia       !   parameters for passive tracer additional diagnostics 
     99&namtrc_trd      !   diagnostics on tracer trends                       ('key_trdtrc') 
     100!                          or mixed-layer trends                        ('key_trdmld_trc') 
     101!---------------------------------------------------------------------- 
     102   nn_trd_trc    =  5475     !  time step frequency and tracers trends 
     103   nn_ctls_trc   =   0       !  control surface type in mixed-layer trends (0,1 or n<jpk) 
     104   rn_ucf_trc    =   1       !  unit conversion factor (=1 -> /seconds ; =86400. -> /day) 
     105   ln_trdmld_trc_restart = .false. !  restart for ML diagnostics 
     106   ln_trdmld_trc_instant = .true.  !  flag to diagnose trends of instantantaneous or mean ML T/S 
     107   ln_trdtrc( 1) = .true. 
     108   ln_trdtrc( 2) = .true. 
     109   ln_trdtrc(23) = .true. 
     110/ 
     111!----------------------------------------------------------------------- 
     112&namtrc_dia      !   parameters for passive tracer additional diagnostics 
    104113!---------------------------------------------------------------------- 
    105114   ln_diatrc     =  .true.   !  save additional diag. (T) or not (F) 
    106115   ln_diabio     =  .true.   !  output biological trends 
    107116   nn_writedia   =  5475     !  time step frequency for diagnostics 
    108    nn_writebio   =    10     !: frequency of biological outputs 
     117   nn_writebio   =    10     !  frequency of biological outputs 
    109118/ 
    110119!---------------------------------------------------------------------- 
    111 ! namtrc_bc       !   data for boundary conditions 
     120&namtrc_bc       !   data for boundary conditions 
    112121!----------------------------------------------------------------------- 
    113 &namtrc_bc 
    114 ! 
    115    cn_dir        =  './'      !  root directory for the location of the data files 
     122   cn_dir_sbc    =  './'     !  root directory for the location of SURFACE data files 
     123   cn_dir_cbc    =  './'     !  root directory for the location of COASTAL data files 
     124   cn_dir_obc    =  './'     !  root directory for the location of OPEN data files 
    116125/ 
     126!---------------------------------------------------------------------- 
     127&namtrc_bdy      !   Setup of tracer boundary conditions 
     128!----------------------------------------------------------------------- 
     129   cn_trc_dflt   = 'neumann' !  OBC applied by default to all tracers 
     130   cn_trc        = 'none'    !  Boundary conditions used for tracers with data files (selected in namtrc) 
     131 
     132   nn_trcdmp_bdy = 0         !  Use damping timescales defined in nambdy of namelist 
     133                             !  = 0 NO damping of tracers at open boudaries 
     134                             !  = 1 Only for tracers forced with external data 
     135                             !  = 2 Damping applied to all tracers 
     136/ 
Note: See TracChangeset for help on using the changeset viewer.