-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.yaml
40 lines (38 loc) · 1.07 KB
/
parameters.yaml
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
# Numerical parameters
numerical:
# Inversion grid resolution in both x and y
grid_resolution: 32
# Number of vertical layers
vertical_layers: 4
# 1.0 / grid_resolution
time_step: 0.03125
# Total duration of the simulation
duration: 25.0
# Interval of saving grid data
save_interval: 0.25
# Maximum pressure difference on convergence
max_pressure_difference: 0.000000001
# Strip width
strip_width: 0.4
# Value of A2 in displacement equation
a2: 0.02
# Value of A3 in displacement equation
a3: -0.01
# Physical parameters
physical:
# Constant Coriolis frequency = 4 * Pi
coriolis_frequency: 12.566370614359173
# Short-scale gravity wave speed = 2 * Pi
gravity_wave_speed: 6.283185307179586
# Mean fluid depth (conserved by mass conservation)
mean_fluid_depth: 0.4
# This times f is the damping rate on wavenumber grid_resolution/2
damping: 10.0
# Viscosity constant
nnu: 3.0
# Environment parameters
environment:
# Number of threads in threadpool
threads: 0
# Directory to write output to during execution
output_directory: "./out"