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.
trcldf.F90 in branches/UKMO/AMM15_v3_6_STABLE_package_FABM/NEMOGCM/NEMO/TOP_SRC/TRP – NEMO

source: branches/UKMO/AMM15_v3_6_STABLE_package_FABM/NEMOGCM/NEMO/TOP_SRC/TRP/trcldf.F90 @ 10156

Last change on this file since 10156 was 10156, checked in by dford, 6 years ago

Apply patch fabm_patch_e3284ca_889163b.diff from Jim Clark.

File size: 13.7 KB
RevLine 
[2030]1MODULE trcldf
2   !!======================================================================
3   !!                       ***  MODULE  trcldf  ***
[3294]4   !! Ocean Passive tracers : lateral diffusive trends
[2030]5   !!=====================================================================
6   !! History :  9.0  ! 2005-11 (G. Madec)  Original code
[3294]7   !!       NEMO 3.0  ! 2008-01  (C. Ethe, G. Madec)  merge TRC-TRA
[2030]8   !!----------------------------------------------------------------------
9#if defined key_top
10   !!----------------------------------------------------------------------
11   !!   'key_top'                                                TOP models
12   !!----------------------------------------------------------------------
13   !!----------------------------------------------------------------------
14   !!   trc_ldf     : update the tracer trend with the lateral diffusion
15   !!       ldf_ctl : initialization, namelist read, and parameters control
16   !!----------------------------------------------------------------------
17   USE oce_trc         ! ocean dynamics and active tracers
18   USE trc             ! ocean passive tracers variables
19   USE trcnam_trp      ! passive tracers transport namelist variables
20   USE ldftra_oce      ! lateral diffusion coefficient on tracers
21   USE ldfslp          ! ???
22   USE traldf_bilapg   ! lateral mixing            (tra_ldf_bilapg routine)
23   USE traldf_bilap    ! lateral mixing            (tra_ldf_bilap routine)
24   USE traldf_iso      ! lateral mixing            (tra_ldf_iso routine)
[3294]25   USE traldf_iso_grif ! lateral mixing          (tra_ldf_iso_grif routine)
[2030]26   USE traldf_lap      ! lateral mixing            (tra_ldf_lap routine)
[4990]27   USE trd_oce
[2030]28   USE trdtra
29   USE prtctl_trc      ! Print control
30
31   IMPLICIT NONE
32   PRIVATE
33
[3294]34   PUBLIC   trc_ldf    ! called by step.F90
[2030]35   !                                                 !!: ** lateral mixing namelist (nam_trcldf) **
[3294]36   REAL(wp) ::  rldf_rat    ! ratio between active and passive tracers diffusive coefficient
37   INTEGER  ::  nldf = 0   ! type of lateral diffusion used defined from ln_trcldf_... namlist logicals)
[2030]38   !! * Substitutions
39#  include "domzgr_substitute.h90"
40#  include "vectopt_loop_substitute.h90"
41   !!----------------------------------------------------------------------
[2287]42   !! NEMO/TOP 3.3 , NEMO Consortium (2010)
[3294]43   !! $Id$
[2287]44   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
[2030]45   !!----------------------------------------------------------------------
46
47CONTAINS
48
49   SUBROUTINE trc_ldf( kt )
50      !!----------------------------------------------------------------------
51      !!                  ***  ROUTINE tra_ldf  ***
[3294]52      !!
[2030]53      !! ** Purpose :   compute the lateral ocean tracer physics.
54      !!
55      !!----------------------------------------------------------------------
56      INTEGER, INTENT( in ) ::   kt   ! ocean time-step index
57      !!
[10156]58      INTEGER            :: jn, jk
[2030]59      CHARACTER (len=22) :: charout
[3294]60      REAL(wp), POINTER, DIMENSION(:,:,:,:) ::   ztrtrd
[2030]61      !!----------------------------------------------------------------------
[3294]62      !
63      IF( nn_timing == 1 )   CALL timing_start('trc_ldf')
64      !
65      IF( kt == nittrc000 )   CALL ldf_ctl          ! initialisation & control of options
[2030]66
[3294]67      rldf = rldf_rat
[2030]68
[3294]69      IF( l_trdtrc )  THEN
70         CALL wrk_alloc( jpi, jpj, jpk, jptra, ztrtrd )
[2030]71         ztrtrd(:,:,:,:)  = tra(:,:,:,:)
72      ENDIF
73
74      SELECT CASE ( nldf )                       ! compute lateral mixing trend and add it to the general trend
[4990]75      CASE ( 0 )   ;   CALL tra_ldf_lap   ( kt, nittrc000, 'TRC', gtru, gtrv, gtrui, gtrvi, trb, tra, jptra        )  ! iso-level laplacian
[3294]76      CASE ( 1 )                                                                                            ! rotated laplacian
77                       IF( ln_traldf_grif ) THEN
78                          CALL tra_ldf_iso_grif( kt, nittrc000, 'TRC', gtru, gtrv, trb, tra, jptra, rn_ahtb_0 )
79                       ELSE
[4990]80                          CALL tra_ldf_iso     ( kt, nittrc000, 'TRC', gtru, gtrv, gtrui, gtrvi, trb, tra, jptra, rn_ahtb_0 )
[3294]81                       ENDIF
[4990]82      CASE ( 2 )   ;   CALL tra_ldf_bilap ( kt, nittrc000, 'TRC', gtru, gtrv, gtrui, gtrvi, trb, tra, jptra            )  ! iso-level bilaplacian
[3294]83      CASE ( 3 )   ;   CALL tra_ldf_bilapg( kt, nittrc000, 'TRC',             trb, tra, jptra            )  ! s-coord. horizontal bilaplacian
[2030]84         !
85      CASE ( -1 )                                     ! esopa: test all possibility with control print
[4990]86         CALL tra_ldf_lap   ( kt, nittrc000, 'TRC', gtru, gtrv, gtrui, gtrvi, trb, tra, jptra            )
[2034]87         WRITE(charout, FMT="('ldf0 ')") ;  CALL prt_ctl_trc_info(charout)
88                                            CALL prt_ctl_trc( tab4d=tra, mask=tmask, clinfo=ctrcnm, clinfo2='trd' )
[3294]89         IF( ln_traldf_grif ) THEN
90            CALL tra_ldf_iso_grif( kt, nittrc000, 'TRC', gtru, gtrv, trb, tra, jptra, rn_ahtb_0 )
91         ELSE
[4990]92            CALL tra_ldf_iso     ( kt, nittrc000, 'TRC', gtru, gtrv, gtrui, gtrvi, trb, tra, jptra, rn_ahtb_0 )
[3294]93         ENDIF
[2034]94         WRITE(charout, FMT="('ldf1 ')") ;  CALL prt_ctl_trc_info(charout)
95                                            CALL prt_ctl_trc( tab4d=tra, mask=tmask, clinfo=ctrcnm, clinfo2='trd' )
[4990]96         CALL tra_ldf_bilap ( kt, nittrc000, 'TRC', gtru, gtrv, gtrui, gtrvi, trb, tra, jptra            )
[2034]97         WRITE(charout, FMT="('ldf2 ')") ;  CALL prt_ctl_trc_info(charout)
98                                            CALL prt_ctl_trc( tab4d=tra, mask=tmask, clinfo=ctrcnm, clinfo2='trd' )
[3294]99         CALL tra_ldf_bilapg( kt, nittrc000, 'TRC',             trb, tra, jptra            )
[2034]100         WRITE(charout, FMT="('ldf3 ')") ;  CALL prt_ctl_trc_info(charout)
101                                            CALL prt_ctl_trc( tab4d=tra, mask=tmask, clinfo=ctrcnm, clinfo2='trd' )
[2030]102      END SELECT
103      !
104      IF( l_trdtrc )   THEN                      ! save the horizontal diffusive trends for further diagnostics
105        DO jn = 1, jptra
106           ztrtrd(:,:,:,jn) = tra(:,:,:,jn) - ztrtrd(:,:,:,jn)
[10156]107#if defined key_tracer_budget
108           DO jk = 1, jpkm1
109             ztrtrd(:,:,jk,jn) = ztrtrd(:,:,jk,jn) * e1t(:,:) * e2t(:,:) * fse3t(:,:,jk)  ! slwa
110           END DO
111#endif
[4990]112           CALL trd_tra( kt, 'TRC', jn, jptra_ldf, ztrtrd(:,:,:,jn) )
[2030]113        END DO
[3294]114        CALL wrk_dealloc( jpi, jpj, jpk, jptra, ztrtrd )
[2030]115      ENDIF
116      !                                          ! print mean trends (used for debugging)
117      IF( ln_ctl )   THEN
118         WRITE(charout, FMT="('ldf ')") ;  CALL prt_ctl_trc_info(charout)
119                                           CALL prt_ctl_trc( tab4d=tra, mask=tmask, clinfo=ctrcnm, clinfo2='trd' )
120      ENDIF
121      !
[3294]122      IF( nn_timing == 1 )   CALL timing_stop('trc_ldf')
123      !
[2030]124   END SUBROUTINE trc_ldf
125
126
127   SUBROUTINE ldf_ctl
128      !!----------------------------------------------------------------------
129      !!                  ***  ROUTINE ldf_ctl  ***
[3294]130      !!
[2030]131      !! ** Purpose :   Choice of the operator for the lateral tracer diffusion
132      !!
133      !! ** Method  :   set nldf from the namtra_ldf logicals
[3294]134      !!      nldf == -2   No lateral diffusion
[2030]135      !!      nldf == -1   ESOPA test: ALL operators are used
136      !!      nldf ==  0   laplacian operator
137      !!      nldf ==  1   Rotated laplacian operator
138      !!      nldf ==  2   bilaplacian operator
139      !!      nldf ==  3   Rotated bilaplacian
140      !!----------------------------------------------------------------------
[3294]141      INTEGER ::   ioptio, ierr         ! temporary integers
[2030]142      !!----------------------------------------------------------------------
143
[3294]144      IF (ABS(rn_aht_0) < 2._wp*TINY(1.e0)) THEN
145         IF (ABS(rn_ahtrc_0) < 2._wp*TINY(1.e0)) THEN
146            rldf_rat = 1.0_wp
147         ELSE
148            CALL ctl_stop( 'STOP', 'ldf_ctl : cannot define rldf_rat, rn_aht_0==0, rn_ahtrc_0 /=0' )
149         END IF
150      ELSE
151         rldf_rat = rn_ahtrc_0 / rn_aht_0
152      END IF
[2030]153      !  Define the lateral mixing oparator for tracers
154      ! ===============================================
[3294]155
[2030]156      !                               ! control the input
157      ioptio = 0
158      IF( ln_trcldf_lap   )   ioptio = ioptio + 1
159      IF( ln_trcldf_bilap )   ioptio = ioptio + 1
160      IF( ioptio >  1 )   CALL ctl_stop( '          use ONE or NONE of the 2 lap/bilap operator type on tracer' )
161      IF( ioptio == 0 )   nldf = -2   ! No lateral diffusion
162      ioptio = 0
163      IF( ln_trcldf_level )   ioptio = ioptio + 1
164      IF( ln_trcldf_hor   )   ioptio = ioptio + 1
165      IF( ln_trcldf_iso   )   ioptio = ioptio + 1
166      IF( ioptio /= 1 )   CALL ctl_stop( '          use only ONE direction (level/hor/iso)' )
167
168      ! defined the type of lateral diffusion from ln_trcldf_... logicals
169      ! CAUTION : nldf = 1 is used in trazdf_imp, change it carefully
170      ierr = 0
171      IF( ln_trcldf_lap ) THEN       ! laplacian operator
172         IF ( ln_zco ) THEN                ! z-coordinate
173            IF ( ln_trcldf_level )   nldf = 0      ! iso-level  (no rotation)
174            IF ( ln_trcldf_hor   )   nldf = 0      ! horizontal (no rotation)
175            IF ( ln_trcldf_iso   )   nldf = 1      ! isoneutral (   rotation)
176         ENDIF
177         IF ( ln_zps ) THEN             ! z-coordinate
178            IF ( ln_trcldf_level )   ierr = 1      ! iso-level not allowed
179            IF ( ln_trcldf_hor   )   nldf = 0      ! horizontal (no rotation)
180            IF ( ln_trcldf_iso   )   nldf = 1      ! isoneutral (   rotation)
181         ENDIF
182         IF ( ln_sco ) THEN             ! z-coordinate
183            IF ( ln_trcldf_level )   nldf = 0      ! iso-level  (no rotation)
184            IF ( ln_trcldf_hor   )   nldf = 1      ! horizontal (   rotation)
185            IF ( ln_trcldf_iso   )   nldf = 1      ! isoneutral (   rotation)
186         ENDIF
187      ENDIF
188
189      IF( ln_trcldf_bilap ) THEN      ! bilaplacian operator
190         IF ( ln_zco ) THEN                ! z-coordinate
191            IF ( ln_trcldf_level )   nldf = 2      ! iso-level  (no rotation)
192            IF ( ln_trcldf_hor   )   nldf = 2      ! horizontal (no rotation)
193            IF ( ln_trcldf_iso   )   ierr = 2      ! isoneutral (   rotation)
194         ENDIF
195         IF ( ln_zps ) THEN             ! z-coordinate
[3294]196            IF ( ln_trcldf_level )   ierr = 1      ! iso-level not allowed
[2030]197            IF ( ln_trcldf_hor   )   nldf = 2      ! horizontal (no rotation)
198            IF ( ln_trcldf_iso   )   ierr = 2      ! isoneutral (   rotation)
199         ENDIF
200         IF ( ln_sco ) THEN             ! z-coordinate
201            IF ( ln_trcldf_level )   nldf = 2      ! iso-level  (no rotation)
202            IF ( ln_trcldf_hor   )   nldf = 3      ! horizontal (   rotation)
203            IF ( ln_trcldf_iso   )   ierr = 2      ! isoneutral (   rotation)
204         ENDIF
205      ENDIF
206
207      IF( ierr == 1 )   CALL ctl_stop( ' iso-level in z-coordinate - partial step, not allowed' )
208      IF( ierr == 2 )   CALL ctl_stop( ' isoneutral bilaplacian operator does not exist' )
209      IF( lk_traldf_eiv .AND. .NOT.ln_trcldf_iso )   &
210           CALL ctl_stop( '          eddy induced velocity on tracers',   &
211           &              ' the eddy induced velocity on tracers requires isopycnal laplacian diffusion' )
212      IF( nldf == 1 .OR. nldf == 3 ) THEN      ! rotation
213         IF( .NOT.lk_ldfslp )   CALL ctl_stop( '          the rotation of the diffusive tensor require key_ldfslp' )
214#if defined key_offline
215         l_traldf_rot = .TRUE.                 ! needed for trazdf_imp
216#endif
217      ENDIF
218
219      IF( lk_esopa ) THEN
220         IF(lwp) WRITE(numout,*) '          esopa control: use all lateral physics options'
221         nldf = -1
222      ENDIF
223
224      IF(lwp) THEN
225         WRITE(numout,*)
226         IF( nldf == -2 )   WRITE(numout,*) '          NO lateral diffusion'
227         IF( nldf == -1 )   WRITE(numout,*) '          ESOPA test All scheme used'
228         IF( nldf ==  0 )   WRITE(numout,*) '          laplacian operator'
229         IF( nldf ==  1 )   WRITE(numout,*) '          Rotated laplacian operator'
230         IF( nldf ==  2 )   WRITE(numout,*) '          bilaplacian operator'
231         IF( nldf ==  3 )   WRITE(numout,*) '          Rotated bilaplacian'
232      ENDIF
233
[3294]234      IF( ln_trcldf_bilap ) THEN
235         IF(lwp) WRITE(numout,*) '          biharmonic tracer diffusion'
236         IF( rn_ahtrc_0 > 0 .AND. .NOT. lk_esopa )   CALL ctl_stop( 'The horizontal diffusivity coef. rn_ahtrc_0 must be negative' )
237      ELSE
238         IF(lwp) WRITE(numout,*) '          harmonic tracer diffusion (default)'
239         IF( rn_ahtrc_0 < 0 .AND. .NOT. lk_esopa )   CALL ctl_stop('The horizontal diffusivity coef. rn_ahtrc_0 must be positive' )
240      ENDIF
241
242      ! ratio between active and passive tracers diffusive coef.
243      IF (ABS(rn_aht_0) < 2._wp*TINY(1.e0)) THEN
244         IF (ABS(rn_ahtrc_0) < 2._wp*TINY(1.e0)) THEN
245            rldf_rat = 1.0_wp
246         ELSE
247            CALL ctl_stop( 'STOP', 'ldf_ctl : cannot define rldf_rat, rn_aht_0==0, rn_ahtrc_0 /=0' )
248         END IF
249      ELSE
250         rldf_rat = rn_ahtrc_0 / rn_aht_0
251      END IF
252      IF( rldf_rat < 0 ) THEN
253         IF( .NOT.lk_offline ) THEN
254            CALL ctl_stop( 'Choose the same type of diffusive scheme both for active & passive tracers' )
255         ELSE
256            CALL ctl_stop( 'Change the sign of rn_aht_0 in namelist to -/+1' )
257         ENDIF
258      ENDIF
[2030]259      !
260   END SUBROUTINE ldf_ctl
261#else
262   !!----------------------------------------------------------------------
263   !!   Default option                                         Empty module
264   !!----------------------------------------------------------------------
265CONTAINS
266   SUBROUTINE trc_ldf( kt )
267      INTEGER, INTENT(in) :: kt
268      WRITE(*,*) 'trc_ldf: You should not have seen this print! error?', kt
269   END SUBROUTINE trc_ldf
270#endif
271   !!======================================================================
272END MODULE trcldf
Note: See TracBrowser for help on using the repository browser.