-
Notifications
You must be signed in to change notification settings - Fork 0
/
parerr_params.py
43 lines (36 loc) · 902 Bytes
/
parerr_params.py
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
41
42
43
#!/usr/bin/env python
################################################################################
# EXPERIMENT PARERR SETTING
################################################################################
"""
Setting Experiment details
"""
exp_name = "parerr"
nens = 3 #nens
"""
Setting Parameters
"""
par = [10.0, 29.4,8.0/3.0] # values of sigma, rho and beta
F0 = [0,0,0]
"""
Timesteps and max timestep information
"""
dt = 0.01 # timestep
t_spinup = 0 #100000 # timesteps for spinning up
tmax = 100 # max time in Model Time units
timesteps = int(tmax/dt) # max timesteps 1 time unit = 5 days
taw = 1
"""
Path to Initial Value
"""
IC_file = "data/IC/IC.npy"
"""
Make observations
"""
makeobs = True
"""
Setting DA parameters
"""
do_DA = False
taw = 1 # Assimilation window
"""