Skip to content
Snippets Groups Projects
Select Git revision
  • 2628406750c34b7a6fc6ea4390af7ea03bf320f1
  • master default protected
  • dev-lkugler
  • teaching-2024
  • old_config_2023-05 protected
  • v2025.2
  • v2024.6
  • v2024.2.20
8 results

cfg.py

Blame
  • cfg.py 433 B
    
    from . import clusters
    cluster = clusters.vsc  # change cluster configuration here
    
    class ExperimentConfiguration(object):
        def __init__(self):
            pass
    
    exp = ExperimentConfiguration()
    exp.expname = "exp_v1.11_LMU_filter2"
    exp.model_dx = 2000
    exp.timestep = 10
    exp.n_ens = 40
    exp.n_nodes = 10
    exp.n_obs = 100
    exp.error_variance = 0.0009
    
    
    # directory paths depend on the name of the experiment
    cluster.expname = exp.expname