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.
p2zsms.F90 in NEMO/trunk/src/TOP/PISCES/P2Z – NEMO

source: NEMO/trunk/src/TOP/PISCES/P2Z/p2zsms.F90 @ 10067

Last change on this file since 10067 was 10067, checked in by nicolasmartin, 6 years ago

Finalize the standardisation of routines header to the new release number (NEMO 4.0)

  • Property svn:keywords set to Id
File size: 2.5 KB
RevLine 
[3443]1MODULE p2zsms
2   !!======================================================================
3   !!                         ***  MODULE p2zsms  ***
4   !! TOP :   Time loop of LOBSTER model
5   !!======================================================================
6   !! History :   1.0  !            M. Levy
7   !!             2.0  !  2007-12  (C. Ethe, G. Madec)  revised architecture
8   !!----------------------------------------------------------------------
[9124]9
10   !!----------------------------------------------------------------------
[3443]11   !!   p2zsms        :  Time loop of passive tracers sms
12   !!----------------------------------------------------------------------
13   USE oce_trc          !
14   USE trc
[4147]15   USE sms_pisces
[3443]16   USE p2zbio
17   USE p2zopt
18   USE p2zsed
19   USE p2zexp
[4990]20   USE trd_oce
21   USE trdtrc_oce
22   USE trdtrc
23   USE trdmxl_trc
[3443]24
25   IMPLICIT NONE
26   PRIVATE
27
28   PUBLIC   p2z_sms    ! called in p2zsms.F90
29
30   !!----------------------------------------------------------------------
[10067]31   !! NEMO/TOP 4.0 , NEMO Consortium (2018)
[5215]32   !! $Id$
[9598]33   !! Software governed by the CeCILL licence     (./LICENSE)
[3443]34   !!----------------------------------------------------------------------
35CONTAINS
36
37   SUBROUTINE p2z_sms( kt )
38      !!---------------------------------------------------------------------
39      !!                     ***  ROUTINE p2z_sms  ***
40      !!
41      !! ** Purpose :  Managment of the call to Biological sources and sinks
42      !!               routines of LOBSTER bio-model
43      !!
44      !! ** Method  : - ???
45      !! --------------------------------------------------------------------
46      INTEGER, INTENT( in ) ::   kt      ! ocean time-step index     
47      !
[9124]48      INTEGER ::   jn   ! dummy loop index
[3443]49      !! --------------------------------------------------------------------
50      !
[9124]51      IF( ln_timing )   CALL timing_start('p2z_sms')
[3443]52      !
53      CALL p2z_opt( kt )      ! optical model
54      CALL p2z_bio( kt )      ! biological model
55      CALL p2z_sed( kt )      ! sedimentation model
56      CALL p2z_exp( kt )      ! export
[9124]57      !
[3443]58      IF( l_trdtrc ) THEN
59         DO jn = jp_pcs0, jp_pcs1
[4990]60           CALL trd_trc( tra(:,:,:,jn), jn, jptra_sms, kt )   ! save trends
[3443]61         END DO
62      END IF
63      !
[4624]64      IF ( lwm .AND. kt == nittrc000 ) CALL FLUSH    ( numonp )     ! flush output namelist PISCES
[9124]65      IF( ln_timing )   CALL timing_stop('p2z_sms')
[3443]66      !
67   END SUBROUTINE p2z_sms
68
69   !!======================================================================
[5656]70END MODULE p2zsms
Note: See TracBrowser for help on using the repository browser.