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.
traadv.F90 in NEMO/branches/2020/dev_r13923_Tiling_Cleanup_MPI3_LoopFusion/src/OCE/TRA – NEMO

source: NEMO/branches/2020/dev_r13923_Tiling_Cleanup_MPI3_LoopFusion/src/OCE/TRA/traadv.F90 @ 13946

Last change on this file since 13946 was 13946, checked in by francesca, 4 years ago

Merge with dev_r13508_HPC-09_loop_fusion

  • Property svn:keywords set to Id
File size: 20.6 KB
Line 
1MODULE traadv
2   !!==============================================================================
3   !!                       ***  MODULE  traadv  ***
4   !! Ocean active tracers:  advection trend
5   !!==============================================================================
6   !! History :  2.0  !  2005-11  (G. Madec)  Original code
7   !!            3.3  !  2010-09  (C. Ethe, G. Madec)  merge TRC-TRA + switch from velocity to transport
8   !!            3.6  !  2011-06  (G. Madec)  Addition of Mixed Layer Eddy parameterisation
9   !!            3.7  !  2014-05  (G. Madec)  Add 2nd/4th order cases for CEN and FCT schemes
10   !!             -   !  2014-12  (G. Madec) suppression of cross land advection option
11   !!            3.6  !  2015-06  (E. Clementi) Addition of Stokes drift in case of wave coupling
12   !!----------------------------------------------------------------------
13
14   !!----------------------------------------------------------------------
15   !!   tra_adv       : compute ocean tracer advection trend
16   !!   tra_adv_init  : control the different options of advection scheme
17   !!----------------------------------------------------------------------
18   USE oce            ! ocean dynamics and active tracers
19   USE dom_oce        ! ocean space and time domain
20   ! TEMP: [tiling] This change not necessary after extended haloes development
21   USE domain, ONLY : dom_tile
22   USE domvvl         ! variable vertical scale factors
23   USE sbcwave        ! wave module
24   USE sbc_oce        ! surface boundary condition: ocean
25   USE traadv_cen     ! centered scheme            (tra_adv_cen  routine)
26   USE traadv_fct     ! FCT      scheme            (tra_adv_fct  routine)
27   USE traadv_fct_lf  ! FCT      scheme            (tra_adv_fct  routine - loop fusion version)
28   USE traadv_mus     ! MUSCL    scheme            (tra_adv_mus  routine)
29   USE traadv_mus_lf  ! MUSCL    scheme            (tra_adv_mus  routine - loop fusion version)
30   USE traadv_ubs     ! UBS      scheme            (tra_adv_ubs  routine)
31   USE traadv_qck     ! QUICKEST scheme            (tra_adv_qck  routine)
32   USE tramle         ! Mixed Layer Eddy transport (tra_mle_trp  routine)
33   USE ldftra         ! Eddy Induced transport     (ldf_eiv_trp  routine)
34   USE ldfslp         ! Lateral diffusion: slopes of neutral surfaces
35   USE trd_oce        ! trends: ocean variables
36   USE trdtra         ! trends manager: tracers
37   USE diaptr         ! Poleward heat transport
38   !
39   USE in_out_manager ! I/O manager
40   USE iom            ! I/O module
41   USE prtctl         ! Print control
42   USE lib_mpp        ! MPP library
43   USE timing         ! Timing
44
45   IMPLICIT NONE
46   PRIVATE
47
48   PUBLIC   tra_adv        ! called by step.F90
49   PUBLIC   tra_adv_init   ! called by nemogcm.F90
50
51   !                            !!* Namelist namtra_adv *
52   LOGICAL ::   ln_traadv_OFF    ! no advection on T and S
53   LOGICAL ::   ln_traadv_cen    ! centered scheme flag
54   INTEGER ::      nn_cen_h, nn_cen_v   ! =2/4 : horizontal and vertical choices of the order of CEN scheme
55   LOGICAL ::   ln_traadv_fct    ! FCT scheme flag
56   INTEGER ::      nn_fct_h, nn_fct_v   ! =2/4 : horizontal and vertical choices of the order of FCT scheme
57   LOGICAL ::   ln_traadv_mus    ! MUSCL scheme flag
58   LOGICAL ::      ln_mus_ups           ! use upstream scheme in vivcinity of river mouths
59   LOGICAL ::   ln_traadv_ubs    ! UBS scheme flag
60   INTEGER ::      nn_ubs_v             ! =2/4 : vertical choice of the order of UBS scheme
61   LOGICAL ::   ln_traadv_qck    ! QUICKEST scheme flag
62
63   INTEGER ::   nadv             ! choice of the type of advection scheme
64   !                             ! associated indices:
65   INTEGER, PARAMETER ::   np_NO_adv  = 0   ! no T-S advection
66   INTEGER, PARAMETER ::   np_CEN     = 1   ! 2nd/4th order centered scheme
67   INTEGER, PARAMETER ::   np_FCT     = 2   ! 2nd/4th order Flux Corrected Transport scheme
68   INTEGER, PARAMETER ::   np_MUS     = 3   ! MUSCL scheme
69   INTEGER, PARAMETER ::   np_UBS     = 4   ! 3rd order Upstream Biased Scheme
70   INTEGER, PARAMETER ::   np_QCK     = 5   ! QUICK scheme
71
72   !! * Substitutions
73#  include "do_loop_substitute.h90"
74#  include "domzgr_substitute.h90"
75   !!----------------------------------------------------------------------
76   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
77   !! $Id$
78   !! Software governed by the CeCILL license (see ./LICENSE)
79   !!----------------------------------------------------------------------
80CONTAINS
81
82   SUBROUTINE tra_adv( kt, Kbb, Kmm, pts, Krhs )
83      !!----------------------------------------------------------------------
84      !!                  ***  ROUTINE tra_adv  ***
85      !!
86      !! ** Purpose :   compute the ocean tracer advection trend.
87      !!
88      !! ** Method  : - Update (uu(:,:,:,Krhs),vv(:,:,:,Krhs)) with the advection term following nadv
89      !!----------------------------------------------------------------------
90      INTEGER                                  , INTENT(in)    :: kt             ! ocean time-step index
91      INTEGER                                  , INTENT(in)    :: Kbb, Kmm, Krhs ! time level indices
92      REAL(wp), DIMENSION(jpi,jpj,jpk,jpts,jpt), INTENT(inout) :: pts            ! active tracers and RHS of tracer equation
93      !
94      INTEGER ::   ji, jj, jk   ! dummy loop index
95      ! TEMP: [tiling] This change not necessary and can be A2D(nn_hls) if using XIOS (subdomain support)
96      REAL(wp), DIMENSION(:,:,:), ALLOCATABLE, SAVE :: zuu, zvv, zww   ! 3D workspace
97      REAL(wp), DIMENSION(:,:,:), ALLOCATABLE :: ztrdt, ztrds
98      ! TEMP: [tiling] This change not necessary after extra haloes development
99      LOGICAL :: lskip
100      !!----------------------------------------------------------------------
101      !
102      IF( ln_timing )   CALL timing_start('tra_adv')
103      !
104      lskip = .FALSE.
105
106      ! TEMP: [tiling] These changes not necessary if using XIOS (subdomain support)
107      IF( ntile == 0 .OR. ntile == 1 )  THEN                       ! Do only on the first tile
108         ALLOCATE( zuu(jpi,jpj,jpk), zvv(jpi,jpj,jpk), zww(jpi,jpj,jpk) )
109      ENDIF
110
111      ! TEMP: [tiling] These changes not necessary after extra haloes development (lbc_lnk removed from tra_adv_*) and if XIOS has subdomain support (ldf_eiv_dia)
112      IF( nadv /= np_CEN .OR. (nadv == np_CEN .AND. nn_cen_h == 4) .OR. ln_ldfeiv_dia )  THEN
113         IF( ln_tile ) THEN
114            IF( ntile == 1 ) THEN
115               CALL dom_tile( ntsi, ntsj, ntei, ntej, ktile = 0 )
116            ELSE
117               lskip = .TRUE.
118            ENDIF
119         ENDIF
120      ENDIF
121      IF( .NOT. lskip ) THEN
122         !                                         !==  effective transport  ==!
123         IF( ln_wave .AND. ln_sdw )  THEN
124            DO_3D( nn_hls, nn_hls, nn_hls, nn_hls, 1, jpkm1 )
125               zuu(ji,jj,jk) = e2u  (ji,jj) * e3u(ji,jj,jk,Kmm) * ( uu(ji,jj,jk,Kmm) + usd(ji,jj,jk) )
126               zvv(ji,jj,jk) = e1v  (ji,jj) * e3v(ji,jj,jk,Kmm) * ( vv(ji,jj,jk,Kmm) + vsd(ji,jj,jk) )
127               zww(ji,jj,jk) = e1e2t(ji,jj)                     * ( ww(ji,jj,jk)     + wsd(ji,jj,jk) )
128            END_3D
129         ELSE
130            DO_3D( nn_hls, nn_hls, nn_hls, nn_hls, 1, jpkm1 )
131               zuu(ji,jj,jk) = e2u  (ji,jj) * e3u(ji,jj,jk,Kmm) * uu(ji,jj,jk,Kmm)               ! eulerian transport only
132               zvv(ji,jj,jk) = e1v  (ji,jj) * e3v(ji,jj,jk,Kmm) * vv(ji,jj,jk,Kmm)
133               zww(ji,jj,jk) = e1e2t(ji,jj)                     * ww(ji,jj,jk)
134            END_3D
135         ENDIF
136         !
137         IF( ln_vvl_ztilde .OR. ln_vvl_layer ) THEN                                ! add z-tilde and/or vvl corrections
138            DO_3D( nn_hls, nn_hls, nn_hls, nn_hls, 1, jpkm1 )
139               zuu(ji,jj,jk) = zuu(ji,jj,jk) + un_td(ji,jj,jk)
140               zvv(ji,jj,jk) = zvv(ji,jj,jk) + vn_td(ji,jj,jk)
141            END_3D
142         ENDIF
143         !
144         DO_2D( nn_hls, nn_hls, nn_hls, nn_hls )
145            zuu(ji,jj,jpk) = 0._wp                                                      ! no transport trough the bottom
146            zvv(ji,jj,jpk) = 0._wp
147            zww(ji,jj,jpk) = 0._wp
148         END_2D
149         !
150         ! TEMP: [tiling] These changes not necessary if using XIOS (subdomain support)
151         IF( ln_ldfeiv .AND. .NOT. ln_traldf_triad )   &
152            &              CALL ldf_eiv_trp( kt, nit000, zuu(A2D(nn_hls),:), zvv(A2D(nn_hls),:), zww(A2D(nn_hls),:), &
153            &                                'TRA', Kmm, Krhs )   ! add the eiv transport (if necessary)
154         !
155         IF( ln_mle    )   CALL tra_mle_trp( kt, nit000, zuu(A2D(nn_hls),:), zvv(A2D(nn_hls),:), zww(A2D(nn_hls),:), &
156            &                                'TRA', Kmm       )   ! add the mle transport (if necessary)
157         !
158         ! TEMP: [tiling] This change not necessary if using XIOS (subdomain support)
159         IF( ntile == 0 .OR. ntile == nijtile )  THEN                ! Do only on the last tile
160            CALL iom_put( "uocetr_eff", zuu )                                        ! output effective transport
161            CALL iom_put( "vocetr_eff", zvv )
162            CALL iom_put( "wocetr_eff", zww )
163         ENDIF
164         !
165   !!gm ???
166         ! TEMP: [tiling] This change not necessary if using XIOS (subdomain support)
167         CALL dia_ptr( kt, Kmm, zvv(A2D(nn_hls),:) )                                    ! diagnose the effective MSF
168   !!gm ???
169         !
170
171         IF( l_trdtra )   THEN                    !* Save ta and sa trends
172            ALLOCATE( ztrdt(jpi,jpj,jpk), ztrds(jpi,jpj,jpk) )
173            ztrdt(:,:,:) = pts(:,:,:,jp_tem,Krhs)
174            ztrds(:,:,:) = pts(:,:,:,jp_sal,Krhs)
175         ENDIF
176         !
177         ! NOTE: [tiling-comms-merge] These lbc_lnk calls are still needed (pts in the zco case because zps_hde is not called in step, zuu/zvv/zww in all cases, I think because DO loop bounds need to be updated in DYN as done in TRA)
178         SELECT CASE ( nadv )                      !==  compute advection trend and add it to general trend  ==!
179         !
180         CASE ( np_CEN )                                 ! Centered scheme : 2nd / 4th order
181#if defined key_mpi3
182            IF (nn_hls.EQ.2) CALL lbc_lnk_nc_multi( 'traadv', pts(:,:,:,:,Kmm), 'T', 1. )
183#else
184            IF (nn_hls.EQ.2) CALL lbc_lnk( 'traadv', pts(:,:,:,:,Kmm), 'T', 1. )
185#endif
186            CALL tra_adv_cen    ( kt, nit000, 'TRA',         zuu, zvv, zww, Kmm, pts, jpts, Krhs, nn_cen_h, nn_cen_v )
187         CASE ( np_FCT )                                 ! FCT scheme      : 2nd / 4th order
188            IF (nn_hls.EQ.2) THEN
189#if defined key_mpi3
190               CALL lbc_lnk_nc_multi( 'traadv', pts(:,:,:,:,Kbb), 'T', 1., pts(:,:,:,:,Kmm), 'T', 1.)
191               CALL lbc_lnk_nc_multi( 'traadv', zuu(:,:,:), 'U', -1., zvv(:,:,:), 'V', -1., zww(:,:,:), 'W', 1.)
192#else
193               CALL lbc_lnk_multi( 'traadv', pts(:,:,:,:,Kbb), 'T', 1., pts(:,:,:,:,Kmm), 'T', 1.)
194               CALL lbc_lnk_multi( 'traadv', zuu(:,:,:), 'U', -1., zvv(:,:,:), 'V', -1., zww(:,:,:), 'W', 1.)
195#endif
196#if defined key_loop_fusion
197               CALL tra_adv_fct_lf ( kt, nit000, 'TRA', rDt, zuu, zvv, zww, Kbb, Kmm, pts, jpts, Krhs, nn_fct_h, nn_fct_v )
198#else
199               CALL tra_adv_fct    ( kt, nit000, 'TRA', rDt, zuu, zvv, zww, Kbb, Kmm, pts, jpts, Krhs, nn_fct_h, nn_fct_v )
200#endif
201            ELSE
202               CALL tra_adv_fct    ( kt, nit000, 'TRA', rDt, zuu, zvv, zww, Kbb, Kmm, pts, jpts, Krhs, nn_fct_h, nn_fct_v )
203            END IF
204         CASE ( np_MUS )                                 ! MUSCL
205            ! NOTE: [tiling-comms-merge] I added this lbc_lnk as it did not validate against the trunk when using ln_zco
206            IF (nn_hls.EQ.2) THEN 
207#if defined key_mpi3
208                CALL lbc_lnk_nc_multi( 'traadv', pts(:,:,:,:,Kbb), 'T', 1.)
209#else
210                CALL lbc_lnk( 'traadv', pts(:,:,:,:,Kbb), 'T', 1.)
211#endif
212#if defined key_loop_fusion
213                CALL tra_adv_mus_lf ( kt, nit000, 'TRA', rDt, zuu, zvv, zww, Kbb, Kmm, pts, jpts, Krhs, ln_mus_ups ) 
214#else
215                CALL tra_adv_mus    ( kt, nit000, 'TRA', rDt, zuu, zvv, zww, Kbb, Kmm, pts, jpts, Krhs, ln_mus_ups ) 
216#endif
217            ELSE
218                CALL tra_adv_mus    ( kt, nit000, 'TRA', rDt, zuu, zvv, zww, Kbb, Kmm, pts, jpts, Krhs, ln_mus_ups ) 
219            END IF
220         CASE ( np_UBS )                                 ! UBS
221#if defined key_mpi3
222            IF (nn_hls.EQ.2) CALL lbc_lnk_nc_multi( 'traadv', pts(:,:,:,:,Kbb), 'T', 1.)
223#else
224            IF (nn_hls.EQ.2) CALL lbc_lnk( 'traadv', pts(:,:,:,:,Kbb), 'T', 1.)
225#endif
226            CALL tra_adv_ubs    ( kt, nit000, 'TRA', rDt, zuu, zvv, zww, Kbb, Kmm, pts, jpts, Krhs, nn_ubs_v   )
227         CASE ( np_QCK )                                 ! QUICKEST
228            IF (nn_hls.EQ.2) THEN
229#if defined key_mpi3
230               CALL lbc_lnk_nc_multi( 'traadv', zuu(:,:,:), 'U', -1., zvv(:,:,:), 'V', -1.)
231               CALL lbc_lnk_nc_multi( 'traadv', pts(:,:,:,:,Kbb), 'T', 1.)
232#else
233               CALL lbc_lnk_multi( 'traadv', zuu(:,:,:), 'U', -1., zvv(:,:,:), 'V', -1.)
234               CALL lbc_lnk( 'traadv', pts(:,:,:,:,Kbb), 'T', 1.)
235#endif
236            END IF
237            CALL tra_adv_qck    ( kt, nit000, 'TRA', rDt, zuu, zvv, zww, Kbb, Kmm, pts, jpts, Krhs )
238         !
239         END SELECT
240         !
241         IF( l_trdtra )   THEN                      ! save the advective trends for further diagnostics
242            DO jk = 1, jpkm1
243               ztrdt(:,:,jk) = pts(:,:,jk,jp_tem,Krhs) - ztrdt(:,:,jk)
244               ztrds(:,:,jk) = pts(:,:,jk,jp_sal,Krhs) - ztrds(:,:,jk)
245            END DO
246            CALL trd_tra( kt, Kmm, Krhs, 'TRA', jp_tem, jptra_totad, ztrdt )
247            CALL trd_tra( kt, Kmm, Krhs, 'TRA', jp_sal, jptra_totad, ztrds )
248            DEALLOCATE( ztrdt, ztrds )
249         ENDIF
250
251         ! TEMP: [tiling] This change not necessary after extra haloes development (lbc_lnk removed from tra_adv_*) and if XIOS has subdomain support (ldf_eiv_dia)
252         IF( ln_tile .AND. ntile == 0 ) CALL dom_tile( ntsi, ntsj, ntei, ntej, ktile = 1 )
253
254      ENDIF
255      !                                              ! print mean trends (used for debugging)
256      IF(sn_cfctl%l_prtctl)   CALL prt_ctl( tab3d_1=pts(:,:,:,jp_tem,Krhs), clinfo1=' adv  - Ta: ', mask1=tmask, &
257         &                                  tab3d_2=pts(:,:,:,jp_sal,Krhs), clinfo2=       ' Sa: ', mask2=tmask, clinfo3='tra' )
258
259      ! TEMP: [tiling] This change not necessary if using XIOS (subdomain support)
260      IF( ntile == 0 .OR. ntile == nijtile )  THEN                ! Do only for the full domain
261         DEALLOCATE( zuu, zvv, zww )
262      ENDIF
263      !
264      IF( ln_timing )   CALL timing_stop( 'tra_adv' )
265      !
266   END SUBROUTINE tra_adv
267
268
269   SUBROUTINE tra_adv_init
270      !!---------------------------------------------------------------------
271      !!                  ***  ROUTINE tra_adv_init  ***
272      !!               
273      !! ** Purpose :   Control the consistency between namelist options for
274      !!              tracer advection schemes and set nadv
275      !!----------------------------------------------------------------------
276      INTEGER ::   ioptio, ios   ! Local integers
277      !
278      NAMELIST/namtra_adv/ ln_traadv_OFF,                        &   ! No advection
279         &                 ln_traadv_cen , nn_cen_h, nn_cen_v,   &   ! CEN
280         &                 ln_traadv_fct , nn_fct_h, nn_fct_v,   &   ! FCT
281         &                 ln_traadv_mus , ln_mus_ups,           &   ! MUSCL
282         &                 ln_traadv_ubs ,           nn_ubs_v,   &   ! UBS
283         &                 ln_traadv_qck                             ! QCK
284      !!----------------------------------------------------------------------
285      !
286      !                                !==  Namelist  ==!
287      READ  ( numnam_ref, namtra_adv, IOSTAT = ios, ERR = 901)
288901   IF( ios /= 0 )   CALL ctl_nam ( ios , 'namtra_adv in reference namelist' )
289      !
290      READ  ( numnam_cfg, namtra_adv, IOSTAT = ios, ERR = 902 )
291902   IF( ios >  0 )   CALL ctl_nam ( ios , 'namtra_adv in configuration namelist' )
292      IF(lwm) WRITE( numond, namtra_adv )
293      !
294      IF(lwp) THEN                           ! Namelist print
295         WRITE(numout,*)
296         WRITE(numout,*) 'tra_adv_init : choice/control of the tracer advection scheme'
297         WRITE(numout,*) '~~~~~~~~~~~~'
298         WRITE(numout,*) '   Namelist namtra_adv : chose a advection scheme for tracers'
299         WRITE(numout,*) '      No advection on T & S                     ln_traadv_OFF = ', ln_traadv_OFF
300         WRITE(numout,*) '      centered scheme                           ln_traadv_cen = ', ln_traadv_cen
301         WRITE(numout,*) '            horizontal 2nd/4th order               nn_cen_h   = ', nn_fct_h
302         WRITE(numout,*) '            vertical   2nd/4th order               nn_cen_v   = ', nn_fct_v
303         WRITE(numout,*) '      Flux Corrected Transport scheme           ln_traadv_fct = ', ln_traadv_fct
304         WRITE(numout,*) '            horizontal 2nd/4th order               nn_fct_h   = ', nn_fct_h
305         WRITE(numout,*) '            vertical   2nd/4th order               nn_fct_v   = ', nn_fct_v
306         WRITE(numout,*) '      MUSCL scheme                              ln_traadv_mus = ', ln_traadv_mus
307         WRITE(numout,*) '            + upstream scheme near river mouths    ln_mus_ups = ', ln_mus_ups
308         WRITE(numout,*) '      UBS scheme                                ln_traadv_ubs = ', ln_traadv_ubs
309         WRITE(numout,*) '            vertical   2nd/4th order               nn_ubs_v   = ', nn_ubs_v
310         WRITE(numout,*) '      QUICKEST scheme                           ln_traadv_qck = ', ln_traadv_qck
311      ENDIF
312      !
313      !                                !==  Parameter control & set nadv ==!
314      ioptio = 0                       
315      IF( ln_traadv_OFF ) THEN   ;   ioptio = ioptio + 1   ;   nadv = np_NO_adv   ;   ENDIF
316      IF( ln_traadv_cen ) THEN   ;   ioptio = ioptio + 1   ;   nadv = np_CEN      ;   ENDIF
317      IF( ln_traadv_fct ) THEN   ;   ioptio = ioptio + 1   ;   nadv = np_FCT      ;   ENDIF
318      IF( ln_traadv_mus ) THEN   ;   ioptio = ioptio + 1   ;   nadv = np_MUS      ;   ENDIF
319      IF( ln_traadv_ubs ) THEN   ;   ioptio = ioptio + 1   ;   nadv = np_UBS      ;   ENDIF
320      IF( ln_traadv_qck ) THEN   ;   ioptio = ioptio + 1   ;   nadv = np_QCK      ;   ENDIF
321      !
322      IF( ioptio /= 1 )   CALL ctl_stop( 'tra_adv_init: Choose ONE advection option in namelist namtra_adv' )
323      !
324      IF( ln_traadv_cen .AND. ( nn_cen_h /= 2 .AND. nn_cen_h /= 4 )   &          ! Centered
325                        .AND. ( nn_cen_v /= 2 .AND. nn_cen_v /= 4 )   ) THEN
326        CALL ctl_stop( 'tra_adv_init: CEN scheme, choose 2nd or 4th order' )
327      ENDIF
328      IF( ln_traadv_fct .AND. ( nn_fct_h /= 2 .AND. nn_fct_h /= 4 )   &          ! FCT
329                        .AND. ( nn_fct_v /= 2 .AND. nn_fct_v /= 4 )   ) THEN
330        CALL ctl_stop( 'tra_adv_init: FCT scheme, choose 2nd or 4th order' )
331      ENDIF
332      IF( ln_traadv_ubs .AND. ( nn_ubs_v /= 2 .AND. nn_ubs_v /= 4 )   ) THEN     ! UBS
333        CALL ctl_stop( 'tra_adv_init: UBS scheme, choose 2nd or 4th order' )
334      ENDIF
335      IF( ln_traadv_ubs .AND. nn_ubs_v == 4 ) THEN
336         CALL ctl_warn( 'tra_adv_init: UBS scheme, only 2nd FCT scheme available on the vertical. It will be used' )
337      ENDIF
338      IF( ln_isfcav ) THEN                                                       ! ice-shelf cavities
339         IF(  ln_traadv_cen .AND. nn_cen_v == 4    .OR.   &                            ! NO 4th order with ISF
340            & ln_traadv_fct .AND. nn_fct_v == 4   )   CALL ctl_stop( 'tra_adv_init: 4th order COMPACT scheme not allowed with ISF' )
341      ENDIF
342      !
343      !                                !==  Print the choice  ==! 
344      IF(lwp) THEN
345         WRITE(numout,*)
346         SELECT CASE ( nadv )
347         CASE( np_NO_adv  )   ;   WRITE(numout,*) '   ==>>>   NO T-S advection'
348         CASE( np_CEN     )   ;   WRITE(numout,*) '   ==>>>   CEN      scheme is used. Horizontal order: ', nn_cen_h,   &
349            &                                                                        ' Vertical   order: ', nn_cen_v
350         CASE( np_FCT     )   ;   WRITE(numout,*) '   ==>>>   FCT      scheme is used. Horizontal order: ', nn_fct_h,   &
351            &                                                                        ' Vertical   order: ', nn_fct_v
352         CASE( np_MUS     )   ;   WRITE(numout,*) '   ==>>>   MUSCL    scheme is used'
353         CASE( np_UBS     )   ;   WRITE(numout,*) '   ==>>>   UBS      scheme is used'
354         CASE( np_QCK     )   ;   WRITE(numout,*) '   ==>>>   QUICKEST scheme is used'
355         END SELECT
356      ENDIF
357      !
358      CALL tra_mle_init            !== initialisation of the Mixed Layer Eddy parametrisation (MLE)  ==!
359      !
360   END SUBROUTINE tra_adv_init
361
362  !!======================================================================
363END MODULE traadv
Note: See TracBrowser for help on using the repository browser.