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

Changeset 1284


Ignore:
Timestamp:
2009-02-03T14:17:44+01:00 (15 years ago)
Author:
cetlod
Message:

Name of passive tracer restart file in the namelist, see ticket:313

Location:
trunk/NEMO/TOP_SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/TOP_SRC/TRP/trdmld_trc_oce.F90

    r1175 r1284  
    2626   LOGICAL  ::    ln_trdmld_trc_instant   !: flag to diagnose inst./mean ML trc trends 
    2727   LOGICAL  ::    ln_trdmld_trc_restart   !: flag to restart mixed-layer trc diagnostics 
     28   CHARACTER(len=50) ::  cn_trdrst_trc_in  !: suffix of pass. tracer restart name (input) 
     29   CHARACTER(len=50) ::  cn_trdrst_trc_out !: suffix of pass. tracer restart name (output) 
    2830   LOGICAL, DIMENSION (jptra) ::   luttrd   !: large trends diagnostic to write or not (namelist) 
    2931 
  • trunk/NEMO/TOP_SRC/trclec.F90

    r1254 r1284  
    7575      NAMELIST/namtoptrd/ ntrd_trc, nctls_trc, ucf_trc, & 
    7676                         ln_trdmld_trc_restart, ln_trdmld_trc_instant, & 
    77                          luttrd 
     77                         cn_trdrst_trc_in, cn_trdrst_trc_out, luttrd 
    7878#endif 
    7979 
     
    146146      ln_trdmld_trc_instant = .TRUE. 
    147147      ln_trdmld_trc_restart =.FALSE. 
     148      cn_trdrst_trc_in  = "restart_mld_trc" 
     149      cn_trdrst_trc_out = "restart_mld_trc" 
    148150      DO jn = 1, jptra 
    149151         luttrd(jn) = .FALSE. 
Note: See TracChangeset for help on using the changeset viewer.