File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
9
9
# DOMAIN RESOLUTION AND RATIO
10
10
nx:: Int = 100 # number of grid cells in x-direction
11
- Lx:: Int = 4000e3 # length of the domain in x-direction [m]
12
- L_ratio:: Int = 2 # Domain aspect ratio of Lx/Ly
11
+ Lx:: Float64 = 4000e3 # length of the domain in x-direction [m]
12
+ L_ratio:: Float64 = 2 # Domain aspect ratio of Lx/Ly
13
13
14
14
# PHYSICAL CONSTANTS
15
15
g:: Real = 0.1 # gravitational acceleration [m/s]
20
20
R:: Real = 6.371e6 # Earth's radius [m]
21
21
22
22
# SCALE
23
- scale:: Int = 2 ^ 6 # multiplicative scale for the momentum equations u,v
23
+ scale:: Float64 = 2 ^ 6 # multiplicative scale for the momentum equations u,v
24
24
scale_sst:: Real = 2 ^ 15 # multiplicative scale for sst
25
25
26
26
# WIND FORCING OPTIONS
Original file line number Diff line number Diff line change 16
16
ω:: Real # Earth's angular frequency [s^-1]
17
17
ϕ:: Real # central latitue of the domain (for coriolis) [°]
18
18
R:: Real # Earth's radius [m]
19
- scale:: Int # multiplicative scale for momentum equations [1]
19
+ scale:: Float64 # multiplicative scale for momentum equations [1]
20
20
21
21
# DOMAIN SIZES
22
22
Δ:: Int = Lx / nx # grid spacing
You can’t perform that action at this time.
0 commit comments