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.F90 in trunk/NEMOGCM/NEMO/TOP_SRC – NEMO

source: trunk/NEMOGCM/NEMO/TOP_SRC/trcsms.F90 @ 2528

Last change on this file since 2528 was 2528, checked in by rblod, 13 years ago

Update NEMOGCM from branch nemo_v3_3_beta

  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1MODULE trcsms
2   !!======================================================================
3   !!                         ***  MODULE trcsms  ***
4   !! TOP :   Time loop of passive tracers sms
5   !!======================================================================
6   !! History :   1.0  !  2005-03 (O. Aumont, A. El Moussaoui) F90
7   !!             2.0  !  2007-12  (C. Ethe, G. Madec)  revised architecture
8   !!----------------------------------------------------------------------
9#if defined key_top
10   !!----------------------------------------------------------------------
11   !!   'key_top'                                                TOP models
12   !!----------------------------------------------------------------------
13   !!   trc_sms        :  Time loop of passive tracers sms
14   !!----------------------------------------------------------------------
15   USE oce_trc            !
16   USE trc                !
17   USE trcsms_lobster     ! LOBSTER bio-model
18   USE trcsms_pisces      ! PISCES biogeo-model
19   USE trcsms_cfc         ! CFC 11 & 12
20   USE trcsms_c14b        ! C14b tracer
21   USE trcsms_my_trc      ! MY_TRC  tracers
22   USE prtctl_trc         ! Print control for debbuging
23
24   IMPLICIT NONE
25   PRIVATE
26
27   PUBLIC   trc_sms    ! called in trcstp.F90
28
29   !!----------------------------------------------------------------------
30   !! NEMO/TOP 3.3 , NEMO Consortium (2010)
31   !! $Id$
32   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
33   !!----------------------------------------------------------------------
34
35CONTAINS
36
37   SUBROUTINE trc_sms( kt )
38      !!---------------------------------------------------------------------
39      !!                     ***  ROUTINE trc_sms  ***
40      !!
41      !! ** Purpose :   Managment of the time loop of passive tracers sms
42      !!
43      !! ** Method  : -  call the main routine of of each defined tracer model
44      !! -------------------------------------------------------------------------------------
45      INTEGER, INTENT( in ) ::   kt      ! ocean time-step index     
46      !!
47      CHARACTER (len=25) :: charout
48      !!---------------------------------------------------------------------
49
50      IF ( MOD( kt, nn_dttrc) /= 0 ) RETURN      ! this ROUTINE is called only every ndttrc time step
51
52      IF( lk_lobster )   CALL trc_sms_lobster( kt )    ! main program of LOBSTER
53      IF( lk_pisces  )   CALL trc_sms_pisces ( kt )    ! main program of PISCES
54      IF( lk_cfc     )   CALL trc_sms_cfc    ( kt )    ! surface fluxes of CFC
55      IF( lk_c14b    )   CALL trc_sms_c14b   ( kt )    ! surface fluxes of C14
56      IF( lk_my_trc  )   CALL trc_sms_my_trc ( kt )    ! MY_TRC  tracers
57
58      IF(ln_ctl) THEN      ! print mean trends (used for debugging)
59         WRITE(charout, FMT="('sms ')")
60         CALL prt_ctl_trc_info( charout )
61         CALL prt_ctl_trc( tab4d=trn, mask=tmask, clinfo=ctrcnm )
62      ENDIF
63      !
64   END SUBROUTINE trc_sms
65
66#else
67   !!======================================================================
68   !!  Dummy module :                                     No passive tracer
69   !!======================================================================
70CONTAINS
71   SUBROUTINE trc_sms( kt )                   ! Empty routine
72      INTEGER, INTENT( in ) ::   kt
73      WRITE(*,*) 'trc_sms: You should not have seen this print! error?', kt
74   END SUBROUTINE trc_sms
75#endif 
76
77   !!======================================================================
78END MODULE  trcsms
Note: See TracBrowser for help on using the repository browser.