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.
trcctl.p3zd.h in trunk/NEMO/TOP_SRC/SMS – NEMO

source: trunk/NEMO/TOP_SRC/SMS/trcctl.p3zd.h @ 247

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

CL : Add CVS Header and CeCILL licence information

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1
2CCC $Header$ 
3CCC  TOP 1.0 , LOCEAN-IPSL (2005) 
4C This software is governed by CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
5C ---------------------------------------------------------------------------
6C $Id$
7#if defined key_trc_p3zd
8      IF(lwp) THEN
9          WRITE(numout,*) ' use P3ZD biological model '
10          WRITE(numout,*) ' '
11      ENDIF
12c
13c Check number of tracers
14c -----------------------
15#    if defined key_trc_biohamocc13
16      IF (jptra.ne.11) THEN
17#    else
18      IF (jptra.ne.10) THEN
19#    endif
20          IF (lwp) THEN
21              WRITE (numout,*) ' ===>>>> : w a r n i n g '
22              WRITE (numout,*) ' =======   ============= '
23              WRITE (numout,*)
24     $            ' STOP, change jptra to 10 or 11 key_trc_biohamocc13', 
25     $            ' in parameter.passivetrc.p3zd.h ' 
26          END IF
27          STOP 'TRCCTL'
28      END IF
29c
30c check consistency of key_trc_hamocc3 and key_trc_p3zd
31c ------------------------------------------------------
32#    if !defined key_trc_hamocc3
33      IF (lwp) THEN
34          WRITE (numout,*) ' ===>>>> : w a r n i n g '
35          WRITE (numout,*) ' =======   ============= '
36          WRITE (numout,*)
37     $        ' STOP, key_trc_p3zd  requires  key_trc_hamocc3'
38      END IF
39      STOP 'TRCCTL'
40#    endif
41#    if defined key_trc_diaadd
42      IF ((jpdia2d.ne.12).and.(jpdia3d.ne.1)) THEN
43          IF (lwp) THEN
44              WRITE (numout,*) ' ===>>>> : w a r n i n g '
45              WRITE (numout,*) ' =======   ============= '
46              WRITE (numout,*)
47     $            ' STOP, change jpdia2d to 12 and jpdia3d to 1'
48     $            ,' in parameter.passivetrc.h ' 
49     $            ,' (key_trc_p3zd and key_trc_diaadd)'
50          END IF
51          STOP 'TRCCTL'
52      END IF
53#    endif
54#endif
Note: See TracBrowser for help on using the repository browser.