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

source: trunk/NEMO/TOP_SRC/TRP/trcstp.F90 @ 264

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

nemo_v1_update_05:RB+OA:Update and rewritting of (part of) the TOP component

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1MODULE trcstp
2   !!======================================================================
3   !!                       ***  MODULE trcstp  ***
4   !! Time-stepping    : time loop of opa for passive tracer
5   !!======================================================================
6#if defined key_passivetrc
7   !!----------------------------------------------------------------------
8   !!   trc_stp      : passive tracer system time-stepping
9   !!----------------------------------------------------------------------
10   !! * Modules used
11   USE oce_trc          ! ocean dynamics and active tracers variables
12   USE trc              ! ocean passive tracers variables
13   USE trctrp           ! passive tracers transport
14   USE trcsms           ! passive tracers sources and sinks
15
16   IMPLICIT NONE
17   PRIVATE
18
19   !! * Routine accessibility
20   PUBLIC trc_stp           ! called by step
21   !!----------------------------------------------------------------------
22   !!   OPA 9.0 , LODYC-IPSL (2003)
23   !!----------------------------------------------------------------------
24
25CONTAINS
26
27   SUBROUTINE trc_stp( kt )
28      !!-------------------------------------------------------------------
29      !!                     ***  ROUTINE trc_stp  ***
30      !!                     
31      !! ** Purpose : Time loop of opa for passive tracer
32      !!
33      !! ** Method  :
34      !!              Compute the passive tracers trends
35      !!              Update the passive tracers
36      !!
37      !! History :
38      !!   9.0  !  04-03  (C. Ethe)  Original
39      !!-------------------------------------------------------------------
40      !! * Arguments
41      INTEGER, INTENT( in ) ::  kt  ! ocean time-step index
42      INTEGER :: jn
43      REAL(wp) :: ztra
44
45
46      ! this ROUTINE is called only every ndttrc time step
47      IF( MOD( kt , ndttrc ) /= 0 ) RETURN
48
49      ! tracers: sink and source
50
51
52      CALL trc_sms( kt )
53
54       DO jn = 1, jptra
55         IF(ln_ctl) THEN         ! print mean trends (used for debugging)
56            ztra = SUM( tra(2:nictle,2:njctle,1:jpkm1,jn) * tmask(2:nictle,2:njctle,1:jpkm1) )
57            WRITE(numout,*) ' trc/sms  - ',ctrcnm(jn),' : ', ztra-tra_ctl(jn)
58            tra_ctl(jn) = ztra
59         ENDIF
60      END DO
61
62 
63
64      ! transport of passive tracers
65
66      CALL trc_trp( kt )
67
68       DO jn = 1, jptra
69         IF(ln_ctl) THEN         ! print mean trends (used for debugging)
70            ztra = SUM( tra(2:nictle,2:njctle,1:jpkm1,jn) * tmask(2:nictle,2:njctle,1:jpkm1) )
71            WRITE(numout,*) ' trc/trp  - ',ctrcnm(jn),' : ', ztra-tra_ctl(jn)
72            tra_ctl(jn) = ztra
73         ENDIF
74      END DO
75
76
77
78   END SUBROUTINE trc_stp
79
80#else
81   !!----------------------------------------------------------------------
82   !!   Default key                                     NO passive tracers
83   !!----------------------------------------------------------------------
84CONTAINS
85   SUBROUTINE trc_stp( kt )        ! Empty routine
86      INTEGER, INTENT(in) :: kt
87      WRITE(*,*) 'trc_stp: You should not have seen this print! error?', kt
88   END SUBROUTINE trc_stp
89#endif
90
91   !!======================================================================
92END MODULE trcstp
Note: See TracBrowser for help on using the repository browser.