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.pisces.h90 in trunk/NEMO/TOP_SRC/SMS – NEMO

source: trunk/NEMO/TOP_SRC/SMS/trcctl.pisces.h90 @ 284

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

nemo_v1_update_005:RB: update headers for the TOP component.

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