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
8b0ce659
Commit
8b0ce659
authored
4 years ago
by
Lukas Kugler
Browse files
Options
Downloads
Patches
Plain Diff
fix
parent
05687371
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
+5
-5
5 additions, 5 deletions
config/cfg.py
scripts/gen_synth_obs.py
+1
-1
1 addition, 1 deletion
scripts/gen_synth_obs.py
templates/input.nml
+1
-1
1 addition, 1 deletion
templates/input.nml
with
7 additions
and
7 deletions
config/cfg.py
+
5
−
5
View file @
8b0ce659
...
...
@@ -2,10 +2,12 @@
from
.
import
clusters
cluster
=
clusters
.
vsc
# change cluster configuration here
class
ExperimentConfiguration
(
object
):
def
__init__
(
self
):
pass
exp
=
ExperimentConfiguration
()
exp
.
expname
=
"
exp_v1.12_LMU_so_VIS
"
exp
.
model_dx
=
2000
...
...
@@ -13,16 +15,14 @@ exp.timestep = 10
exp
.
n_ens
=
40
exp
.
n_nodes
=
10
n_obs
=
81
# radar: n_obs for each observation height level
n_obs
=
64
# radar: n_obs for each observation height level
vis
=
dict
(
sat
=
True
,
channel
=
1
,
n_obs
=
n_obs
,
err_std
=
0.03
,
distance_between_obs_km
=
50
,
vis
=
dict
(
sat
=
True
,
channel
=
1
,
n_obs
=
n_obs
,
err_std
=
0.03
,
cov_loc_radius_km
=
10
)
radar
=
dict
(
sat
=
False
,
kind
=
'
radar
'
,
n_obs
=
n_obs
,
err_std
=
5.
,
distance_between_obs_km
=
50
,
cov_loc_radius_km
=
10
)
exp
.
observations
=
[
vis
,]
exp
.
observations
=
[
vis
,
]
# directory paths depend on the name of the experiment
cluster
.
expname
=
exp
.
expname
This diff is collapsed.
Click to expand it.
scripts/gen_synth_obs.py
+
1
−
1
View file @
8b0ce659
...
...
@@ -107,7 +107,7 @@ if __name__ == "__main__":
n_obs
=
obscfg
[
'
n_obs
'
]
error_var
=
(
obscfg
[
'
err_std
'
])
**
2
sat_channel
=
obscfg
.
get
(
'
channel
'
,
False
)
cov_loc
=
obscfg
.
get
[
'
cov_loc_radius_km
'
]
cov_loc
=
obscfg
[
'
cov_loc_radius_km
'
]
dist_obs
=
obscfg
.
get
(
'
distance_between_obs_km
'
,
False
)
# generate obs_seq.in
...
...
This diff is collapsed.
Click to expand it.
templates/input.nml
+
1
−
1
View file @
8b0ce659
...
...
@@ -277,7 +277,7 @@
# This can greatly improve the performance in IO if
# tasks_per_node is set to match your hardware
&ensemble_manager_nml
layout =
2
,
layout =
1
,
tasks_per_node = 48
communication_configuration = 1
debug = .true.
...
...
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