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 765 for branches/dev_001_GM/NEMO/TOP_SRC/trp_trc.F90 – NEMO

Ignore:
Timestamp:
2007-12-14T08:29:53+01:00 (16 years ago)
Author:
gm
Message:

dev_001_GM - create 1 parameter module by tracers (CFC, LOBSTER, PISCES..) - never compiled

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_001_GM/NEMO/TOP_SRC/trp_trc.F90

    r764 r765  
    1616 
    1717   !! passive tracers number 
    18    USE par_trc_trp , ONLY :   jptra    =>   jptra    !: number of passive tracers 
     18   USE par_trc, ONLY :   jptra    =>   jptra    !: number of passive tracers 
    1919 
    2020   !! passive tracers fields  
    21    USE trc         , ONLY :   trai     =>   trai     !: initial total tracer 
    22    USE trc         , ONLY :   trb      =>   trb      !: tracer field (before) 
    23    USE trc         , ONLY :   tra      =>   tra      !: tracer field (now) 
    24    USE trc         , ONLY :   trn      =>   trn      !: tracer field (after) 
     21   USE trc    , ONLY :   trai     =>   trai     !: initial total tracer 
     22   USE trc    , ONLY :   trb      =>   trb      !: tracer field (before) 
     23   USE trc    , ONLY :   tra      =>   tra      !: tracer field (now) 
     24   USE trc    , ONLY :   trn      =>   trn      !: tracer field (after) 
    2525 
    2626   !! time step 
    27    USE trc         , ONLY :   ndttrc   =>   ndttrc   !: frequency of step on passive tracers (NAMELIST) 
     27   USE trc    , ONLY :   ndttrc   =>   ndttrc   !: frequency of step on passive tracers (NAMELIST) 
    2828 
    2929   !! non-centered advection scheme (smolarkiewicz) 
    30    USE trc         , ONLY :   rtrn     =>   rtrn     !: value for truncation (NAMELIST) 
    31    USE trc         , ONLY :   ctrcnm   =>   ctrcnm   !: value for truncation (NAMELIST) 
     30   USE trc    , ONLY :   rtrn     =>   rtrn     !: value for truncation (NAMELIST) 
     31   USE trc    , ONLY :   ctrcnm   =>   ctrcnm   !: value for truncation (NAMELIST) 
    3232 
    3333# if defined key_trc_diaadd 
    34    USE par_trc_trp , ONLY :   jpdia2d  =>  jpdia2d   !: number of 2D passive tracers diag 
    35    USE par_trc_trp , ONLY :   jpdia3d  =>  jpdia3d   !: number of 3D passive tracers diag 
    36    USE trc         , ONLY :   trc2d    =>   trc2d    !: additional 2D variable for ouputs 
    37    USE trc         , ONLY :   trc3d    =>   trc3d    !: additional 3D variable for ouputs 
     34   USE par_trc, ONLY :   jpdia2d  =>  jpdia2d   !: number of 2D passive tracers diag 
     35   USE par_trc, ONLY :   jpdia3d  =>  jpdia3d   !: number of 3D passive tracers diag 
     36   USE trc    , ONLY :   trc2d    =>   trc2d    !: additional 2D variable for ouputs 
     37   USE trc    , ONLY :   trc3d    =>   trc3d    !: additional 3D variable for ouputs 
    3838# endif 
    3939 
Note: See TracChangeset for help on using the changeset viewer.