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

Changeset 5774


Ignore:
Timestamp:
2015-10-02T11:39:50+02:00 (9 years ago)
Author:
cetlod
Message:

LDF-ADV, step II.2: phasing the improvements/simplifications of advective tracer trend: minor bug corrections

Location:
branches/2015/dev_r5721_CNRS9_NOC3_LDF/NEMOGCM
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5721_CNRS9_NOC3_LDF/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/1_namelist_cfg

    r5771 r5774  
    144144!----------------------------------------------------------------------- 
    145145   ln_traadv_fct =  .true.    !  FCT scheme 
    146       nn_fct_h   =  2               !  =2/4, horizontal 2nd / 4th order  
    147       nn_fct_v   =  2               !  =2/4, vertical   2nd / COMPACT 4th order  
     146      nn_fct_h   =  2               !  =2/4, horizontal 2nd / 4th order 
     147      nn_fct_v   =  2               !  =2/4, vertical   2nd / COMPACT 4th order 
    148148      nn_fct_zts =  0               !  >=1,  2nd order FCT scheme with vertical sub-timestepping 
    149149      !                             !        (number of sub-timestep = nn_fct_zts) 
    150150/ 
    151151!----------------------------------------------------------------------- 
    152 &namtra_ldf    !   lateral diffusion scheme for tracers  
    153 !----------------------------------------------------------------------- 
    154  
     152&namtra_ldf    !   lateral diffusion scheme for tracers 
     153!----------------------------------------------------------------------- 
    155154   rn_aht_0         =  1000.    !  horizontal eddy diffusivity for tracers [m2/s] 
    156    rn_aeiv_0        =     0.    !  eddy induced velocity coefficient [m2/s]    (require "key_traldf_eiv") 
     155/ 
     156!---------------------------------------------------------------------------------- 
     157&namtra_ldfeiv !   eddy induced velocity param. 
     158!---------------------------------------------------------------------------------- 
     159   rn_aeiv_0     = 0.   ! eddy induced velocity coefficient   [m2/s] 
    157160/ 
    158161!----------------------------------------------------------------------- 
  • branches/2015/dev_r5721_CNRS9_NOC3_LDF/NEMOGCM/NEMO/TOP_SRC/TRP/trcadv.F90

    r5770 r5774  
    204204      ! 
    205205 
    206       ioptio = 0                      ! Parameter control 
    207       IF( ln_trcadv_cen                      )   nadv = np_CEN 
    208       IF( ln_trcadv_fct                      )   nadv = np_FCT 
    209       IF( ln_trcadv_fct .AND. nn_fct_zts > 0 )   nadv = np_FCT_zts 
    210       IF( ln_trcadv_mus                      )   nadv = np_MUS 
    211       IF( ln_trcadv_ubs                      )   nadv = np_UBS 
    212       IF( ln_trcadv_qck                      )   nadv = np_QCK 
     206      ioptio = 0                       !==  Parameter control  ==! 
     207      IF( ln_trcadv_cen )   ioptio = ioptio + 1 
     208      IF( ln_trcadv_fct )   ioptio = ioptio + 1 
     209      IF( ln_trcadv_mus )   ioptio = ioptio + 1 
     210      IF( ln_trcadv_ubs )   ioptio = ioptio + 1 
     211      IF( ln_trcadv_qck )   ioptio = ioptio + 1 
     212 
    213213      ! 
    214214      IF( ioptio == 0 ) THEN 
  • branches/2015/dev_r5721_CNRS9_NOC3_LDF/NEMOGCM/SETTE/param.cfg

    r5766 r5774  
    11#- forcing files storing 
    2 FORCING_DIR=~/FORCING 
     2FORCING_DIR=/workgpfs/rech/omr/romr006/FORCING 
    33#- input files storing 
    44INPUT_DIR=${CONFIG_DIR}/${NEW_CONF}/EXP00 
     
    66#TMPDIR=${CONFIG_DIR}/${NEW_CONF}/EXP00 
    77#- VALIDATION files storing 
    8 NEMO_VALIDATION_DIR=~/NEMO_VALIDATION 
     8NEMO_VALIDATION_DIR=/workgpfs/rech/omr/romr006/NEMO_VALIDATION 
Note: See TracChangeset for help on using the changeset viewer.