-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyserr_params.py
45 lines (39 loc) · 979 Bytes
/
syserr_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
44
45
#!/usr/bin/env python
################################################################################
# NATURE RUN SETTING
################################################################################
import numpy as np
"""
Setting Experiment details
"""
exp_name = "nature"
nens = 3 #nens
"""
Setting Parameters
"""
par = [10.0,28.0,8.0/3.0] # values of sigma, rho and beta
f = 10
theta = 3*np.pi/4
F0 = [f*np.cos(theta), f*np.sin(theta),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 = False
"""
Setting DA parameters
"""
do_DA = False
taw = 1 # Assimilation window
"""