Skip to content

Commit 3a724c5

Browse files
Stephen PennyStephen Penny
authored andcommitted
reset parameters
1 parent 20f7c14 commit 3a724c5

2 files changed

Lines changed: 22 additions & 10 deletions

File tree

README.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,28 @@
11
# DA_Tutorial
22

3-
This is a 'hands-on' tutorial for the RIKEN International School on Data Assimilation (RISDA2018).
4-
http://www.data-assimilation.riken.jp/risda2018/
3+
This is a 'hands-on' tutorial for the RIKEN International School on Data Assimilation (RISDA2018).
4+
http://www.data-assimilation.riken.jp/risda2018/
55

6-
This software package is based on routines developed for the publication:
6+
This software package is based on routines developed for the publication:
77

8-
Mathematical foundations of hybrid data assimilation from a synchronization perspective
9-
Penny, S.G., Chaos 27, 126801 (2017); https://doi.org/10.1063/1.5001819
8+
Mathematical foundations of hybrid data assimilation from a synchronization perspective
9+
Penny, S.G., Chaos 27, 126801 (2017); https://doi.org/10.1063/1.5001819
1010

11-
http://aip.scitation.org/doi/full/10.1063/1.5001819
11+
http://aip.scitation.org/doi/full/10.1063/1.5001819
1212

13-
Instructions:
14-
This package uses the anaconda python distribution and for plotting uses plotly.
13+
For any research conducted based on this software package, please cite this publication.
14+
15+
Instructions:
16+
This package uses the anaconda python distribution and for plotting uses plotly.
17+
18+
Follow the guide tutorials:
19+
tutorial_1.py
20+
tutorial_2.py
21+
...
22+
23+
Use the bash shell scripts to run a summary of each tutorial:
24+
sh runall_tutorial_1.sh
25+
sh runall_tutorial_2.sh <method1> <method2>
26+
...
1527

1628

analysis_init.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@
8585
I = np.identity(xdim)
8686

8787
# Set background error covariance
88-
sigma_b = 1.0 #1.0
88+
sigma_b = 1.0
8989
B = I * sigma_b**2
9090

9191
# Set observation error covariance
92-
sigma_r = 0.1
92+
sigma_r = 1.0
9393
R = I * sigma_r**2
9494

9595
# Set the linear observation operator matrix as the identity by default

0 commit comments

Comments
 (0)