11"""
22 const DOMAIN_EXTENT
3- Domain extent on which the two layer simulations are run.
3+ Domain extent on which my two layer simulations are run.
44"""
5- const DOMAIN_EXTENT = (Lx = 0.1 , Ly = 0.1 , Lz = 1 )
5+ const DOMAIN_EXTENT = (Lx = 0.1 , Ly = 0.1 , Lz = - 1 )
66"""
77 const HIGH_RESOLUTION
88Resolution at which to run the DNS sufficient to resolve turbulence on all scales, i.e.
@@ -15,17 +15,25 @@ const HIGH_RESOLUTION = (Nx = 124, Ny = 124, Nz = 1400)
1515Diffusivity estimates for the Southern Ocean.
1616"""
1717const SO_DIFFUSIVITIES = (ν = 1e-6 , κ = (S = 1e-9 , T = 1e-7 ))
18+ """
19+ const EQUAL_ST_DIFFUSIVITIES
20+ Equal salinity and temperature diffusivities. The salinity diffusivity is increased to match
21+ temperature diffusivity. The viscosity and temperature diffusivities are still close to
22+ physical values.
23+ """
24+ const EQUAL_ST_DIFFUSIVITIES = (ν = 1e-6 , κ = (S = 1e-7 , T = 1e-7 ))
1825"""
1926 const REFERENCE_DENSITY
2027Reference density for use in the two layer DNS. Calculated using the salinity `S₀ˡ` and
2128temperature `T₀ˡ` of the lower layer .
2229"""
23- const REFERENCE_DENSITY = gsw_rho (34.7 , - 1 .5 , 0 )
30+ const REFERENCE_DENSITY = gsw_rho (34.7 , 0 .5 , 0 )
2431"""
2532 const INTERFACE_LOCATION
26- Location of the interface (in the vertical) between the upper and lower layers.
33+ Location of the interface (in the vertical) between the upper and lower layers. This
34+ default setting is in the middle of the [`DOMAIN_EXTENT`](@ref).
2735"""
28- const INTERFACE_LOCATION = - 0.375
36+ const INTERFACE_LOCATION = - 0.5
2937"""
3038 const SIMULATION_PATH
3139Path to where the simulations are saved by default. If the folder does not exist it will be
0 commit comments