In planetary boundary layers, it might be of interest to compute diagonal horizontal tracer diffusion fluxes with the same diffusivity as the vertical tracer diffusion flux. In this case, the parameterized turbulence is represented by isotropic horizontal/vertical diffusion. The physical picture is of large eddies moving parcels both horizontally and vertically in the mixed layer. If one is using some mixed layer scheme such as option kppvmix (Section 32.2.3), then the vertical diffusivities can sometimes reach up 103 - 105 cm2/sec, especially in mixed layers associated with deep convection. In these regions, the use of equal horizontal and vertical diffusivities can provide a nontrivial amount of horizontal fluxes in addition to the vertical fluxes. Option isotropic_mixed implements this idea in MOM.
For use in models with isoneutral mixing, the above ideas are
implemenated inside the small angle redi diffusion scheme (the default
option for redi_diffusion). In this case, the continuum
horizontal diffusion fluxes take the form
| -Fx | = | (35.79) | |
| -Fy | = | (35.80) |
In the code, the vertical diffusivity
is the sum
AD +
K33, as this coefficient is that which is used for the implicit
solution of the vertical diffusion equation. Using a mixed
continuous/numerical notation, option isotropic_mixed uses the
algorithm
| -Fx | = | (35.81) | |
| -Fy | = | (35.82) |
There are no namelist parameters to set with option isotropic_mixed. Turning it on, however, requires the use of
option fourth_order_memory_window. The reason is that the
vertical diffusivity
is computed on the bottom
face of the tracer cell. To add it to the diagonal piece of the
horizontal tracer fluxes, however, it must be averaged using a four
point horizontal and vertical average. Such an average in the y-zplane requires option fourth_order_memory_window.
Option fourth_order_memory_window is automatically enabled
when option isotropic_mixed is used. Note that option isotropic_mixed can be run in parallel to setting ahsteep to some
nonzero value (see discussion at beginning of Section
34.1.9).