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

source: trunk/NEMO/TOP_SRC/SMS/p4zslow.F @ 333

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

nemo_v1_update_021 : CE + RB + CT : add the CFC main routine and p4z new routines

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1CDIR$ LIST
2      SUBROUTINE p4zslow(kt)
3#if defined key_passivetrc && defined key_trc_pisces
4CCC---------------------------------------------------------------------
5CCC
6CCC          ROUTINE p4zslow : PISCES MODEL
7CCC          *****************************
8CCC
9CCC     PURPOSE.
10CCC     --------
11CCC          *P4ZSLOW* CALL VARIOUS ROUTINES ON A DAILY BASIS
12CCC
13CCC
14CC     EXTERNALS.
15CC     ----------
16CC          p4zche, p4zint
17CC
18CC   MODIFICATIONS:
19CC   --------------
20CC      NEW : 2004 O. Aumont
21CC----------------------------------------------------------------------
22CC parameters and commons
23CC ======================
24CDIR$ nolist
25      USE oce_trc
26      USE trp_trc
27      USE sms
28      IMPLICIT NONE
29CDIR$ list
30CC----------------------------------------------------------------------
31CC local declarations
32CC ==================
33C
34      INTEGER iyy, imm, idd, kt
35C
36      iyy = ndastp/10000
37      imm = (ndastp - iyy*10000)/100
38      idd = (ndastp - iyy*10000 - imm*100)
39
40       IF (ndayflxtr /= idd) THEN
41           ndayflxtr = idd
42C
43C* 1. COMPUTATION OF THE CHEMICAL CONSTANTS
44C  ----------------------------------------
45C
46       CALL p4zche
47C
48C  2. COMPUTATION OF VARIOUS RATES FOR BIOGEOCHEMISTRY
49C  ---------------------------------------------------
50C
51       CALL p4zint(kt)
52C
53      ENDIF
54C     
55#endif
56C
57      RETURN
58      END
Note: See TracBrowser for help on using the repository browser.