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 @ 719

Last change on this file since 719 was 719, checked in by ctlod, 17 years ago

get back to the nemo_v2_3 version for trunk

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