-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc/examples/simul_ns3d_forced_isotropic.py and co
- Loading branch information
Showing
4 changed files
with
74 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import os | ||
|
||
from fluiddyn.util.mpi import printby0 | ||
|
||
from fluidsim.solvers.ns3d.solver import Simul | ||
|
||
if "FLUIDSIM_TESTS_EXAMPLES" in os.environ: | ||
t_end = 1.0 | ||
nx = 24 | ||
else: | ||
t_end = 10.0 | ||
nx = 96 | ||
|
||
params = Simul.create_default_params() | ||
|
||
params.output.sub_directory = "examples" | ||
|
||
ny = nz = nx | ||
Lx = 3 | ||
params.oper.nx = nx | ||
params.oper.ny = ny | ||
params.oper.nz = nz | ||
params.oper.Lx = Lx | ||
params.oper.Ly = Ly = Lx / nx * ny | ||
params.oper.Lz = Lz = Lx / nx * nz | ||
|
||
params.time_stepping.USE_T_END = True | ||
params.time_stepping.t_end = t_end | ||
|
||
n = 8 | ||
C = 1.0 | ||
dx = Lx / nx | ||
B = 1 | ||
D = 1 | ||
eps = 1e-2 * B ** (3 / 2) * D ** (1 / 2) | ||
params.nu_8 = (dx / C) ** ((3 * n - 2) / 3) * eps ** (1 / 3) | ||
|
||
printby0(f"nu_8 = {params.nu_8:.3e}") | ||
|
||
params.init_fields.type = "noise" | ||
params.init_fields.noise.length = 1.0 | ||
params.init_fields.noise.velo_max = 0.1 | ||
|
||
params.forcing.enable = True | ||
params.forcing.type = "tcrandom" | ||
params.forcing.normalized.constant_rate_of = None | ||
params.forcing.nkmax_forcing = 3 | ||
params.forcing.nkmax_forcing = 4 | ||
# solenoidal field (toroidal + poloidal) | ||
params.forcing.key_forced = ["vt_fft", "vp_fft"] | ||
# forcing rate per key forced (so that energy forcing rate is 1) | ||
params.forcing.forcing_rate = 0.5 | ||
|
||
params.output.periods_print.print_stdout = 1e-1 | ||
|
||
params.output.periods_save.phys_fields = 0.5 | ||
params.output.periods_save.spatial_means = 0.1 | ||
params.output.periods_save.spectra = 0.1 | ||
params.output.periods_save.spect_energy_budg = 0.1 | ||
|
||
params.output.spectra.kzkh_periodicity = 1 | ||
|
||
sim = Simul(params) | ||
sim.time_stepping.start() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters