Skip to content

Commit b4f09e2

Browse files
committed
default parameteres typos
1 parent dd5a4d8 commit b4f09e2

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

experiments/forecast_master.jl

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using Juls
2+
3+
RunJuls(Float32,
4+
output=true,
5+
Ndays=500.0,
6+
outpath="/network/aopp/chaos/pred/kloewer/julsdata/forecast",
7+
output_vars=["u","v","η"],
8+
α=1.,
9+
diffusion="Constant")
10+
11+
RunJuls(Float32,
12+
output=true,
13+
Ndays=50*365,
14+
outpath="/network/aopp/chaos/pred/kloewer/julsdata/forecast",
15+
output_vars=["u","v","η"],
16+
initial_cond="ncfile",
17+
init_run_id=0,
18+
α=1.,
19+
diffusion="Constant")

src/DefaultParameters.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
# BOUNDARY CONDITION OPTIONS
5252
bc::String="periodic" # "periodic" or anything else for nonperiodic
53-
α::Real=2. # lateral boundary condition parameter
53+
α::Real=1. # lateral boundary condition parameter
5454
# 0 free-slip, 0<α<2 partial-slip, 2 no-slip
5555

5656
# MOMENTUM ADVECTION OPTIONS
@@ -63,7 +63,7 @@
6363
τD::Real=300. # bottom drag coefficient [days] for linear
6464

6565
# DIFFUSION OPTIONS
66-
diffusion::String="Smagorinsky" # "Smagorinsky" or "Constant", biharmonic in both cases
66+
diffusion::String="constant" # "Smagorinsky" or "constant", biharmonic in both cases
6767
νB::Real=500.0 # [m^2/s] scaling constant for constant biharmonic diffusion
6868
cSmag::Real=0.15 # Smagorinsky coefficient [dimensionless]
6969

0 commit comments

Comments
 (0)