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 5108 for trunk/NEMOGCM – NEMO

Changeset 5108 for trunk/NEMOGCM


Ignore:
Timestamp:
2015-03-02T14:42:04+01:00 (9 years ago)
Author:
cbricaud
Message:

Correction see ticket #1476

Location:
trunk/NEMOGCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMOGCM/CONFIG/C1D_PAPA/EXP00/namelist_cfg

    r5102 r5108  
    4242   nn_msh      =    0      !  create (=1) a mesh file or not (=0) 
    4343   rn_rdt      =  360.     !  time step for the dynamics (and tracer if nn_acc=0) 
    44    rn_rdtmin   =  360.           !  minimum time step on tracers (used if nn_acc=1) 
    45    rn_rdtmax   =  360.           !  maximum time step on tracers (used if nn_acc=1) 
     44   rn_rdtmin   =  360.     !  minimum time step on tracers (used if nn_acc=1) 
     45   rn_rdtmax   =  360.     !  maximum time step on tracers (used if nn_acc=1) 
    4646   jphgr_msh   =       1                 !  type of horizontal mesh 
    4747   ppglam0     =    -150.0               !  longitude of first raw and column T-point (jphgr_msh = 1) 
     
    102102&namsbc_ana    !   analytical surface boundary condition 
    103103!----------------------------------------------------------------------- 
    104    nn_tau000   =   100     !  gently increase the stress over the first ntau_rst time-steps 
    105    rn_utau0    =   0.1e0   !  uniform value for the i-stress 
    106104/ 
    107105!----------------------------------------------------------------------- 
     
    126124   sn_prec     = 'forcing_PAPASTATION_1h' ,         1         , 'prec'    ,   .false.    , .false. , 'yearly' , '' , '', '' 
    127125   sn_snow     = 'forcing_PAPASTATION_1h' ,         1         , 'snow'    ,   .false.    , .false. , 'yearly' , '' , '', '' 
    128    ln_2m         = .true.    !  air temperature and humidity referenced at 2m (T) instead 10m (F) 
     126   rn_zqt      =  2.    !  air temperature and humidity referenced at 2m (T) instead 10m (F) 
    129127/ 
    130128!----------------------------------------------------------------------- 
     
    219217&nameos        !   ocean physical parameters 
    220218!----------------------------------------------------------------------- 
     219   nn_eos      =  0      !  type of equation of state and Brunt-Vaisala frequency 
     220                                 !  =-1, TEOS-10 
     221                                 !  = 0, EOS-80 
     222                                 !  = 1, S-EOS   (simplified eos) 
     223   ln_useCT    = .false. ! use of Conservative Temp. ==> surface CT converted in Pot. Temp. in sbcssm 
    221224/ 
    222225!----------------------------------------------------------------------- 
     
    255258/ 
    256259!----------------------------------------------------------------------- 
     260&namc1d_dyndmp !   U & V newtonian damping                              ("key_c1d") 
     261!----------------------------------------------------------------------- 
     262/ 
     263!----------------------------------------------------------------------- 
    257264&namdyn_hpg    !   Hydrostatic pressure gradient option 
    258265!----------------------------------------------------------------------- 
     
    269276&namzdf        !   vertical physics 
    270277!----------------------------------------------------------------------- 
    271 !   rn_avm0     =   5.0e-6  !rbb 1.2e-4  !  vertical eddy viscosity   [m2/s]          (background Kz if not "key_zdfcst") 
    272 !   rn_avt0     =   5.0e-6  !rbb 1.2e-5  !  vertical eddy diffusivity [m2/s]          (background Kz if not "key_zdfcst") 
    273    ln_zdfevd   = .false. !rbb .true.    !  enhanced vertical diffusion (evd) (T) or not (F) 
     278   ln_zdfevd   = .false.        !  enhanced vertical diffusion (evd) (T) or not (F) 
    274279/ 
    275280!----------------------------------------------------------------------- 
     
    288293&namzdf_gls                !   GLS vertical diffusion                   ("key_zdfgls") 
    289294!----------------------------------------------------------------------- 
    290    rn_clim_galp  = 0.267   !  galperin limit 
    291295/ 
    292296!----------------------------------------------------------------------- 
  • trunk/NEMOGCM/NEMO/OPA_SRC/C1D/step_c1d.F90

    r4990 r5108  
    7272      ! Ocean physics update                (ua, va, ta, sa used as workspace) 
    7373      !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 
     74                         CALL eos_rab( tsb, rab_b )   ! before local thermal/haline expension ratio at T-points 
     75                         CALL eos_rab( tsn, rab_n )   ! now    local thermal/haline expension ratio at T-points 
    7476                         CALL bn2( tsb, rab_b, rn2b ) ! before Brunt-Vaisala frequency 
    7577                         CALL bn2( tsn, rab_n, rn2  ) ! now    Brunt-Vaisala frequency 
     
    132134                        CALL tra_nxt( kstp )       ! tracer fields at next time step 
    133135 
     136 
     137 
    134138      !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
    135139      ! Dynamics                                    (ta, sa used as workspace) 
Note: See TracChangeset for help on using the changeset viewer.