Skip to content

Commit bed0bbc

Browse files
author
Abhinab Bhattacharjee
committed
Merge branch 'abhinab' of https://github.com/ComputationalScienceLaboratory/DATools into abhinab
2 parents fef6e2b + cb9692a commit bed0bbc

15 files changed

+13
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
*.mat
22
*.asv
33
*.png
44
*.fig
-2.25 MB
Binary file not shown.
-2.12 MB
Binary file not shown.
-2.23 MB
Binary file not shown.
-213 KB
Binary file not shown.
-2.26 MB
Binary file not shown.
-945 KB
Binary file not shown.
-1.26 MB
Binary file not shown.
-2.34 MB
Binary file not shown.
-258 KB
Binary file not shown.
-2.34 MB
Binary file not shown.
-2.4 MB
Binary file not shown.
-83.7 MB
Binary file not shown.
-83.7 MB
Binary file not shown.

src/+datools/+examples/+sandu/runexperiments.m

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ function runexperiments(user)
4343
filtertype = 'Particle';
4444
case 'RHF'
4545
filtertype = 'Ensemble';
46+
case 'SIS_EnKF'
47+
filtertype = 'Particle';
4648
end
4749
fprintf('Filtername = %s, Observation Variance = %.2f, Runs = %d, spinups = %d\n', ...
4850
filtername, variance, steps, spinup);
@@ -239,6 +241,16 @@ function runexperiments(user)
239241
'Parallel', false, ...
240242
'RankHistogram', histvar, ...
241243
'Rejuvenation', rejuvenation);
244+
case 'SIS_EnKF'
245+
filter = datools.statistical.ensemble.(filtername)(model, ...
246+
'Observation', observation, ...
247+
'NumEnsemble', ensN, ...
248+
'ModelError', modelerror, ...
249+
'EnsembleGenerator', ensembleGenerator, ...
250+
'Inflation', inflation, ...
251+
'Parallel', false, ...
252+
'RankHistogram', histvar,...
253+
'Rejuvenation', rejuvenation);
242254
case 'RHF'
243255
filter = datools.statistical.ensemble.(filtername)(model, ...
244256
'Observation', observation, ...

0 commit comments

Comments
 (0)