1 | MODULE trctrp |
---|
2 | !!====================================================================== |
---|
3 | !! *** MODULE trctrp *** |
---|
4 | !! Ocean Physics : manage the passive tracer transport |
---|
5 | !!====================================================================== |
---|
6 | !! History : 1.0 ! 2004-03 (C. Ethe) Original code |
---|
7 | !! 3.3 ! 2010-07 (C. Ethe) Merge TRA-TRC |
---|
8 | !!---------------------------------------------------------------------- |
---|
9 | #if defined key_top |
---|
10 | !!---------------------------------------------------------------------- |
---|
11 | !! 'key_top' TOP models |
---|
12 | !!---------------------------------------------------------------------- |
---|
13 | !! trc_trp : passive tracer transport |
---|
14 | !!---------------------------------------------------------------------- |
---|
15 | USE par_trc ! need jptra, number of passive tracers |
---|
16 | USE oce_trc ! ocean dynamics and active tracers variables |
---|
17 | USE trc ! ocean passive tracers variables |
---|
18 | USE trcbbl ! bottom boundary layer (trc_bbl routine) |
---|
19 | USE trcdmp ! internal damping (trc_dmp routine) |
---|
20 | USE trcldf ! lateral mixing (trc_ldf routine) |
---|
21 | USE trcadv ! advection (trc_adv routine) |
---|
22 | USE trczdf ! vertical diffusion (trc_zdf routine) |
---|
23 | USE trcatf ! time filtering (trc_atf routine) |
---|
24 | USE trcrad ! positivity (trc_rad routine) |
---|
25 | USE trcsbc ! surface boundary condition (trc_sbc routine) |
---|
26 | USE trcbc ! Tracers boundary condtions ( trc_bc routine) |
---|
27 | USE trcais ! Antarctic Ice Sheet tracers (trc_ais routine) |
---|
28 | USE zpshde ! partial step: hor. derivative (zps_hde routine) |
---|
29 | USE bdy_oce , ONLY: ln_bdy |
---|
30 | USE trcbdy ! BDY open boundaries |
---|
31 | USE in_out_manager |
---|
32 | |
---|
33 | #if defined key_agrif |
---|
34 | USE agrif_top_sponge ! tracers sponges |
---|
35 | #endif |
---|
36 | |
---|
37 | IMPLICIT NONE |
---|
38 | PRIVATE |
---|
39 | |
---|
40 | PUBLIC trc_trp ! called by trc_stp |
---|
41 | |
---|
42 | !!---------------------------------------------------------------------- |
---|
43 | !! NEMO/TOP 4.0 , NEMO Consortium (2018) |
---|
44 | !! $Id$ |
---|
45 | !! Software governed by the CeCILL license (see ./LICENSE) |
---|
46 | !!---------------------------------------------------------------------- |
---|
47 | |
---|
48 | CONTAINS |
---|
49 | |
---|
50 | SUBROUTINE trc_trp( kt, Kbb, Kmm, Krhs, Kaa ) |
---|
51 | !!---------------------------------------------------------------------- |
---|
52 | !! *** ROUTINE trc_trp *** |
---|
53 | !! |
---|
54 | !! ** Purpose : Management of passive tracers transport |
---|
55 | !! |
---|
56 | !! ** Method : - Compute the passive tracers trends |
---|
57 | !! - Update the passive tracers |
---|
58 | !!---------------------------------------------------------------------- |
---|
59 | INTEGER, INTENT( in ) :: kt ! ocean time-step index |
---|
60 | INTEGER, INTENT( in ) :: Kbb, Kmm, Krhs, Kaa ! time level indices (not swapped in this routine) |
---|
61 | !! --------------------------------------------------------------------- |
---|
62 | ! |
---|
63 | IF( ln_timing ) CALL timing_start('trc_trp') |
---|
64 | ! |
---|
65 | IF( .NOT. lk_c1d ) THEN |
---|
66 | ! |
---|
67 | ! ! Partial top/bottom cell: GRADh( trb ) |
---|
68 | IF( ln_zps ) THEN |
---|
69 | IF( ln_isfcav ) THEN ; CALL zps_hde_isf( kt, Kmm, jptra, tr(:,:,:,:,Kbb), pgtu=gtru, pgtv=gtrv, pgtui=gtrui, pgtvi=gtrvi ) ! both top & bottom |
---|
70 | ELSE ; CALL zps_hde ( kt, Kmm, jptra, tr(:,:,:,:,Kbb), gtru, gtrv ) ! only bottom |
---|
71 | ENDIF |
---|
72 | ENDIF |
---|
73 | ! |
---|
74 | CALL trc_sbc ( kt, Kmm, tr, Krhs ) ! surface boundary condition |
---|
75 | IF( ln_trcbc .AND. lltrcbc .AND. kt /= nit000 ) & |
---|
76 | CALL trc_bc ( kt, Kmm, tr, Krhs ) ! tracers: surface and lateral Boundary Conditions |
---|
77 | IF( ln_trcais ) CALL trc_ais ( kt, Kmm, tr, Krhs ) ! tracers from Antarctic Ice Sheet (icb, isf) |
---|
78 | IF( ln_trabbl ) CALL trc_bbl ( kt, Kbb, Kmm, tr, Krhs ) ! advective (and/or diffusive) bottom boundary layer scheme |
---|
79 | IF( ln_trcdmp ) CALL trc_dmp ( kt, Kbb, Kmm, tr, Krhs ) ! internal damping trends |
---|
80 | IF( ln_bdy ) CALL trc_bdy_dmp( kt, Kbb, Krhs ) ! BDY damping trends |
---|
81 | #if defined key_agrif |
---|
82 | IF(.NOT. Agrif_Root()) CALL Agrif_Sponge_trc ! tracers sponge |
---|
83 | #endif |
---|
84 | #if ! defined key_RK3 |
---|
85 | ! ! MLF only: add the advection trend to the RHS |
---|
86 | CALL trc_adv ( kt, Kbb, Kmm, tr, Krhs ) ! horizontal & vertical advection |
---|
87 | #endif |
---|
88 | CALL trc_ldf ( kt, Kbb, Kmm, tr, Krhs ) ! lateral mixing |
---|
89 | CALL trc_zdf ( kt, Kbb, Kmm, Krhs, tr, Kaa ) ! vert. mixing & after tracer ==> after |
---|
90 | #if defined key_RK3 |
---|
91 | ! ! RK3: only manage lateral boundary |
---|
92 | # if defined key_agrif |
---|
93 | CALL Agrif_trc ( kt ) ! AGRIF zoom boundaries |
---|
94 | # endif |
---|
95 | ! ! Update after tracer on domain lateral boundaries |
---|
96 | CALL lbc_lnk( 'stprk3_stg', tr(:,:,:,:,Kaa), 'T', 1._wp ) |
---|
97 | ! |
---|
98 | IF( ln_bdy ) CALL trc_bdy ( kt, Kbb, Kmm, Kaa ) |
---|
99 | #else |
---|
100 | ! ! MLF: apply Asselin time filter and manage lateral boundary |
---|
101 | CALL trc_atf ( kt, Kbb, Kmm, Kaa , tr ) ! time filtering of "now" tracer fields |
---|
102 | #endif |
---|
103 | ! |
---|
104 | ! Subsequent calls use the filtered values: Kmm and Kaa |
---|
105 | ! These are used explicitly here since time levels will not be swapped until after tra_atf/dyn_atf/ssh_atf in stp |
---|
106 | ! |
---|
107 | IF( ln_trcrad ) CALL trc_rad ( kt, Kmm, Kaa, tr ) ! Correct artificial negative concentrations |
---|
108 | IF( ln_trcdmp_clo ) CALL trc_dmp_clo( kt, Kmm, Kaa ) ! internal damping trends on closed seas only |
---|
109 | |
---|
110 | ! |
---|
111 | ELSE ! 1D vertical configuration |
---|
112 | CALL trc_sbc( kt, Kmm, tr, Krhs ) ! surface boundary condition |
---|
113 | IF( ln_trcdmp ) CALL trc_dmp( kt, Kbb, Kmm, tr, Krhs ) ! internal damping trends |
---|
114 | CALL trc_zdf( kt, Kbb, Kmm, Krhs, tr, Kaa ) ! vert. mixing & after tracer ==> after |
---|
115 | CALL trc_atf( kt, Kbb, Kmm, Kaa , tr ) ! time filtering of "now" tracer fields |
---|
116 | ! |
---|
117 | ! Subsequent calls use the filtered values: Kmm and Kaa |
---|
118 | ! These are used explicitly here since time levels will not be swapped until after tra_atf/dyn_atf/ssh_atf in stp |
---|
119 | ! |
---|
120 | IF( ln_trcrad ) CALL trc_rad( kt, Kmm, Kaa, tr ) ! Correct artificial negative concentrations |
---|
121 | ! |
---|
122 | END IF |
---|
123 | ! |
---|
124 | IF( ln_timing ) CALL timing_stop('trc_trp') |
---|
125 | ! |
---|
126 | END SUBROUTINE trc_trp |
---|
127 | |
---|
128 | #else |
---|
129 | !!---------------------------------------------------------------------- |
---|
130 | !! Dummy module : No TOP models |
---|
131 | !!---------------------------------------------------------------------- |
---|
132 | CONTAINS |
---|
133 | SUBROUTINE trc_trp( kt ) ! Empty routine |
---|
134 | INTEGER, INTENT(in) :: kt |
---|
135 | WRITE(*,*) 'trc_trp: You should not have seen this print! error?', kt |
---|
136 | END SUBROUTINE trc_trp |
---|
137 | #endif |
---|
138 | |
---|
139 | !!====================================================================== |
---|
140 | END MODULE trctrp |
---|