diff --git a/wetb/prepost/Simulations.py b/wetb/prepost/Simulations.py index 86a4afdb7d9048dd85e8145fd75d3ff521d70445..9f80d3356acf42eb72351f8b26bd6e2b3fbaa544 100755 --- a/wetb/prepost/Simulations.py +++ b/wetb/prepost/Simulations.py @@ -5316,9 +5316,9 @@ class MannTurb64(prepost.PBSScript): self.prelude = 'cd %s' % case['[turb_dir]'] # alfaeps, L, gamma, seed, nr_u, nr_v, nr_w, du, dv, dw high_freq_comp - rpl = (float(case['[AlfaEpsilon]']), - float(case['[L_mann]']), - float(case['[Gamma]']), + rpl = (float(case['[MannAlfaEpsilon]']), + float(case['[MannL]']), + float(case['[MannGamma]']), int(case['[tu_seed]']), int(case['[turb_nr_u]']), int(case['[turb_nr_v]']), diff --git a/wetb/prepost/dlctemplate.py b/wetb/prepost/dlctemplate.py index 42d9a6cd4a8a9950ee88b222a802ebfe14478b09..f604afef7c6a8a0df9acc45719e7c55b7d831b8b 100755 --- a/wetb/prepost/dlctemplate.py +++ b/wetb/prepost/dlctemplate.py @@ -118,9 +118,9 @@ def master_tags(sim_id, runmethod='local', silent=False, verbose=False): # master file with the HAWC2Wrapper !! # default tags turbulence generator (required for 64-bit Mann generator) # alfaeps, L, gamma, seed, nr_u, nr_v, nr_w, du, dv, dw high_freq_comp - master.tags['[AlfaEpsilon]'] = 1.0 - master.tags['[L_mann]'] = 29.4 - master.tags['[Gamma]'] = 3.0 + master.tags['[MannAlfaEpsilon]'] = 1.0 + master.tags['[MannL]'] = 29.4 + master.tags['[MannGamma]'] = 3.0 master.tags['[tu_seed]'] = 0 master.tags['[turb_nr_u]'] = 8192 master.tags['[turb_nr_v]'] = 32