Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DART-WRF
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DataAssimilation
DART-WRF
Commits
ca11b58a
Commit
ca11b58a
authored
2 years ago
by
lkugler
Browse files
Options
Downloads
Patches
Plain Diff
inflation option changed
parent
5868fa84
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/cfg.py
+4
-3
4 additions, 3 deletions
config/cfg.py
dartwrf/assim_synth_obs.py
+2
-1
2 additions, 1 deletion
dartwrf/assim_synth_obs.py
templates/input.nml
+1
-1
1 addition, 1 deletion
templates/input.nml
with
7 additions
and
5 deletions
config/cfg.py
+
4
−
3
View file @
ca11b58a
...
...
@@ -3,12 +3,13 @@ from config import clusters # from . = problem in archivedir
cluster
=
clusters
.
jet
# change cluster configuration here
exp
=
utils
.
ExperimentConfiguration
()
exp
.
expname
=
"
test_srvx1
"
#"exp_v1.22_P3_wbub7_WV62
_obs10_loc20_
oe1
"
exp
.
expname
=
"
exp_v1.22_P2_rr_VIS+WV73
_obs10_loc20_
inf2
"
exp
.
model_dx
=
2000
exp
.
n_ens
=
40
exp
.
filter_kind
=
1
exp
.
inflation
=
True
exp
.
prior_inflation
=
2
exp
.
post_inflation
=
0
exp
.
sec
=
True
exp
.
reject_smallFGD
=
False
exp
.
cov_loc_vert_km_horiz_km
=
(
3
,
20
)
...
...
@@ -95,7 +96,7 @@ psfc = dict(plotname='SYNOP Pressure', plotunits='[Pa]',
cov_loc_radius_km
=
32
)
exp
.
observations
=
[
t
]
exp
.
observations
=
[
vis
,
wv73
]
exp
.
update_vars
=
[
'
U
'
,
'
V
'
,
'
W
'
,
'
THM
'
,
'
PH
'
,
'
MU
'
,
'
QVAPOR
'
,
'
QCLOUD
'
,
'
QICE
'
,
'
PSFC
'
]
#exp.update_vars = ['U', 'V', 'W', 'T', 'PH', 'MU', 'QVAPOR', 'PSFC']
...
...
This diff is collapsed.
Click to expand it.
dartwrf/assim_synth_obs.py
+
2
−
1
View file @
ca11b58a
...
...
@@ -42,7 +42,8 @@ def set_DART_nml(just_prior_values=False):
"
<adjust_obs_impact>
"
:
'
.true.
'
if
exp
.
adjust_obs_impact
else
'
.false.
'
,
"
<filter_kind>
"
:
str
(
int
(
exp
.
filter_kind
)),
"
<sampling_error_correction>
"
:
'
.true.
'
if
exp
.
sec
else
'
.false.
'
,
"
<post_inflation>
"
:
'
4
'
if
exp
.
inflation
else
'
0
'
,
"
<prior_inflation>
"
:
str
(
exp
.
prior_inflation
),
"
<post_inflation>
"
:
str
(
exp
.
post_inflation
),
"
<n_ens>
"
:
str
(
int
(
exp
.
n_ens
)),
"
<cov_loc_radian>
"
:
"
0.00000001
"
,
# dummy value, used for types not mentioned below
"
<list_obstypes>
"
:
"'"
+
"'
,
'"
.
join
(
list_obstypes
)
+
"'"
,
...
...
This diff is collapsed.
Click to expand it.
templates/input.nml
+
1
−
1
View file @
ca11b58a
...
...
@@ -57,7 +57,7 @@
output_sd = .true.
write_all_stages_at_end = .false.
inf_flavor =
0
, <post_inflation>,
inf_flavor =
<prior_inflation>
, <post_inflation>,
inf_initial_from_restart = .true., .false.,
inf_sd_initial_from_restart = .true., .false.,
inf_initial = 1.00, 0.90,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment