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.
trc_oce.F90 in trunk/NEMO/OPA_SRC – NEMO

source: trunk/NEMO/OPA_SRC/trc_oce.F90 @ 189

Last change on this file since 189 was 189, checked in by opalod, 19 years ago

CT : BUGFIX130 : add the missing declaration part when using passive tracers, i.e. with key_passivetrc and key_trc_pisces cpp keys

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1MODULE trc_oce
2   !!======================================================================
3   !!                      ***  MODULE  trc_oce  ***
4   !! Ocean passive tracer  :  share SMS/Ocean variables
5   !!======================================================================
6   !! History :
7   !!   9.0  !  04-03  (C. Ethe)  F90: Free form and module
8   !!----------------------------------------------------------------------
9#if defined key_passivetrc && defined key_trc_pisces
10   !!----------------------------------------------------------------------
11   !!  OPA 9.0 , LODYC-IPSL (2003)
12   !!----------------------------------------------------------------------
13   USE sms , ONLY :  &
14      etot3    =>   etot3   !!:  Biological fluxes for light
15   !! Shared module variables
16   LOGICAL, PUBLIC, PARAMETER ::   lk_qsr_sms = .TRUE. 
17#else
18   !!----------------------------------------------------------------------
19   !! Default option                         No Biological fluxes for light         
20   !!----------------------------------------------------------------------
21   USE par_oce
22   LOGICAL, PUBLIC, PARAMETER ::   lk_qsr_sms = .FALSE. 
23   REAL(wp), PUBLIC , DIMENSION (jpi,jpj,jpk) :: &
24      etot3
25#endif
26
27END MODULE trc_oce
Note: See TracBrowser for help on using the repository browser.