Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[../main/NEMO_manual]{subfiles}
\begin{document}
\chapter{Ocean Tracers (TRA)}
\label{chap:TRA}
\chaptertoc
\paragraph{Changes record} ~\\
{\footnotesize
\begin{tabularx}{\textwidth}{l||X|X}
Release & Author(s) & Modifications \\
\hline
{\em 4.0} & {\em Christian \'{E}th\'{e} } & {\em Review } \\
{\em 3.6} & {\em Gurvan Madec } & {\em Update } \\
{\em $\leq$ 3.4} & {\em Gurvan Madec and S\'{e}bastien Masson} & {\em First version} \\
\end{tabularx}
}
\clearpage
% missing/update
% traqsr: need to coordinate with SBC module
%STEVEN : is the use of the word "positive" to describe a scheme enough, or should it be "positive definite"?
%I added a comment to this effect on some instances of this below
Using the representation described in \autoref{chap:DOM}, several semi -discrete space forms of
the tracer equations are available depending on the vertical coordinate used and on the physics used.
In all the equations presented here, the masking has been omitted for simplicity.
One must be aware that all the quantities are masked fields and that
each time a mean or difference operator is used, the resulting field is multiplied by a mask.
The two active tracers are potential temperature and salinity.
Their prognostic equations can be summarized as follows:
\[
\text{NXT} = \text{ADV} + \text{LDF} + \text{ZDF} + \text{SBC}
+ \{\text{QSR}, \text{BBC}, \text{BBL}, \text{DMP}\}
\]
NXT stands for next, referring to the time-stepping.
From left to right, the terms on the rhs of the tracer equations are the advection (ADV),
the lateral diffusion (LDF), the vertical diffusion (ZDF),
the contributions from the external forcings (SBC: Surface Boundary Condition,
QSR: penetrative Solar Radiation, and BBC: Bottom Boundary Condition),
the contribution from the bottom boundary Layer (BBL) parametrisation,
and an internal damping (DMP) term.
The terms QSR, BBC, BBL and DMP are optional.
The external forcings and parameterisations require complex inputs and complex calculations
(\eg\ bulk formulae, estimation of mixing coefficients) that are carried out in the SBC,
LDF and ZDF modules and described in \autoref{chap:SBC}, \autoref{chap:LDF} and
\autoref{chap:ZDF}, respectively.
Note that \mdl{tranpc}, the non-penetrative convection module,
although located in the \path{./src/OCE/TRA} directory as it directly modifies the tracer fields,
is described with the model vertical physics (ZDF) together with
other available parameterization of convection.
In the present chapter we also describe the diagnostic equations used to
compute the sea-water properties (density, Brunt-V\"{a}is\"{a}l\"{a} frequency, specific heat and
freezing point with associated modules \mdl{eosbn2} and \mdl{phycst}).
The different options available to the user are managed by namelist logicals.
For each equation term \textit{TTT}, the namelist logicals are \textit{ln\_traTTT\_xxx},
where \textit{xxx} is a 3 or 4 letter acronym corresponding to each optional scheme.
The equivalent code can be found in the \textit{traTTT} or \textit{traTTT\_xxx} module,
in the \path{./src/OCE/TRA} directory.
The user has the option of extracting each tendency term on the RHS of the tracer equation for output
(\np{ln_tra_trd}{ln\_tra\_trd} or \np[=.true.]{ln_tra_mxl}{ln\_tra\_mxl}),
as described in \autoref{chap:DIA}.
%% =================================================================================================
\section[Tracer advection (\textit{traadv.F90})]{Tracer advection (\protect\mdl{traadv})}
\label{sec:TRA_adv}
\begin{listing}
\nlst{namtra_adv}
\caption{\forcode{&namtra_adv}}
\label{lst:namtra_adv}
\end{listing}
When considered (\ie\ when \np{ln_traadv_OFF}{ln\_traadv\_OFF} is not set to \forcode{.true.}),
the advection tendency of a tracer is expressed in flux form,
\ie\ as the divergence of the advective fluxes.
Its discrete expression is given by:
\begin{equation}
\label{eq:TRA_adv}
ADV_\tau = - \frac{1}{b_t} \Big( \delta_i [ e_{2u} \, e_{3u} \; u \; \tau_u]
+ \delta_j [ e_{1v} \, e_{3v} \; v \; \tau_v] \Big)
- \frac{1}{e_{3t}} \delta_k [w \; \tau_w]
\end{equation}
where $\tau$ is either T or S, and $b_t = e_{1t} \, e_{2t} \, e_{3t}$ is the volume of $T$-cells.
The flux form in \autoref{eq:TRA_adv} implicitly requires the use of the continuity equation.
Indeed, it is obtained by using the following equality:
$\nabla \cdot (\vect U \, T) = \vect U \cdot \nabla T$ which
results from the use of the continuity equation,
$\partial_t e_3 + e_3 \; \nabla \cdot \vect U = 0$
(which reduces to $\nabla \cdot \vect U = 0$ in linear free surface,
\ie\ \np[=.true.]{ln_linssh}{ln\_linssh}).
Therefore it is of paramount importance to
design the discrete analogue of the advection tendency so that
it is consistent with the continuity equation in order to
enforce the conservation properties of the continuous equations.
In other words, by setting $\tau = 1$ in (\autoref{eq:TRA_adv}) we recover
the discrete form of the continuity equation which is used to calculate the vertical velocity.
\begin{figure}
\centering
\includegraphics[width=0.66\textwidth]{TRA_adv_scheme}
\caption[Ways to evaluate the tracer value and the amount of tracer exchanged]{
Schematic representation of some ways used to evaluate the tracer value at $u$-point and
the amount of tracer exchanged between two neighbouring grid points.
Upsteam biased scheme (ups):
the upstream value is used and the black area is exchanged.
Piecewise parabolic method (ppm):
a parabolic interpolation is used and the black and dark grey areas are exchanged.
Monotonic upstream scheme for conservative laws (muscl):
a parabolic interpolation is used and black, dark grey and grey areas are exchanged.
Second order scheme (cen2):
the mean value is used and black, dark grey, grey and light grey areas are exchanged.
Note that this illustration does not include the flux limiter used in ppm and muscl schemes.}
\label{fig:TRA_adv_scheme}
\end{figure}
The key difference between the advection schemes available in \NEMO\ is the choice made in
space and time interpolation to define the value of the tracer at the velocity points
(\autoref{fig:TRA_adv_scheme}).
Along solid lateral and bottom boundaries a zero tracer flux is automatically specified,
since the normal velocity is zero there.
At the sea surface the boundary condition depends on the type of sea surface chosen:
\begin{description}
\item [linear free surface] (\np[=.true.]{ln_linssh}{ln\_linssh})
the first level thickness is constant in time:
the vertical boundary condition is applied at the fixed surface $z = 0$ rather than
on the moving surface $z = \eta$.
There is a non-zero advective flux which is set for
all advection schemes as $\tau_w|_{k = 1/2} = T_{k = 1}$,
\ie\ the product of surface velocity (at $z = 0$) by the first level tracer value.
\item [non-linear free surface] (\np[=.false.]{ln_linssh}{ln\_linssh})
convergence/divergence in the first ocean level moves the free surface up/down.
There is no tracer advection through it so that
the advective fluxes through the surface are also zero.
\end{description}
In all cases, this boundary condition retains local conservation of tracer.
Global conservation is obtained in non-linear free surface case,
but \textit{not} in the linear free surface case.
Nevertheless, in the latter case,
it is achieved to a good approximation since the non-conservative term is
the product of the time derivative of the tracer and the free surface height,
two quantities that are not correlated
\citep{roullet.madec_JGR00, griffies.pacanowski.ea_MWR01, campin.adcroft.ea_OM04}.
The velocity field that appears in (\autoref{eq:TRA_adv} is
the centred (\textit{now}) \textit{effective} ocean velocity, \ie\ the \textit{eulerian} velocity
(see \autoref{chap:DYN}) plus the eddy induced velocity (\textit{eiv}) and/or
the mixed layer eddy induced velocity (\textit{eiv}) when those parameterisations are used
(see \autoref{chap:LDF}).
Several tracer advection scheme are proposed,
namely a $2^{nd}$ or $4^{th}$ order \textbf{CEN}tred schemes (CEN),
a $2^{nd}$ or $4^{th}$ order \textbf{F}lux \textbf{C}orrected \textbf{T}ransport scheme (FCT),
a \textbf{M}onotone \textbf{U}pstream \textbf{S}cheme for
\textbf{C}onservative \textbf{L}aws scheme (MUSCL),
a $3^{rd}$ \textbf{U}pstream \textbf{B}iased \textbf{S}cheme (UBS, also often called UP3),
and a \textbf{Q}uadratic \textbf{U}pstream \textbf{I}nterpolation for
\textbf{C}onvective \textbf{K}inematics with
\textbf{E}stimated \textbf{S}treaming \textbf{T}erms scheme (QUICKEST).
The choice is made in the \nam{tra_adv}{tra\_adv} namelist,
by setting to \forcode{.true.} one of the logicals \textit{ln\_traadv\_xxx}.
The corresponding code can be found in the \textit{traadv\_xxx.F90} module,
where \textit{xxx} is a 3 or 4 letter acronym corresponding to each scheme.
By default (\ie\ in the reference namelist, \textit{namelist\_ref}),
all the logicals are set to \forcode{.false.}.
If the user does not select an advection scheme in the configuration namelist
(\textit{namelist\_cfg}), the tracers will \textit{not} be advected!
Details of the advection schemes are given below.
The choosing an advection scheme is a complex matter which depends on the
model physics, model resolution, type of tracer, as well as the issue of numerical cost.
In particular, we note that
\begin{enumerate}
\item CEN and FCT schemes require an explicit diffusion operator while
the other schemes are diffusive enough so that they do not necessarily need additional diffusion;
\item CEN and UBS are not \textit{positive} schemes \footnote{negative values can appear in
an initially strictly positive tracer field which is advected},
implying that false extrema are permitted.
Their use is not recommended on passive tracers;
\item It is recommended that the same advection-diffusion scheme is used on
both active and passive tracers.
\end{enumerate}
Indeed, if a source or sink of a passive tracer depends on an active one,
the difference of treatment of active and passive tracers can create
very nice-looking frontal structures that are pure numerical artefacts.
Nevertheless, most of our users set a different treatment on passive and active tracers,
that's the reason why this possibility is offered.
We strongly suggest them to perform a sensitivity experiment using a same treatment to
assess the robustness of their results.
%% =================================================================================================
\subsection[CEN: Centred scheme (\forcode{ln_traadv_cen})]{CEN: Centred scheme (\protect\np{ln_traadv_cen}{ln\_traadv\_cen})}
\label{subsec:TRA_adv_cen}
% 2nd order centred scheme
The \textbf{CEN}tred advection scheme (CEN) is used when \np[=.true.]{ln_traadv_cen}{ln\_traadv\_cen}.
Its order ($2^{nd}$ or $4^{th}$) can be chosen independently on
horizontal (iso-level) and vertical direction by
setting \np{nn_cen_h}{nn\_cen\_h} and \np{nn_cen_v}{nn\_cen\_v} to $2$ or $4$.
CEN implementation can be found in the \mdl{traadv\_cen} module.
In the $2^{nd}$ order centred formulation (CEN2), the tracer at velocity points is evaluated as
the mean of the two neighbouring $T$-point values.
For example, in the $i$-direction :
\begin{equation}
\label{eq:TRA_adv_cen2}
\tau_u^{cen2} = \overline T ^{i + 1/2}
\end{equation}
CEN2 is non diffusive (\ie\ it conserves the tracer variance, $\tau^2$) but
dispersive (\ie\ it may create false extrema).
It is therefore notoriously noisy and must be used in conjunction with
an explicit diffusion operator to produce a sensible solution.
The associated time-stepping is performed using
a leapfrog scheme in conjunction with an Asselin time-filter,
so $T$ in (\autoref{eq:TRA_adv_cen2}) is the \textit{now} tracer value.
Note that using the CEN2, the overall tracer advection is of second order accuracy since
both (\autoref{eq:TRA_adv}) and (\autoref{eq:TRA_adv_cen2}) have this order of accuracy.
% 4nd order centred scheme
In the $4^{th}$ order formulation (CEN4),
tracer values are evaluated at u- and v-points as a $4^{th}$ order interpolation,
and thus depend on the four neighbouring $T$-points.
For example, in the $i$-direction:
\begin{equation}
\label{eq:TRA_adv_cen4}
\tau_u^{cen4} = \overline{T - \frac{1}{6} \, \delta_i \Big[ \delta_{i + 1/2}[T] \, \Big]}^{\,i + 1/2}
\end{equation}
In the vertical direction (\np[=4]{nn_cen_v}{nn\_cen\_v}),
a $4^{th}$ COMPACT interpolation has been prefered \citep{demange_phd14}.
In the COMPACT scheme, both the field and its derivative are interpolated,
which leads, after a matrix inversion, spectral characteristics similar to schemes of higher order
\citep{lele_JCP92}.
Strictly speaking, the CEN4 scheme is not a $4^{th}$ order advection scheme but
a $4^{th}$ order evaluation of advective fluxes,
since the divergence of advective fluxes \autoref{eq:TRA_adv} is kept at $2^{nd}$ order.
The expression \textit{$4^{th}$ order scheme} used in oceanographic literature is
usually associated with the scheme presented here.
Introducing a ``true'' $4^{th}$ order advection scheme is feasible but, for consistency reasons,
it requires changes in the discretisation of the tracer advection together with
changes in the continuity equation, and the momentum advection and pressure terms.
A direct consequence of the pseudo-fourth order nature of the scheme is that it is not non-diffusive,
\ie\ the global variance of a tracer is not preserved using CEN4.
Furthermore, it must be used in conjunction with an explicit diffusion operator to
produce a sensible solution.
As in CEN2 case, the time-stepping is performed using a leapfrog scheme in conjunction with
an Asselin time-filter, so $T$ in (\autoref{eq:TRA_adv_cen4}) is the \textit{now} tracer.
At a $T$-grid cell adjacent to a boundary (coastline, bottom and surface),
an additional hypothesis must be made to evaluate $\tau_u^{cen4}$.
This hypothesis usually reduces the order of the scheme.
Here we choose to set the gradient of $T$ across the boundary to zero.
Alternative conditions can be specified,
such as a reduction to a second order scheme for these near boundary grid points.
%% =================================================================================================
\subsection[FCT: Flux Corrected Transport scheme (\forcode{ln_traadv_fct})]{FCT: Flux Corrected Transport scheme (\protect\np{ln_traadv_fct}{ln\_traadv\_fct})}
\label{subsec:TRA_adv_tvd}
The \textbf{F}lux \textbf{C}orrected \textbf{T}ransport schemes (FCT) is used when
\np[=.true.]{ln_traadv_fct}{ln\_traadv\_fct}.
Its order ($2^{nd}$ or $4^{th}$) can be chosen independently on
horizontal (iso-level) and vertical direction by
setting \np{nn_fct_h}{nn\_fct\_h} and \np{nn_fct_v}{nn\_fct\_v} to $2$ or $4$.
FCT implementation can be found in the \mdl{traadv\_fct} module.
In FCT formulation, the tracer at velocity points is evaluated using
a combination of an upstream and a centred scheme.
For example, in the $i$-direction :
\begin{equation}
\label{eq:TRA_adv_fct}
\begin{split}
\tau_u^{ups} &=
\begin{cases}
T_{i + 1} & \text{if~} u_{i + 1/2} < 0 \\
T_i & \text{if~} u_{i + 1/2} \geq 0 \\
\end{cases} \\
\tau_u^{fct} &= \tau_u^{ups} + c_u \, \big( \tau_u^{cen} - \tau_u^{ups} \big)
\end{split}
\end{equation}
where $c_u$ is a flux limiter function taking values between 0 and 1.
The FCT order is the one of the centred scheme used
(\ie\ it depends on the setting of \np{nn_fct_h}{nn\_fct\_h} and \np{nn_fct_v}{nn\_fct\_v}).
There exist many ways to define $c_u$, each corresponding to a different FCT scheme.
The one chosen in \NEMO\ is described in \citet{zalesak_JCP79}.
$c_u$ only departs from $1$ when the advective term produces a local extremum in the tracer field.
The resulting scheme is quite expensive but \textit{positive}.
It can be used on both active and passive tracers.
A comparison of FCT-2 with MUSCL and a MPDATA scheme can be found in \citet{levy.estublier.ea_GRL01}.
For stability reasons (see \autoref{chap:TD}),
$\tau_u^{cen}$ is evaluated in (\autoref{eq:TRA_adv_fct}) using the \textit{now} tracer while
$\tau_u^{ups}$ is evaluated using the \textit{before} tracer.
In other words, the advective part of the scheme is time stepped with a leap-frog scheme while
a forward scheme is used for the diffusive part.
%% =================================================================================================
\subsection[MUSCL: Monotone Upstream Scheme for Conservative Laws (\forcode{ln_traadv_mus})]{MUSCL: Monotone Upstream Scheme for Conservative Laws (\protect\np{ln_traadv_mus}{ln\_traadv\_mus})}
\label{subsec:TRA_adv_mus}
The \textbf{M}onotone \textbf{U}pstream \textbf{S}cheme for \textbf{C}onservative \textbf{L}aws
(MUSCL) is used when \np[=.true.]{ln_traadv_mus}{ln\_traadv\_mus}.
MUSCL implementation can be found in the \mdl{traadv\_mus} module.
MUSCL has been first implemented in \NEMO\ by \citet{levy.estublier.ea_GRL01}.
In its formulation, the tracer at velocity points is evaluated assuming
a linear tracer variation between two $T$-points (\autoref{fig:TRA_adv_scheme}).
For example, in the $i$-direction :
\[
% \label{eq:TRA_adv_mus}
\tau_u^{mus} = \lt\{
\begin{split}
\tau_i &+ \frac{1}{2} \lt( 1 - \frac{u_{i + 1/2} \, \rdt}{e_{1u}} \rt)
\widetilde{\partial_i \tau} & \text{if~} u_{i + 1/2} \geqslant 0 \\
\tau_{i + 1/2} &+ \frac{1}{2} \lt( 1 + \frac{u_{i + 1/2} \, \rdt}{e_{1u}} \rt)
\widetilde{\partial_{i + 1/2} \tau} & \text{if~} u_{i + 1/2} < 0
\end{split}
\rt.
\]
where $\widetilde{\partial_i \tau}$ is the slope of the tracer on which
a limitation is imposed to ensure the \textit{positive} character of the scheme.
The time stepping is performed using a forward scheme,
that is the \textit{before} tracer field is used to evaluate $\tau_u^{mus}$.
For an ocean grid point adjacent to land and where the ocean velocity is directed toward land,
an upstream flux is used.
This choice ensure the \textit{positive} character of the scheme.
In addition, fluxes round a grid-point where a runoff is applied can optionally be computed using
upstream fluxes (\np[=.true.]{ln_mus_ups}{ln\_mus\_ups}).
%% =================================================================================================
\subsection[UBS a.k.a. UP3: Upstream-Biased Scheme (\forcode{ln_traadv_ubs})]{UBS a.k.a. UP3: Upstream-Biased Scheme (\protect\np{ln_traadv_ubs}{ln\_traadv\_ubs})}
\label{subsec:TRA_adv_ubs}
The \textbf{U}pstream-\textbf{B}iased \textbf{S}cheme (UBS) is used when
\np[=.true.]{ln_traadv_ubs}{ln\_traadv\_ubs}.
UBS implementation can be found in the \mdl{traadv\_mus} module.
The UBS scheme, often called UP3, is also known as the Cell Averaged QUICK scheme
(\textbf{Q}uadratic \textbf{U}pstream \textbf{I}nterpolation for
\textbf{C}onvective \textbf{K}inematics).
It is an upstream-biased third order scheme based on an upstream-biased parabolic interpolation.
For example, in the $i$-direction:
\begin{equation}
\label{eq:TRA_adv_ubs}
\tau_u^{ubs} = \overline T ^{i + 1/2} - \frac{1}{6}
\begin{cases}
\tau"_i & \text{if~} u_{i + 1/2} \geqslant 0 \\
\tau"_{i + 1} & \text{if~} u_{i + 1/2} < 0
\end{cases}
\quad \text{where~} \tau"_i = \delta_i \lt[ \delta_{i + 1/2} [\tau] \rt]
\end{equation}
This results in a dissipatively dominant (i.e. hyper-diffusive) truncation error
\citep{shchepetkin.mcwilliams_OM05}.
The overall performance of the advection scheme is similar to that reported in
\cite{farrow.stevens_JPO95}.
It is a relatively good compromise between accuracy and smoothness.
Nevertheless the scheme is not \textit{positive}, meaning that false extrema are permitted,
but the amplitude of such are significantly reduced over the centred second or fourth order method.
Therefore it is not recommended that it should be applied to
a passive tracer that requires positivity.
The intrinsic diffusion of UBS makes its use risky in the vertical direction where
the control of artificial diapycnal fluxes is of paramount importance
\citep{shchepetkin.mcwilliams_OM05, demange_phd14}.
Therefore the vertical flux is evaluated using either a $2^nd$ order FCT scheme or
a $4^th$ order COMPACT scheme (\np[=2 or 4]{nn_ubs_v}{nn\_ubs\_v}).
For stability reasons (see \autoref{chap:TD}),
the first term in \autoref{eq:TRA_adv_ubs} (which corresponds to a second order centred scheme)
is evaluated using the \textit{now} tracer (centred in time) while
the second term (which is the diffusive part of the scheme),
is evaluated using the \textit{before} tracer (forward in time).
This choice is discussed by \citet{webb.de-cuevas.ea_JAOT98} in
the context of the QUICK advection scheme.
UBS and QUICK schemes only differ by one coefficient.
Replacing 1/6 with 1/8 in \autoref{eq:TRA_adv_ubs} leads to the QUICK advection scheme
\citep{webb.de-cuevas.ea_JAOT98}.
This option is not available through a namelist parameter, since the 1/6 coefficient is hard coded.
Nevertheless it is quite easy to make the substitution in the \mdl{traadv\_ubs} module and
obtain a QUICK scheme.
Note that it is straightforward to rewrite \autoref{eq:TRA_adv_ubs} as follows:
\begin{gather}
\label{eq:TRA_adv_ubs2}
\tau_u^{ubs} = \tau_u^{cen4} + \frac{1}{12}
\begin{cases}
+ \tau"_i & \text{if} \ u_{i + 1/2} \geqslant 0 \\
- \tau"_{i + 1} & \text{if} \ u_{i + 1/2} < 0
\end{cases}
\intertext{or equivalently}
% \label{eq:TRA_adv_ubs2b}
u_{i + 1/2} \ \tau_u^{ubs} = u_{i + 1/2} \, \overline{T - \frac{1}{6} \, \delta_i \Big[ \delta_{i + 1/2}[T] \Big]}^{\,i + 1/2}
- \frac{1}{2} |u|_{i + 1/2} \, \frac{1}{6} \, \delta_{i + 1/2} [\tau"_i] \nonumber
\end{gather}
\autoref{eq:TRA_adv_ubs2} has several advantages.
Firstly, it clearly reveals that the UBS scheme is based on the fourth order scheme to which
an upstream-biased diffusion term is added.
Secondly,
this emphasises that the $4^{th}$ order part (as well as the $2^{nd}$ order part as stated above) has to be evaluated at the \textit{now} time step using \autoref{eq:TRA_adv_ubs}.
Thirdly, the diffusion term is in fact a biharmonic operator with
an eddy coefficient which is simply proportional to the velocity:
$A_u^{lm} = \frac{1}{12} \, {e_{1u}}^3 \, |u|$.
Note the current version of \NEMO\ uses the computationally more efficient formulation
\autoref{eq:TRA_adv_ubs}.
%% =================================================================================================
\subsection[QCK: QuiCKest scheme (\forcode{ln_traadv_qck})]{QCK: QuiCKest scheme (\protect\np{ln_traadv_qck}{ln\_traadv\_qck})}
\label{subsec:TRA_adv_qck}
The \textbf{Q}uadratic \textbf{U}pstream \textbf{I}nterpolation for
\textbf{C}onvective \textbf{K}inematics with \textbf{E}stimated \textbf{S}treaming \textbf{T}erms
(QUICKEST) scheme proposed by \citet{leonard_CMAME79} is used when
\np[=.true.]{ln_traadv_qck}{ln\_traadv\_qck}.
QUICKEST implementation can be found in the \mdl{traadv\_qck} module.
QUICKEST is the third order Godunov scheme which is associated with the ULTIMATE QUICKEST limiter
\citep{leonard_CMAME91}.
It has been implemented in \NEMO\ by G. Reffray (Mercator Ocean) and
can be found in the \mdl{traadv\_qck} module.
The resulting scheme is quite expensive but \textit{positive}.
It can be used on both active and passive tracers.
However, the intrinsic diffusion of QCK makes its use risky in the vertical direction where
the control of artificial diapycnal fluxes is of paramount importance.
Therefore the vertical flux is evaluated using the CEN2 scheme.
This no longer guarantees the positivity of the scheme.
The use of FCT in the vertical direction (as for the UBS case) should be implemented to
restore this property.
\cmtgm{Cross term are missing in the current implementation....}
%% =================================================================================================
\section[Tracer lateral diffusion (\textit{traldf.F90})]{Tracer lateral diffusion (\protect\mdl{traldf})}
\label{sec:TRA_ldf}
\begin{listing}
\nlst{namtra_ldf}
\caption{\forcode{&namtra_ldf}}
\label{lst:namtra_ldf}
\end{listing}
Options are defined through the \nam{tra_ldf}{tra\_ldf} namelist variables.
They are regrouped in four items, allowing to specify
\begin{enumerate*}[label=(\textit{\roman*})]
\item the type of operator used (none, laplacian, bilaplacian),
\item the direction along which the operator acts (iso-level, horizontal, iso-neutral),
\item some specific options related to the rotated operators (\ie\ non-iso-level operator), and
\item the specification of eddy diffusivity coefficient
(either constant or variable in space and time).
\end{enumerate*}
Item (iv) will be described in \autoref{chap:LDF}.
The direction along which the operators act is defined through the slope between
this direction and the iso-level surfaces.
The slope is computed in the \mdl{ldfslp} module and will also be described in \autoref{chap:LDF}.
The lateral diffusion of tracers is evaluated using a forward scheme,
\ie\ the tracers appearing in its expression are the \textit{before} tracers in time,
except for the pure vertical component that appears when a rotation tensor is used.
This latter component is solved implicitly together with the vertical diffusion term
(see \autoref{chap:TD}).
When \np[=.true.]{ln_traldf_msc}{ln\_traldf\_msc},
a Method of Stabilizing Correction is used in which the pure vertical component is split into
an explicit and an implicit part \citep{lemarie.debreu.ea_OM12}.
%% =================================================================================================
\subsection[Type of operator (\forcode{ln_traldf_}\{\forcode{OFF,lap,blp}\})]{Type of operator (\protect\np{ln_traldf_OFF}{ln\_traldf\_OFF}, \protect\np{ln_traldf_lap}{ln\_traldf\_lap}, or \protect\np{ln_traldf_blp}{ln\_traldf\_blp})}
\label{subsec:TRA_ldf_op}
Three operator options are proposed and, one and only one of them must be selected:
\begin{description}
\item [{\np[=.true.]{ln_traldf_OFF}{ln\_traldf\_OFF}}] no operator selected,
the lateral diffusive tendency will not be applied to the tracer equation.
This option can be used when the selected advection scheme is diffusive enough
(MUSCL scheme for example).
\item [{\np[=.true.]{ln_traldf_lap}{ln\_traldf\_lap}}] a laplacian operator is selected.
This harmonic operator takes the following expression:
$\mathcal{L}(T) = \nabla \cdot A_{ht} \; \nabla T $,
where the gradient operates along the selected direction (see \autoref{subsec:TRA_ldf_dir}),
and $A_{ht}$ is the eddy diffusivity coefficient expressed in $m^2/s$ (see \autoref{chap:LDF}).
\item [{\np[=.true.]{ln_traldf_blp}{ln\_traldf\_blp}}] a bilaplacian operator is selected.
This biharmonic operator takes the following expression:
$\mathcal{B} = - \mathcal{L}(\mathcal{L}(T)) = - \nabla \cdot b \nabla (\nabla \cdot b \nabla T)$
where the gradient operats along the selected direction,
and $b^2 = B_{ht}$ is the eddy diffusivity coefficient expressed in $m^4/s$
(see \autoref{chap:LDF}).
In the code, the bilaplacian operator is obtained by calling the laplacian twice.
\end{description}
Both laplacian and bilaplacian operators ensure the total tracer variance decrease.
Their primary role is to provide strong dissipation at the smallest scale supported by the grid while
minimizing the impact on the larger scale features.
The main difference between the two operators is the scale selectiveness.
The bilaplacian damping time (\ie\ its spin down time) scales like
$\lambda^{-4}$ for disturbances of wavelength $\lambda$
(so that short waves damped more rapidelly than long ones),
whereas the laplacian damping time scales only like $\lambda^{-2}$.
%% =================================================================================================
\subsection[Action direction (\forcode{ln_traldf_}\{\forcode{lev,hor,iso,triad}\})]{Direction of action (\protect\np{ln_traldf_lev}{ln\_traldf\_lev}, \protect\np{ln_traldf_hor}{ln\_traldf\_hor}, \protect\np{ln_traldf_iso}{ln\_traldf\_iso}, or \protect\np{ln_traldf_triad}{ln\_traldf\_triad})}
\label{subsec:TRA_ldf_dir}
The choice of a direction of action determines the form of operator used.
The operator is a simple (re-entrant) laplacian acting in the (\textbf{i},\textbf{j}) plane when
iso-level option is used (\np[=.true.]{ln_traldf_lev}{ln\_traldf\_lev}) or when
a horizontal (\ie\ geopotential) operator is demanded in \textit{z}-coordinate
(\np{ln_traldf_hor}{ln\_traldf\_hor} and \np[=.true.]{ln_zco}{ln\_zco}).
The associated code can be found in the \mdl{traldf\_lap\_blp} module.
The operator is a rotated (re-entrant) laplacian when
the direction along which it acts does not coincide with the iso-level surfaces,
that is when standard or triad iso-neutral option is used
(\np{ln_traldf_iso}{ln\_traldf\_iso} or \np{ln_traldf_triad}{ln\_traldf\_triad} = \forcode{.true.},
see \mdl{traldf\_iso} or \mdl{traldf\_triad} module, resp.), or
when a horizontal (\ie\ geopotential) operator is demanded in \textit{s}-coordinate
(\np{ln_traldf_hor}{ln\_traldf\_hor} and \np{ln_sco}{ln\_sco} = \forcode{.true.}) \footnote{
In this case, the standard iso-neutral operator will be automatically selected}.
In that case, a rotation is applied to the gradient(s) that appears in the operator so that
diffusive fluxes acts on the three spatial direction.
The resulting discret form of the three operators (one iso-level and two rotated one) is given in
the next two sub-sections.
%% =================================================================================================
\subsection[Iso-level (bi-)laplacian operator (\forcode{ln_traldf_iso})]{Iso-level (bi-)laplacian operator ( \protect\np{ln_traldf_iso}{ln\_traldf\_iso})}
\label{subsec:TRA_ldf_lev}
The laplacian diffusion operator acting along the model (\textit{i,j})-surfaces is given by:
\begin{equation}
\label{eq:TRA_ldf_lap}
D_t^{lT} = \frac{1}{b_t} \Bigg( \delta_{i} \lt[ A_u^{lT} \; \frac{e_{2u} \, e_{3u}}{e_{1u}} \; \delta_{i + 1/2} [T] \rt]
+ \delta_{j} \lt[ A_v^{lT} \; \frac{e_{1v} \, e_{3v}}{e_{2v}} \; \delta_{j + 1/2} [T] \rt] \Bigg)
\end{equation}
where $b_t = e_{1t} \, e_{2t} \, e_{3t}$ is the volume of $T$-cells and
where zero diffusive fluxes is assumed across solid boundaries,
first (and third in bilaplacian case) horizontal tracer derivative are masked.
It is implemented in the \rou{tra\_ldf\_lap} subroutine found in the \mdl{traldf\_lap\_blp} module.
The module also contains \rou{tra\_ldf\_blp},
the subroutine calling twice \rou{tra\_ldf\_lap} in order to
compute the iso-level bilaplacian operator.
It is a \textit{horizontal} operator (\ie acting along geopotential surfaces) in
the $z$-coordinate with or without partial steps,
but is simply an iso-level operator in the $s$-coordinate.
It is thus used when,
in addition to \np{ln_traldf_lap}{ln\_traldf\_lap} or \np[=.true.]{ln_traldf_blp}{ln\_traldf\_blp},
we have \np[=.true.]{ln_traldf_lev}{ln\_traldf\_lev} or
\np[=]{ln_traldf_hor}{ln\_traldf\_hor}\np[=.true.]{ln_zco}{ln\_zco}.
In both cases, it significantly contributes to diapycnal mixing.
It is therefore never recommended, even when using it in the bilaplacian case.
Note that in the partial step $z$-coordinate (\np[=.true.]{ln_zps}{ln\_zps}),
tracers in horizontally adjacent cells are located at different depths in the vicinity of the bottom.
In this case,
horizontal derivatives in (\autoref{eq:TRA_ldf_lap}) at the bottom level require a specific treatment.
They are calculated in the \mdl{zpshde} module, described in \autoref{sec:TRA_zpshde}.
%% =================================================================================================
\subsection{Standard and triad (bi-)laplacian operator}
\label{subsec:TRA_ldf_iso_triad}
%% =================================================================================================
\subsubsection[Standard rotated (bi-)laplacian operator (\textit{traldf\_iso.F90})]{Standard rotated (bi-)laplacian operator (\protect\mdl{traldf\_iso})}
\label{subsec:TRA_ldf_iso}
The general form of the second order lateral tracer subgrid scale physics (\autoref{eq:MB_zdf})
takes the following semi-discrete space form in $z$- and $s$-coordinates:
\begin{equation}
\label{eq:TRA_ldf_iso}
\begin{split}
D_T^{lT} = \frac{1}{b_t} \Bigg[ \quad &\delta_i A_u^{lT} \lt( \frac{e_{2u} e_{3u}}{e_{1u}} \, \delta_{i + 1/2} [T]
- e_{2u} r_{1u} \, \overline{\overline{\delta_{k + 1/2} [T]}}^{\,i + 1/2,k} \rt) \Bigg. \\
+ &\delta_j A_v^{lT} \lt( \frac{e_{1v} e_{3v}}{e_{2v}} \, \delta_{j + 1/2} [T]
- e_{1v} r_{2v} \, \overline{\overline{\delta_{k + 1/2} [T]}}^{\,j + 1/2,k} \rt) \\
+ &\delta_k A_w^{lT} \lt( \frac{e_{1w} e_{2w}}{e_{3w}} (r_{1w}^2 + r_{2w}^2) \, \delta_{k + 1/2} [T] \rt. \\
& \qquad \quad \Bigg. \lt. - e_{2w} r_{1w} \, \overline{\overline{\delta_{i + 1/2} [T]}}^{\,i,k + 1/2}
- e_{1w} r_{2w} \, \overline{\overline{\delta_{j + 1/2} [T]}}^{\,j,k + 1/2} \rt) \Bigg]
\end{split}
\end{equation}
where $b_t = e_{1t} \, e_{2t} \, e_{3t}$ is the volume of $T$-cells,
$r_1$ and $r_2$ are the slopes between the surface of computation ($z$- or $s$-surfaces) and
the surface along which the diffusion operator acts (\ie\ horizontal or iso-neutral surfaces).
It is thus used when, in addition to \np[=.true.]{ln_traldf_lap}{ln\_traldf\_lap},
we have \np[=.true.]{ln_traldf_iso}{ln\_traldf\_iso},
or both \np[=.true.]{ln_traldf_hor}{ln\_traldf\_hor} and \np[=.true.]{ln_zco}{ln\_zco}.
The way these slopes are evaluated is given in \autoref{sec:LDF_slp}.
At the surface, bottom and lateral boundaries,
the turbulent fluxes of heat and salt are set to zero using the mask technique
(see \autoref{sec:LBC_coast}).
The operator in \autoref{eq:TRA_ldf_iso} involves both lateral and vertical derivatives.
For numerical stability, the vertical second derivative must be solved using
the same implicit time scheme as that used in the vertical physics (see \autoref{sec:TRA_zdf}).
For computer efficiency reasons, this term is not computed in the \mdl{traldf\_iso} module,
but in the \mdl{trazdf} module where, if iso-neutral mixing is used,
the vertical mixing coefficient is simply increased by
$\frac{e_{1w} e_{2w}}{e_{3w}}(r_{1w}^2 + r_{2w}^2)$.
This formulation conserves the tracer but does not ensure the decrease of the tracer variance.
Nevertheless the treatment performed on the slopes (see \autoref{chap:LDF}) allows the model to
run safely without any additional background horizontal diffusion \citep{guilyardi.madec.ea_CD01}.
Note that in the partial step $z$-coordinate (\np[=.true.]{ln_zps}{ln\_zps}),
the horizontal derivatives at the bottom level in \autoref{eq:TRA_ldf_iso} require
a specific treatment.
They are calculated in module zpshde, described in \autoref{sec:TRA_zpshde}.
%% =================================================================================================
\subsubsection[Triad rotated (bi-)laplacian operator (\forcode{ln_traldf_triad})]{Triad rotated (bi-)laplacian operator (\protect\np{ln_traldf_triad}{ln\_traldf\_triad})}
\label{subsec:TRA_ldf_triad}
An alternative scheme developed by \cite{griffies.gnanadesikan.ea_JPO98} which
ensures tracer variance decreases is also available in \NEMO\
(\np[=.true.]{ln_traldf_triad}{ln\_traldf\_triad}).
A complete description of the algorithm is given in \autoref{apdx:TRIADS}.
The lateral fourth order bilaplacian operator on tracers is obtained by
applying (\autoref{eq:TRA_ldf_lap}) twice.
The operator requires an additional assumption on boundary conditions:
both first and third derivative terms normal to the coast are set to zero.
The lateral fourth order operator formulation on tracers is obtained by
applying (\autoref{eq:TRA_ldf_iso}) twice.
It requires an additional assumption on boundary conditions:
first and third derivative terms normal to the coast,
normal to the bottom and normal to the surface are set to zero.
%% =================================================================================================
\subsubsection{Option for the rotated operators}
\label{subsec:TRA_ldf_options}
\begin{labeling}{{\np{ln_botmix_triad}{ln\_botmix\_triad}}}
\item [{\np{ln_traldf_msc}{ln\_traldf\_msc} }] Method of Stabilizing Correction (both operators)
\item [{\np{rn_slpmax}{rn\_slpmax} }] Slope limit (both operators)
\item [{\np{ln_triad_iso}{ln\_triad\_iso} }] Pure horizontal mixing in ML (triad only)
\item [{\np{rn_sw_triad}{rn\_sw\_triad} }] \forcode{=1} switching triad;
\forcode{= 0} all 4 triads used (triad only)
\item [{\np{ln_botmix_triad}{ln\_botmix\_triad}}] Lateral mixing on bottom (triad only)
\end{labeling}
%% =================================================================================================
\section[Tracer vertical diffusion (\textit{trazdf.F90})]{Tracer vertical diffusion (\protect\mdl{trazdf})}
\label{sec:TRA_zdf}
Options are defined through the \nam{zdf}{zdf} namelist variables.
The formulation of the vertical subgrid scale tracer physics is the same for
all the vertical coordinates, and is based on a laplacian operator.
The vertical diffusion operator given by (\autoref{eq:MB_zdf}) takes
the following semi-discrete space form:
\[
% \label{eq:TRA_zdf}
D^{vT}_T = \frac{1}{e_{3t}} \, \delta_k \lt[ \, \frac{A^{vT}_w}{e_{3w}} \delta_{k + 1/2}[T] \, \rt] \quad
D^{vS}_T = \frac{1}{e_{3t}} \; \delta_k \lt[ \, \frac{A^{vS}_w}{e_{3w}} \delta_{k + 1/2}[S] \, \rt]
\]
where $A_w^{vT}$ and $A_w^{vS}$ are the vertical eddy diffusivity coefficients on
temperature and salinity, respectively.
Generally, $A_w^{vT} = A_w^{vS}$ except when double diffusive mixing is parameterised
(\ie\ \np[=.true.]{ln_zdfddm}{ln\_zdfddm},).
The way these coefficients are evaluated is given in \autoref{chap:ZDF} (ZDF).
Furthermore, when iso-neutral mixing is used,
both mixing coefficients are increased by $\frac{e_{1w} e_{2w}}{e_{3w} }({r_{1w}^2 + r_{2w}^2})$ to
account for the vertical second derivative of \autoref{eq:TRA_ldf_iso}.
At the surface and bottom boundaries, the turbulent fluxes of heat and salt must be specified.
At the surface they are prescribed from the surface forcing and added in a dedicated routine
(see \autoref{subsec:TRA_sbc}), whilst at the bottom they are set to zero for heat and salt unless
a geothermal flux forcing is prescribed as a bottom boundary condition (see \autoref{subsec:TRA_bbc}).
The large eddy coefficient found in the mixed layer together with high vertical resolution implies
that there would be too restrictive constraint on the time step if we use explicit time stepping.
Therefore an implicit time stepping is preferred for the vertical diffusion since
it overcomes the stability constraint.
%% =================================================================================================
\section{External forcing}
\label{sec:TRA_sbc_qsr_bbc}
%% =================================================================================================
\subsection[Surface boundary condition (\textit{trasbc.F90})]{Surface boundary condition (\protect\mdl{trasbc})}
\label{subsec:TRA_sbc}
The surface boundary condition for tracers is implemented in a separate module (\mdl{trasbc}) instead of
entering as a boundary condition on the vertical diffusion operator (as in the case of momentum).
This has been found to enhance readability of the code.
The two formulations are completely equivalent;
the forcing terms in trasbc are the surface fluxes divided by the thickness of the top model layer.
Due to interactions and mass exchange of water ($F_{mass}$) with other Earth system components
(\ie\ atmosphere, sea-ice, land),
the change in the heat and salt content of the surface layer of the ocean is due both to
the heat and salt fluxes crossing the sea surface (not linked with $F_{mass}$) and
to the heat and salt content of the mass exchange.
They are both included directly in $Q_{ns}$, the surface heat flux,
and $F_{salt}$, the surface salt flux (see \autoref{chap:SBC} for further details).
By doing this, the forcing formulation is the same for any tracer
(including temperature and salinity).
The surface module (\mdl{sbcmod}, see \autoref{chap:SBC}) provides the following forcing fields
(used on tracers):
\begin{labeling}{\textit{fwfisf}}
\item [$Q_{ns}$] The non-solar part of the net surface heat flux that crosses the sea surface
(\ie\ the difference between the total surface heat flux and
the fraction of the short wave flux that penetrates into the water column,
see \autoref{subsec:TRA_qsr})
plus the heat content associated with of the mass exchange with the atmosphere and lands.
\item [\textit{sfx}] The salt flux resulting from ice-ocean mass exchange
(freezing, melting, ridging...)
\item [\textit{emp}] The mass flux exchanged with the atmosphere (evaporation minus precipitation) and
possibly with the sea-ice and ice-shelves.
\item [\textit{rnf}] The mass flux associated with runoff
(see \autoref{sec:SBC_rnf} for further detail of how it acts on temperature and salinity tendencies)
\item [\textit{fwfisf}] The mass flux associated with ice shelf melt,
(see \autoref{sec:SBC_isf} for further details on how the ice shelf melt is computed and applied).
\end{labeling}
The surface boundary condition on temperature and salinity is applied as follows:
\begin{equation}
\label{eq:TRA_sbc}
F^T = \frac{1}{C_p} \frac{1}{\rho_o \lt. e_{3t} \rt|_{k = 1}} \overline{Q_{ns} }^t \qquad
F^S = \frac{1}{\rho_o \lt. e_{3t} \rt|_{k = 1}} \overline{\textit{sfx}}^t
\end{equation}
where $\overline x^t$ means that $x$ is averaged over two consecutive time steps
($t - \rdt / 2$ and $t + \rdt / 2$).
Such time averaging prevents the divergence of odd and even time step (see \autoref{chap:TD}).
In the linear free surface case (\np[=.true.]{ln_linssh}{ln\_linssh}),
an additional term has to be added on both temperature and salinity.
On temperature, this term remove the heat content associated with
mass exchange that has been added to $Q_{ns}$.
On salinity, this term mimics the concentration/dilution effect that would have resulted from
a change in the volume of the first level.
The resulting surface boundary condition is applied as follows:
\begin{equation}
\label{eq:TRA_sbc_lin}
F^T = \frac{1}{C_p} \frac{1}{\rho_o \lt. e_{3t} \rt|_{k = 1}}
\overline{(Q_{ns} - C_p \, \textit{emp} \lt. T \rt|_{k = 1})}^t \qquad
F^S = \frac{1}{\rho_o \lt. e_{3t} \rt|_{k = 1}}
\overline{(\textit{sfx} - \textit{emp} \lt. S \rt|_{k = 1})}^t
\end{equation}
Note that an exact conservation of heat and salt content is only achieved with
non-linear free surface.
In the linear free surface case, there is a small imbalance.
The imbalance is larger than the imbalance associated with the Asselin time filter
\citep{leclair.madec_OM09}.
This is the reason why the modified filter is not applied in the linear free surface case
(see \autoref{chap:TD}).
%% =================================================================================================
\subsection[Solar radiation penetration (\textit{traqsr.F90})]{Solar radiation penetration (\protect\mdl{traqsr})}
\label{subsec:TRA_qsr}
\begin{listing}
\nlst{namtra_qsr}
\caption{\forcode{&namtra_qsr}}
\label{lst:namtra_qsr}
\end{listing}
Options are defined through the \nam{tra_qsr}{tra\_qsr} namelist variables.
When the penetrative solar radiation option is used (\np[=.true.]{ln_traqsr}{ln\_traqsr}),
the solar radiation penetrates the top few tens of meters of the ocean.
If it is not used (\np[=.false.]{ln_traqsr}{ln\_traqsr}) all the heat flux is absorbed in
the first ocean level.
Thus, in the former case a term is added to the time evolution equation of temperature
\autoref{eq:MB_PE_tra_T} and the surface boundary condition is modified to
take into account only the non-penetrative part of the surface heat flux:
\begin{equation}
\label{eq:TRA_PE_qsr}
\begin{gathered}
\pd[T]{t} = \ldots + \frac{1}{\rho_o \, C_p \, e_3} \; \pd[I]{k} \\
Q_{ns} = Q_\text{Total} - Q_{sr}
\end{gathered}
\end{equation}
where $Q_{sr}$ is the penetrative part of the surface heat flux (\ie\ the shortwave radiation) and
$I$ is the downward irradiance ($\lt. I \rt|_{z = \eta} = Q_{sr}$).
The additional term in \autoref{eq:TRA_PE_qsr} is discretized as follows:
\begin{equation}
\label{eq:TRA_qsr}
\frac{1}{\rho_o \, C_p \, e_3} \, \pd[I]{k} \equiv \frac{1}{\rho_o \, C_p \, e_{3t}} \delta_k [I_w]
\end{equation}
The shortwave radiation, $Q_{sr}$, consists of energy distributed across a wide spectral range.
The ocean is strongly absorbing for wavelengths longer than 700 $nm$ and
these wavelengths contribute to heat the upper few tens of centimetres.
The fraction of $Q_{sr}$ that resides in these almost non-penetrative wavebands, $R$, is $\sim$ 58\%
(specified through namelist parameter \np{rn_abs}{rn\_abs}).
It is assumed to penetrate the ocean with a decreasing exponential profile,
with an e-folding depth scale, $\xi_0$, of a few tens of centimetres
(typically $\xi_0 = 0.35~m$ set as \np{rn_si0}{rn\_si0} in the \nam{tra_qsr}{tra\_qsr} namelist).
For shorter wavelengths (400-700 $nm$), the ocean is more transparent,
and solar energy propagates to larger depths where it contributes to local heating.
The way this second part of the solar energy penetrates into
the ocean depends on which formulation is chosen.
In the simple 2-waveband light penetration scheme (\np[=.true.]{ln_qsr_2bd}{ln\_qsr\_2bd})
a chlorophyll-independent monochromatic formulation is chosen for the shorter wavelengths,
leading to the following expression \citep{paulson.simpson_JPO77}:
\[
% \label{eq:TRA_qsr_iradiance}
I(z) = Q_{sr} \lt[ Re^{- z / \xi_0} + (1 - R) e^{- z / \xi_1} \rt]
\]
where $\xi_1$ is the second extinction length scale associated with the shorter wavelengths.
It is usually chosen to be 23~m by setting the \np{rn_si0}{rn\_si0} namelist parameter.
The set of default values ($\xi_0, \xi_1, R$) corresponds to
a Type I water in Jerlov's (1968) classification (oligotrophic waters).
Such assumptions have been shown to provide a very crude and simplistic representation of
observed light penetration profiles (\cite{morel_JGR88}, see also \autoref{fig:TRA_qsr_irradiance}).
Light absorption in the ocean depends on particle concentration and is spectrally selective.
\cite{morel_JGR88} has shown that an accurate representation of light penetration can be provided by
a 61 waveband formulation.
Unfortunately, such a model is very computationally expensive.
Thus, \cite{lengaigne.menkes.ea_CD07} have constructed a simplified version of
this formulation in which visible light is split into three wavebands:
blue (400-500 $nm$), green (500-600 $nm$) and red (600-700 $nm$).
For each wave-band, the chlorophyll-dependent attenuation coefficient is fitted to
the coefficients computed from the full spectral model of \cite{morel_JGR88}
(as modified by \cite{morel.maritorena_JGR01}), assuming the same power-law relationship.
As shown in \autoref{fig:TRA_qsr_irradiance}, this formulation,
called RGB (\textbf{R}ed-\textbf{G}reen-\textbf{B}lue),
reproduces quite closely the light penetration profiles predicted by the full spectal model,
but with much greater computational efficiency.
The 2-bands formulation does not reproduce the full model very well.
The RGB formulation is used when \np[=.true.]{ln_qsr_rgb}{ln\_qsr\_rgb}.
The RGB attenuation coefficients (\ie\ the inverses of the extinction length scales) are
tabulated over 61 nonuniform chlorophyll classes ranging from 0.01 to 10 $g.Chl/L$
(see the routine \rou{trc\_oce\_rgb} in \mdl{trc\_oce} module).
Four types of chlorophyll can be chosen in the RGB formulation:
\begin{description}
\item [{\np[=0]{nn_chldta}{nn\_chldta}}] a constant 0.05 $g.Chl/L$ value everywhere;
\item [{\np[=1]{nn_chldta}{nn\_chldta}}] an observed time varying chlorophyll deduced from
satellite surface ocean color measurement spread uniformly in the vertical direction;
\item [{\np[=2]{nn_chldta}{nn\_chldta}}] same as previous case except that
a vertical profile of chlorophyl is used.
Following \cite{morel.berthon_LO89},
the profile is computed from the local surface chlorophyll value;
\item [{\np[=.true.]{ln_qsr_bio}{ln\_qsr\_bio}}] simulated time varying chlorophyll by
\TOP\ biogeochemical model.
In this case, the RGB formulation is used to calculate both
the phytoplankton light limitation in \PISCES\ and the oceanic heating rate.
\end{description}
The trend in \autoref{eq:TRA_qsr} associated with the penetration of the solar radiation is added to
the temperature trend, and the surface heat flux is modified in routine \mdl{traqsr}.
When the $z$-coordinate is preferred to the $s$-coordinate,
the depth of $w-$levels does not significantly vary with location.
The level at which the light has been totally absorbed
(\ie\ it is less than the computer precision) is computed once,
and the trend associated with the penetration of the solar radiation is only added down to that level.
Finally, note that when the ocean is shallow ($<$ 200~m),
part of the solar radiation can reach the ocean floor.
In this case, we have chosen that all remaining radiation is absorbed in the last ocean level
(\ie\ $I$ is masked).
\begin{figure}
\centering
\includegraphics[width=0.66\textwidth]{TRA_Irradiance}
\caption[Penetration profile of the downward solar irradiance calculated by four models]{
Penetration profile of the downward solar irradiance calculated by four models.
Two waveband chlorophyll-independent formulation (blue),
a chlorophyll-dependent monochromatic formulation (green),
4 waveband RGB formulation (red),
61 waveband Morel (1988) formulation (black) for a chlorophyll concentration of
(a) Chl=0.05 $mg/m^3$ and (b) Chl=0.5 $mg/m^3$.
From \citet{lengaigne.menkes.ea_CD07}.}
\label{fig:TRA_qsr_irradiance}
\end{figure}
%% =================================================================================================
\subsection[Bottom boundary condition (\textit{trabbc.F90}) - \forcode{ln_trabbc})]{Bottom boundary condition (\protect\mdl{trabbc} - \protect\np{ln_trabbc}{ln\_trabbc})}
\label{subsec:TRA_bbc}
\begin{listing}
\nlst{nambbc}
\caption{\forcode{&nambbc}}
\label{lst:nambbc}
\end{listing}
\begin{figure}
\centering
\includegraphics[width=0.66\textwidth]{TRA_geoth}
\caption[Geothermal heat flux]{
Geothermal Heat flux (in $mW.m^{-2}$) used by \cite{emile-geay.madec_OS09}.
It is inferred from the age of the sea floor and the formulae of \citet{stein.stein_N92}.}
\label{fig:TRA_geothermal}
\end{figure}
Usually it is assumed that there is no exchange of heat or salt through the ocean bottom,
\ie\ a no flux boundary condition is applied on active tracers at the bottom.
This is the default option in \NEMO, and it is implemented using the masking technique.
However, there is a non-zero heat flux across the seafloor that
is associated with solid earth cooling.
This flux is weak compared to surface fluxes
(a mean global value of $\sim 0.1 \, W/m^2$ \citep{stein.stein_N92}),
but it warms systematically the ocean and acts on the densest water masses.
Taking this flux into account in a global ocean model increases the deepest overturning cell
(\ie\ the one associated with the Antarctic Bottom Water) by
a few Sverdrups \citep{emile-geay.madec_OS09}.
Options are defined through the \nam{bbc}{bbc} namelist variables.
The presence of geothermal heating is controlled by
setting the namelist parameter \np{ln_trabbc}{ln\_trabbc} to true.
Then, when \np{nn_geoflx}{nn\_geoflx} is set to 1, a constant geothermal heating is introduced whose
value is given by the \np{rn_geoflx_cst}{rn\_geoflx\_cst}, which is also a namelist parameter.
When \np{nn_geoflx}{nn\_geoflx} is set to 2,
a spatially varying geothermal heat flux is introduced which is provided in
the \textit{geothermal\_heating.nc} NetCDF file
(\autoref{fig:TRA_geothermal}) \citep{emile-geay.madec_OS09}.
%% =================================================================================================
\section[Bottom boundary layer (\textit{trabbl.F90} - \forcode{ln_trabbl})]{Bottom boundary layer (\protect\mdl{trabbl} - \protect\np{ln_trabbl}{ln\_trabbl})}
\label{sec:TRA_bbl}
\begin{listing}
\nlst{nambbl}
\caption{\forcode{&nambbl}}
\label{lst:nambbl}
\end{listing}
Options are defined through the \nam{bbl}{bbl} namelist variables.
In a $z$-coordinate configuration, the bottom topography is represented by a series of discrete steps.
This is not adequate to represent gravity driven downslope flows.
Such flows arise either downstream of sills such as the Strait of Gibraltar or Denmark Strait,
where dense water formed in marginal seas flows into a basin filled with less dense water,
or along the continental slope when dense water masses are formed on a continental shelf.
The amount of entrainment that occurs in these gravity plumes is critical in
determining the density and volume flux of the densest waters of the ocean,
such as Antarctic Bottom Water, or North Atlantic Deep Water.
$z$-coordinate models tend to overestimate the entrainment,
because the gravity flow is mixed vertically by convection as
it goes ''downstairs'' following the step topography,
sometimes over a thickness much larger than the thickness of the observed gravity plume.
A similar problem occurs in the $s$-coordinate when
the thickness of the bottom level varies rapidly downstream of a sill
\citep{willebrand.barnier.ea_PO01}, and the thickness of the plume is not resolved.
The idea of the bottom boundary layer (BBL) parameterisation, first introduced by
\citet{beckmann.doscher_JPO97},
is to allow a direct communication between two adjacent bottom cells at different levels,
whenever the densest water is located above the less dense water.
The communication can be by a diffusive flux (diffusive BBL),
an advective flux (advective BBL), or both.
In the current implementation of the BBL, only the tracers are modified, not the velocities.
Furthermore, it only connects ocean bottom cells,
and therefore does not include all the improvements introduced by \citet{campin.goosse_T99}.
%% =================================================================================================
\subsection[Diffusive bottom boundary layer (\forcode{nn_bbl_ldf=1})]{Diffusive bottom boundary layer (\protect\np[=1]{nn_bbl_ldf}{nn\_bbl\_ldf})}
\label{subsec:TRA_bbl_diff}
When applying sigma-diffusion
(\np[=.true.]{ln_trabbl}{ln\_trabbl} and \np{nn_bbl_ldf}{nn\_bbl\_ldf} set to 1),
the diffusive flux between two adjacent cells at the ocean floor is given by
\[
% \label{eq:TRA_bbl_diff}
\vect F_\sigma = A_l^\sigma \, \nabla_\sigma T
\]
with $\nabla_\sigma$ the lateral gradient operator taken between bottom cells,
and $A_l^\sigma$ the lateral diffusivity in the BBL.
Following \citet{beckmann.doscher_JPO97}, the latter is prescribed with a spatial dependence,
\ie\ in the conditional form
\begin{equation}
\label{eq:TRA_bbl_coef}
A_l^\sigma (i,j,t) =
\begin{cases}
A_{bbl} & \text{if~} \nabla_\sigma \rho \cdot \nabla H < 0 \\
0 & \text{otherwise}
\end{cases}
\end{equation}
where $A_{bbl}$ is the BBL diffusivity coefficient,
given by the namelist parameter \np{rn_ahtbbl}{rn\_ahtbbl} and
usually set to a value much larger than the one used for lateral mixing in the open ocean.
The constraint in \autoref{eq:TRA_bbl_coef} implies that sigma-like diffusion only occurs when
the density above the sea floor, at the top of the slope, is larger than in the deeper ocean
(see green arrow in \autoref{fig:TRA_bbl}).
In practice, this constraint is applied separately in the two horizontal directions,
and the density gradient in \autoref{eq:TRA_bbl_coef} is evaluated with the log gradient formulation: