diff --git a/docs/howto-make-dlcs.md b/docs/howto-make-dlcs.md index d6a92f59b2afa403e8e20636548ad829e2d0ef5f..ce0ea476e9329063d56c634c7a82d7fc97e4b95d 100644 --- a/docs/howto-make-dlcs.md +++ b/docs/howto-make-dlcs.md @@ -369,6 +369,29 @@ node for which the a fixed file name is assumed * ```[copyto_generic] = ['ESYSMooring_init.dat']``` +### Tags required for standalone Mann 64-bit turbulence generator + +```dlctemplate.py``` has a flag named ```--pbs_turb```, which when activated +generates PBS input files containing the instructions to generate all required +turbulence boxes using the 64-bit version of the stand alone Mann turbulence +box generator. The appropriate input parameters are taken from the following +tags: + +* ```[tu_model]``` +* ```[Turb base name]``` +* ```[MannAlfaEpsilon]``` +* ```[MannL]``` +* ```[MannGamma]``` +* ```[tu_seed]``` +* ```[turb_nr_u]``` : number of grid points in the u direction +* ```[turb_nr_v]``` : number of grid points in the v direction +* ```[turb_nr_w]``` : number of grid points in the w direction +* ```[turb_dx]``` : grid spacing in meters in the u direction +* ```[turb_dy]``` : grid spacing in meters in the v direction +* ```[turb_dz]``` : grid spacing in meters in the w direction +* ```[high_freq_comp]``` + + Launching the jobs on the cluster --------------------------------- diff --git a/wetb/prepost/Simulations.py b/wetb/prepost/Simulations.py index 89ea46e44eba842512627b41f3a85737de1fbb29..3e8db04d4e2f37ad692619908463af9d09203c4a 100755 --- a/wetb/prepost/Simulations.py +++ b/wetb/prepost/Simulations.py @@ -5271,7 +5271,22 @@ class Results(object): class MannTurb64(prepost.PBSScript): """ alfaeps, L, gamma, seed, nr_u, nr_v, nr_w, du, dv, dw high_freq_comp - mann_turb_x64.exe fname 1.0 29.4 3.0 1209 256 32 32 2.0 5 5 true + mann_turb_x64.exe fname 1.0 29.4 3.0 1209 256 32 32 2.0 5 5 true. + + Following tags have to be defined: + * [tu_model] + * [Turb base name] + * [MannAlfaEpsilon] + * [MannL] + * [MannGamma] + * [tu_seed] + * [turb_nr_u] + * [turb_nr_v] + * [turb_nr_w] + * [turb_dx] + * [turb_dy] + * [turb_dz] + * [high_freq_comp] """ def __init__(self, silent=False): @@ -5287,6 +5302,13 @@ class MannTurb64(prepost.PBSScript): self.pbs_in_dir = 'pbs_in_turb/' def gen_pbs(self, cases): + """ + Parameters + ---------- + + cases : dict of dicts + each key holding a dictionary with tag/value pairs. + """ case0 = cases[list(cases.keys())[0]] # make sure the path's end with a trailing separator, why??