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

source: trunk/NEMO/TOP_SRC/TRP/trctrp.F90 @ 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:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
1MODULE trctrp
2   !!======================================================================
3   !!                       ***  MODULE trctrp  ***
4   !! Ocean Physics    : manage the passive tracer transport
5   !!======================================================================
6#if defined key_passivetrc
7   !!----------------------------------------------------------------------
8   !!   trc_trp        : passive tracer transport
9   !!----------------------------------------------------------------------
10   !! * Modules used
11   USE oce_trc         ! ocean dynamics and active tracers variables
12   USE trc             ! ocean passive tracers variables
13
14   USE trctrp_lec      ! passive tracers transport
15
16   USE trcbbl          ! bottom boundary layer               (trc_bbl routine)
17   USE trcdmp          ! internal damping                    (trc_dmp routine)
18
19   USE trcldf_bilapg   ! lateral mixing               (trc_ldf_bilapg routine)
20   USE trcldf_bilap    ! lateral mixing                (trc_ldf_bilap routine)
21   USE trcldf_iso      ! lateral mixing                  (trc_ldf_iso routine)
22   USE trcldf_iso_zps  ! lateral mixing              (trc_ldf_iso_zps routine)
23   USE trcldf_lap      ! lateral mixing                  (trc_ldf_lap routine)
24 
25   USE trcnxt          ! time-stepping                       (trc_nxt routine)
26   USE trcrad          ! positivity                          (trc_rad routine)
27
28   USE trcadv_cen2     ! 2nd order centered advection   (trc_adv_cen2 routine)
29   USE trcadv_muscl    ! MUSCL advection               (trc_adv_muscl routine)
30   USE trcadv_muscl2   ! MUSCL2 advection             (trc_adv_muscl2 routine)
31   USE trcadv_tvd      ! TVD advection                   (trc_adv_tvd routine)
32   USE trcadv_smolar   ! SMOLAR advection             (trc_adv_smolar routine)
33
34   USE trczdf_exp      ! vertical diffusion              (trc_zdf_exp routine)
35   USE trczdf_imp      ! vertical diffusion              (trc_zdf_exp routine)
36   USE trczdf_iso      ! vertical diffusion              (trc_zdf_exp routine)
37   USE trczdf_iso_vopt ! vertical diffusion              (trc_zdf_exp routine)
38   USE trcsbc          ! surface boundary condition          (trc_sbc routine)
39
40   USE zpshde_trc      ! partial step: hor. derivative   (zps_hde_trc routine)
41
42
43   IMPLICIT NONE
44   PRIVATE
45
46   !! * Routine accessibility
47   PUBLIC trc_trp            ! called by trc_stp
48
49   !! * Substitutions
50#  include "domzgr_substitute.h90"
51   !!----------------------------------------------------------------------
52   !!   TOP 1.0 , LOCEAN-IPSL (2005)
53   !! $Header$
54   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
55   !!----------------------------------------------------------------------
56
57CONTAINS
58
59   SUBROUTINE trc_trp( kt )
60      !!----------------------------------------------------------------------
61      !!                     ***  ROUTINE trc_trp  ***
62      !!                     
63      !! ** Purpose : Management of passive tracers transport
64      !!
65      !! ** Method  :
66      !!              Compute the passive tracers trends
67      !!              Update the passive tracers
68      !!
69      !! History :
70      !!   9.0  !  04-03  (C. Ethe)  Original
71      !!----------------------------------------------------------------------
72      !! * Arguments
73      INTEGER, INTENT( in ) ::  kt  ! ocean time-step index
74      !! ---------------------------------------------------------------------
75
76      !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
77      ! Passitive tracers
78      !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
79      !-----------------------------------------------------------------------
80
81 
82                               CALL trc_sbc( kt )            ! surface boundary condition
83# if defined key_trcbbc
84       CALL ctl_stop( '  Bottom heat flux not yet implemented with passive tracer         ' &
85           &          '  Check in trc_trp routine ' )
86# endif 
87      !                                                      ! bottom boundary condition
88      IF( lk_trcbbl_dif    )   CALL trc_bbl_dif( kt )                ! diffusive bottom boundary layer scheme
89      IF( lk_trcbbl_adv    )   CALL trc_bbl_adv( kt )                ! advective (and/or diffusive) bottom boundary layer scheme
90
91      IF( lk_trcdmp        )   CALL trc_dmp( kt )            ! internal damping trends
92
93      !                                                      ! horizontal & vertical advection
94      IF( ln_trcadv_cen2   )   CALL trc_adv_cen2  ( kt )             ! 2nd order centered scheme
95      IF( ln_trcadv_muscl  )   CALL trc_adv_muscl ( kt )             ! MUSCL scheme
96      IF( ln_trcadv_muscl2 )   CALL trc_adv_muscl2( kt )             ! MUSCL2 scheme
97      IF( ln_trcadv_tvd    )   CALL trc_adv_tvd   ( kt )             ! TVD scheme
98      IF( ln_trcadv_smolar )   CALL trc_adv_smolar( kt )             ! SMOLARKIEWICZ scheme
99
100 
101      IF( n_cla == 1   ) THEN
102         WRITE(ctmp1,*) ' Cross Land Advection not yet implemented with passive tracer n_cla = ',n_cla
103         CALL ctl_stop(ctmp1)
104      ENDIF
105
106      !                                                      ! lateral mixing
107      IF( l_trcldf_bilapg  )   CALL trc_ldf_bilapg ( kt )            ! s-coord. horizontal bilaplacian
108      IF( l_trcldf_bilap   )   CALL trc_ldf_bilap  ( kt )            ! iso-level bilaplacian
109      IF( l_trcldf_iso     )   CALL trc_ldf_iso    ( kt )            ! iso-neutral laplacian
110      IF( l_trcldf_iso_zps )   CALL trc_ldf_iso_zps( kt )            ! partial step iso-neutral laplacian
111      IF( l_trcldf_lap     )   CALL trc_ldf_lap    ( kt )            ! iso-level laplacian
112 
113      !                                                      ! vertical diffusion
114      IF( l_trczdf_exp     )   CALL trc_zdf_exp( kt )                ! explicit time stepping (time splitting scheme)
115      IF( l_trczdf_imp     )   CALL trc_zdf_imp( kt )                ! implicit time stepping (euler backward)
116      IF( l_trczdf_iso     )   CALL trc_zdf_iso( kt )                ! isopycnal
117      IF( l_trczdf_iso_vo  )   CALL trc_zdf_iso_vopt( kt )           ! vector opt. isopycnal
118
119                               CALL trc_nxt( kt )            ! tracer fields at next time step
120 
121                               CALL trc_rad( kt )            ! Correct artificial negative concentrations for isopycnal scheme
122      !                                                     
123
124      IF( ln_zps .AND. .NOT. lk_trccfg_1d ) &
125         &                     CALL zps_hde_trc( kt, trb, gtru, gtrv )  ! Partial steps: now horizontal gradient
126      !                                                                 ! of passive tracers at the bottom ocean level
127
128
129    END SUBROUTINE trc_trp
130
131#else
132   !!----------------------------------------------------------------------
133   !!   Dummy module :                      NO passive tracers
134   !!----------------------------------------------------------------------
135CONTAINS
136   SUBROUTINE trc_trp (kt )              ! Empty routine
137      INTEGER, INTENT(in) :: kt
138      WRITE(*,*) 'trc_trp: You should not have seen this print! error?', kt
139   END SUBROUTINE trc_trp
140#endif
141   
142   !!======================================================================
143END MODULE trctrp
Note: See TracBrowser for help on using the repository browser.