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.
trcsms_pisces.F90 in NEMO/branches/UKMO/NEMO4_beta_mirror/src/TOP/PISCES – NEMO

source: NEMO/branches/UKMO/NEMO4_beta_mirror/src/TOP/PISCES/trcsms_pisces.F90 @ 9950

Last change on this file since 9950 was 9950, checked in by davestorkey, 6 years ago

UKMO/NEMO4_beta_mirror branch: remove SVN keywords

File size: 1.9 KB
Line 
1MODULE trcsms_pisces
2   !!======================================================================
3   !!                         ***  MODULE trcsms_pisces  ***
4   !! TOP :   PISCES Source Minus Sink manager
5   !!======================================================================
6   !! History :   1.0  !  2004-03 (O. Aumont) Original code
7   !!             2.0  !  2007-12  (C. Ethe, G. Madec)  F90
8   !!----------------------------------------------------------------------
9   !!   trcsms_pisces        :  Time loop of passive tracers sms
10   !!----------------------------------------------------------------------
11   USE par_pisces
12   USE sms_pisces
13   USE p4zsms
14   USE p2zsms
15
16   IMPLICIT NONE
17   PRIVATE
18
19   PUBLIC   trc_sms_pisces    ! called in trcsms.F90
20   !!----------------------------------------------------------------------
21   !! NEMO/TOP 3.3 , NEMO Consortium (2018)
22   !! $Id$
23   !! Software governed by the CeCILL licence (./LICENSE)
24   !!----------------------------------------------------------------------
25CONTAINS
26
27   SUBROUTINE trc_sms_pisces( kt )
28      !!---------------------------------------------------------------------
29      !!                     ***  ROUTINE trc_sms_pisces  ***
30      !!
31      !! ** Purpose :   Managment of the call to Biological sources and sinks
32      !!                routines of PISCES or LOBSTER bio-model
33      !!
34      !!---------------------------------------------------------------------
35      !
36      INTEGER, INTENT( in ) ::   kt      ! ocean time-step index     
37      !!---------------------------------------------------------------------
38      !
39      IF( ln_p4z .OR. ln_p5z ) THEN  ;   CALL p4z_sms( kt )   !  PISCES
40      ELSE                           ;   CALL p2z_sms( kt )   !  LOBSTER
41      ENDIF
42
43      !
44   END SUBROUTINE trc_sms_pisces
45
46   !!======================================================================
47END MODULE trcsms_pisces 
Note: See TracBrowser for help on using the repository browser.