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

source: branches/dev_001_GM/NEMO/TOP_SRC/trp_trc.F90 @ 771

Last change on this file since 771 was 771, checked in by gm, 16 years ago

dev_001_GM - small error corrections

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
RevLine 
[186]1MODULE trp_trc
2   !!======================================================================
[763]3   !!                         ***  MODULE trp_trc  ***
4   !! TOP :   TOP parameters used in TRP
[186]5   !!======================================================================
[763]6   !! History :   1.0  !  2004-03 (C. Ethe) original code
[274]7   !!----------------------------------------------------------------------
[763]8   !! NEMO/TOP 1.0 , LOCEAN-IPSL (2005)
[764]9   !! $Id$
[763]10   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt)
11   !!----------------------------------------------------------------------
12#if defined key_passivetrc
13   !!----------------------------------------------------------------------
[771]14   !!   'key_passivetrc'                                          TOP model
[763]15   !!----------------------------------------------------------------------
16
[186]17   !! passive tracers number
[765]18   USE par_trc, ONLY :   jptra    =>   jptra    !: number of passive tracers
[186]19
20   !! passive tracers fields
[765]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)
[186]25
26   !! time step
[765]27   USE trc    , ONLY :   ndttrc   =>   ndttrc   !: frequency of step on passive tracers (NAMELIST)
[186]28
29   !! non-centered advection scheme (smolarkiewicz)
[765]30   USE trc    , ONLY :   rtrn     =>   rtrn     !: value for truncation (NAMELIST)
31   USE trc    , ONLY :   ctrcnm   =>   ctrcnm   !: value for truncation (NAMELIST)
[186]32
[763]33# if defined key_trc_diaadd
[765]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
[763]38# endif
39
[186]40#else
[763]41   !!----------------------------------------------------------------------
42   !!  Empty module :                                     No passive tracer
43   !!----------------------------------------------------------------------
[186]44#endif
45
[763]46   !!======================================================================
[186]47END MODULE trp_trc
Note: See TracBrowser for help on using the repository browser.