Skip to content
Snippets Groups Projects
Commit 8b0ce659 authored by Lukas Kugler's avatar Lukas Kugler
Browse files

fix

parent 05687371
No related branches found
No related tags found
No related merge requests found
...@@ -2,10 +2,12 @@ ...@@ -2,10 +2,12 @@
from . import clusters from . import clusters
cluster = clusters.vsc # change cluster configuration here cluster = clusters.vsc # change cluster configuration here
class ExperimentConfiguration(object): class ExperimentConfiguration(object):
def __init__(self): def __init__(self):
pass pass
exp = ExperimentConfiguration() exp = ExperimentConfiguration()
exp.expname = "exp_v1.12_LMU_so_VIS" exp.expname = "exp_v1.12_LMU_so_VIS"
exp.model_dx = 2000 exp.model_dx = 2000
...@@ -13,16 +15,14 @@ exp.timestep = 10 ...@@ -13,16 +15,14 @@ exp.timestep = 10
exp.n_ens = 40 exp.n_ens = 40
exp.n_nodes = 10 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, vis = dict(sat=True, channel=1, n_obs=n_obs, err_std=0.03,
distance_between_obs_km=50,
cov_loc_radius_km=10) cov_loc_radius_km=10)
radar = dict(sat=False, kind='radar', n_obs=n_obs, err_std=5., radar = dict(sat=False, kind='radar', n_obs=n_obs, err_std=5.,
distance_between_obs_km=50,
cov_loc_radius_km=10) cov_loc_radius_km=10)
exp.observations = [vis,] exp.observations = [vis, ]
# directory paths depend on the name of the experiment # directory paths depend on the name of the experiment
cluster.expname = exp.expname cluster.expname = exp.expname
...@@ -107,7 +107,7 @@ if __name__ == "__main__": ...@@ -107,7 +107,7 @@ if __name__ == "__main__":
n_obs = obscfg['n_obs'] n_obs = obscfg['n_obs']
error_var = (obscfg['err_std'])**2 error_var = (obscfg['err_std'])**2
sat_channel = obscfg.get('channel', False) 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) dist_obs = obscfg.get('distance_between_obs_km', False)
# generate obs_seq.in # generate obs_seq.in
......
...@@ -277,7 +277,7 @@ ...@@ -277,7 +277,7 @@
# This can greatly improve the performance in IO if # This can greatly improve the performance in IO if
# tasks_per_node is set to match your hardware # tasks_per_node is set to match your hardware
&ensemble_manager_nml &ensemble_manager_nml
layout = 2, layout = 1,
tasks_per_node = 48 tasks_per_node = 48
communication_configuration = 1 communication_configuration = 1
debug = .true. debug = .true.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment