diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a510aab648f45657254307a706f8cec5833869ea..c64b0da6d41da5f89a4c50e478644de73d370f07 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,5 +11,7 @@ test-3.4:
   image: mmpe/wetb
   script:
   #- python3 setup.py test
+  - pip3 install pytest
   - python3 -m pytest --cov=wetb
-   
+  tags:
+  - python
diff --git a/docs/developer-guide.md b/docs/developer-guide.md
index 9e24d95b7dd123373d04eb4452905db84725fc5a..bb7f1bac05b91032ad891bbcb8af9bbccda842c8 100644
--- a/docs/developer-guide.md
+++ b/docs/developer-guide.md
@@ -126,7 +126,8 @@ use ```deactivate``` to deactivate the environment.
         - Python 2.7: [Microsoft Visual C++ Compiler for Python 2.7](http://aka.ms/vcpython27),
         or the [direct link](https://www.microsoft.com/en-gb/download/details.aspx?id=44266).
         - Python 3.4: MS Visual Studio 2010
-        - Python 3.5: MS Visual Studio 2015 or [Visual C++ Build Tools](http://landinghub.visualstudio.com/visual-cpp-build-tools)
+        - Python 3.5: MS Visual Studio 2015 or [Visual C++ Build Tools](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2017)
+        - Python 3.5+: MS Visual Studio 2017 or [Visual C++ 2017 Redistributable](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2017)
         - Only one MS Visual Studio version can be installed, but you can for
         example install MS Visual Studio 2010 alongside the Visual C++ Build Tools.
 - [numpy](http://www.numpy.org/)
@@ -157,8 +158,8 @@ Install the necessary Python dependencies using the conda package manager:
 
 ```
 >> conda install setuptools_scm future h5py pytables pytest pytest-cov nose sphinx blosc pbr paramiko
->> conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl psutil pandoc
->> conda install -c conda-forge pyscaffold sshtunnel twine pypandoc --no-deps
+>> conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl psutil pandoc twine pypandoc
+>> conda install -c conda-forge pyscaffold sshtunnel --no-deps
 ```
 
 Note that ```--no-deps``` avoids that newer packages from the channel
diff --git a/wetb/fatigue_tools/fatigue.py b/wetb/fatigue_tools/fatigue.py
index 4b4009b6cd58f6669c97bc6c11462c6f480ead9d..4be58383bd9b6018c5fb65f478f72eb9d93f1b8e 100644
--- a/wetb/fatigue_tools/fatigue.py
+++ b/wetb/fatigue_tools/fatigue.py
@@ -106,7 +106,7 @@ def eq_load_and_cycles(signals, no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=[10 ** 6
         ampl_bin_mean = (ampl_bin_edges[:-1] + ampl_bin_edges[1:]) / 2
     cycles, ampl_bin_mean = cycles.flatten(), ampl_bin_mean.flatten()
     with warnings.catch_warnings():
-        warnings.simplefilter("ignore")   
+        warnings.simplefilter("ignore")
         eq_loads = [[((np.nansum(cycles * ampl_bin_mean ** _m) / _neq) ** (1. / _m)) for _m in np.atleast_1d(m)]  for _neq in np.atleast_1d(neq)]
     return eq_loads, cycles, ampl_bin_mean, ampl_bin_edges
 
@@ -160,7 +160,7 @@ def cycle_matrix(signals, ampl_bins=10, mean_bins=10, rainflow_func=rainflow_win
         ampl_bins = np.linspace(0, 1, num=ampl_bins + 1) * ampls[weights>0].max()
     cycles, ampl_edges, mean_edges = np.histogram2d(ampls, means, [ampl_bins, mean_bins], weights=weights)
     with warnings.catch_warnings():
-        warnings.simplefilter("ignore")     
+        warnings.simplefilter("ignore")
         ampl_bin_sum = np.histogram2d(ampls, means, [ampl_bins, mean_bins], weights=weights * ampls)[0]
         ampl_bin_mean = np.nanmean(ampl_bin_sum / np.where(cycles,cycles,np.nan),1)
         mean_bin_sum = np.histogram2d(ampls, means, [ampl_bins, mean_bins], weights=weights * means)[0]
@@ -169,6 +169,51 @@ def cycle_matrix(signals, ampl_bins=10, mean_bins=10, rainflow_func=rainflow_win
     return cycles, ampl_bin_mean, ampl_edges, mean_bin_mean, mean_edges
 
 
+def cycle_matrix2(signal, nrb_amp, nrb_mean, rainflow_func=rainflow_windap):
+    """
+    Same as wetb.fatigue_tools.fatigue.cycle_matrix but bin from min_amp to
+    max_amp instead of 0 to max_amp.
+
+    Parameters
+    ----------
+
+    Signal : ndarray(n)
+        1D Raw signal array
+
+    nrb_amp : int
+        Number of bins for the amplitudes
+
+    nrb_mean : int
+        Number of bins for the means
+
+    rainflow_func : {rainflow_windap, rainflow_astm}, optional
+        The rainflow counting function to use (default is rainflow_windap)
+
+    Returns
+    -------
+
+    cycles : ndarray, shape(ampl_bins, mean_bins)
+        A bi-dimensional histogram of load cycles(full cycles). Amplitudes are\
+        histogrammed along the first dimension and mean values are histogrammed
+        along the second dimension.
+
+    ampl_edges : ndarray, shape(no_bins+1,n)
+        The amplitude bin edges
+
+    mean_edges : ndarray, shape(no_bins+1,n)
+        The mean bin edges
+
+    """
+    bins = [nrb_amp, nrb_mean]
+    ampls, means = rainflow_func(signal)
+    weights = np.ones_like(ampls)
+    cycles, ampl_edges, mean_edges = np.histogram2d(ampls, means, bins,
+                                                    weights=weights)
+    cycles = cycles / 2  # to get full cycles
+
+    return cycles, ampl_edges, mean_edges
+
+
 if __name__ == "__main__":
     signal1 = np.array([-2.0, 0.0, 1.0, 0.0, -3.0, 0.0, 5.0, 0.0, -1.0, 0.0, 3.0, 0.0, -4.0, 0.0, 4.0, 0.0, -2.0])
     signal2 = signal1 * 1.1
diff --git a/wetb/gtsdf/gtsdf.py b/wetb/gtsdf/gtsdf.py
index 859545bc05a1c1a453540ad2083bcc40802d88c4..04edb5573055ec4325fef0c8bc8b9781de2cfc7d 100644
--- a/wetb/gtsdf/gtsdf.py
+++ b/wetb/gtsdf/gtsdf.py
@@ -3,7 +3,6 @@ from builtins import zip
 from builtins import range
 from builtins import str
 from future import standard_library
-from wetb.fatigue_tools.fatigue import eq_load
 standard_library.install_aliases()
 import warnings
 from wetb.gtsdf.unix_time import from_unix
@@ -430,6 +429,7 @@ def _get_statistic(time, data, statistics=['min','mean','max','std','eq3','eq4',
         if hasattr(np, stat):
             return getattr(np,stat)(data,0)
         elif (stat.startswith("eq") and stat[2:].isdigit()):
+            from wetb.fatigue_tools.fatigue import eq_load
             m = float(stat[2:])
             return [eq_load(sensor, 46, m, time[-1]-time[0]+time[1]-time[0])[0][0] for sensor in data.T]
     return np.array([get_stat(stat) for stat in statistics]).T
diff --git a/wetb/hawc2/Hawc2io.py b/wetb/hawc2/Hawc2io.py
index 5bd39ca5200fed691873bcf074254c1a5bdc1333..2cb9ddf52c4df0301481e04b8b11b20033a7fbc5 100644
--- a/wetb/hawc2/Hawc2io.py
+++ b/wetb/hawc2/Hawc2io.py
@@ -78,6 +78,8 @@ class ReadHawc2(object):
         """
 
         # read *.sel hawc2 output file for result info
+        if self.FileName.lower().endswith('.sel'):
+            self.FileName = self.FileName[:-4]
         fid = opent(self.FileName + '.sel', 'r')
         Lines = fid.readlines()
         fid.close()
@@ -139,7 +141,7 @@ class ReadHawc2(object):
         self.Freq = 1 / temp[1];
         self.ScaleFactor = np.fromfile(fid, 'f', self.NrCh)
         fid.seek(2 * 4 * self.NrCh + 48 * 2)
-        self.NrSc = len(np.fromfile(fid, 'int16')) / self.NrCh
+        self.NrSc = int(len(np.fromfile(fid, 'int16')) / self.NrCh)
         self.Time = self.NrSc * temp[1]
         self.t = np.arange(0, self.Time, temp[1])
         fid.close()
@@ -150,13 +152,14 @@ class ReadHawc2(object):
         self.ReadOnly = ReadOnly
         self.Iknown = []  # to keep track of what has been read all ready
         self.Data = np.zeros(0)
-        if os.path.isfile(FileName + ".sel"):
+        if FileName.lower().endswith('.sel') or os.path.isfile(FileName + ".sel"):
              self._ReadSelFile()
-        elif os.path.isfile(self.FileName + ".int"):
+        elif FileName.lower().endswith('.int') or os.path.isfile(self.FileName + ".int"):
              self.FileFormat = 'FLEX'
              self._ReadSensorFile()
-        elif os.path.isfile(self.FileName + ".hdf5"):
+        elif FileName.lower().endswith('.hdf5') or os.path.isfile(self.FileName + ".hdf5"):
             self.FileFormat = 'GTSDF'
+            self.ReadAll()
         else:
             print ("unknown file: " + FileName)
 ################################################################################
@@ -193,7 +196,7 @@ class ReadHawc2(object):
 # Read results in GTSD format
     def ReadGtsdf(self):
         self.t, data, info = gtsdf.load(self.FileName + '.hdf5')
-        self.Time = self.t[-1]
+        self.Time = self.t
         self.ChInfo = [info['attribute_names'],
                        info['attribute_units'],
                        info['attribute_descriptions']]
diff --git a/wetb/hawc2/htc_contents.py b/wetb/hawc2/htc_contents.py
index 592de832d33674a527d61fffa57daac756f36f3d..45967be5480f1792a7710e9057d48fa1c5449dae 100644
--- a/wetb/hawc2/htc_contents.py
+++ b/wetb/hawc2/htc_contents.py
@@ -48,6 +48,7 @@ class HTCContents(object):
     lines = []
     contents = None
     name_ = ""
+    parent=None
 
     def __setitem__(self, key, value):
         if isinstance(key, str):
@@ -56,6 +57,7 @@ class HTCContents(object):
             self.values[key] = value
         else:
             raise NotImplementedError
+        value.parent=self
             
 
     def __getitem__(self, key):
@@ -72,6 +74,9 @@ class HTCContents(object):
             return self.values[key]
 
     def __getattr__(self, *args, **kwargs):
+        if args[0] in ['__members__','__methods__']:
+            # fix python2 related issue. In py2, dir(self) calls __getattr__(('__members__',)), and this call must fail unhandled to work
+            return object.__getattribute__(self, *args, **kwargs)
         try:
             return object.__getattribute__(self, *args, **kwargs)
         except:
@@ -135,7 +140,11 @@ class HTCContents(object):
         self._add_contents(line)
         return line
 
-
+    def location(self):
+        if self.parent is None:
+            return os.path.basename(self.filename)
+        else:
+            return self.parent.location() + "/" + self.name_
 
 
 class HTCSection(HTCContents):
@@ -209,7 +218,10 @@ class HTCLine(HTCContents):
         return " ".join([str(v).lower() for v in self.values])
 
     def __getitem__(self, key):
-        return self.values[key]
+        try:
+            return self.values[key]
+        except:
+            raise IndexError("Parameter %s does not exists for %s"%(key+1,self.location()))
 
     @staticmethod
     def from_lines(lines):
diff --git a/wetb/prepost/GenerateDLCs.py b/wetb/prepost/GenerateDLCs.py
index f4c83750964c2e12541a5b237bd2690e7a436740..8303c3eac02636388a43097bb0d5e53647671f0d 100644
--- a/wetb/prepost/GenerateDLCs.py
+++ b/wetb/prepost/GenerateDLCs.py
@@ -182,7 +182,13 @@ class GeneralDLC(object):
                 formula = formula.replace(',', '.')
                 formula = formula.replace(';', ',')
                 formula = formula.replace('\n', ' ')
-                flist.append(eval(formula))
+                try:
+                    flist.append(eval(formula))
+                except Exception as exc:
+                    print('following formula failed to execute:')
+                    print(formula)
+                    print('and raised the following exception:')
+                    raise exc
 
             dlc[fkey] = flist
 
diff --git a/wetb/prepost/Simulations.py b/wetb/prepost/Simulations.py
index 083947a6c841995da2bac7df5b0d7ce8b39d3813..c3fe5ae90e5bc4242e09c92ce441a84470327887 100755
--- a/wetb/prepost/Simulations.py
+++ b/wetb/prepost/Simulations.py
@@ -56,6 +56,12 @@ from wetb.prepost import prepost
 from wetb.dlc import high_level as dlc
 from wetb.prepost.GenerateHydro import hydro_input
 from wetb.utils.envelope import compute_envelope
+from os.path import join as os_path_join
+
+def join_path(*args):
+    return os_path_join(*args).replace("\\","/")
+os.path.join = join_path
+
 
 def load_pickled_file(source):
     FILE = open(source, 'rb')
@@ -556,10 +562,13 @@ def run_local(cases, silent=False, check_log=True):
 def prepare_launch(iter_dict, opt_tags, master, variable_tag_func,
                 write_htc=True, runmethod='none', verbose=False,
                 copyback_turb=True, msg='', silent=False, check_log=True,
-                update_cases=False, ignore_non_unique=False, wine_appendix='',
-                run_only_new=False, windows_nr_cpus=2, qsub='',
-                pbs_fname_appendix=True, short_job_names=True,
-                update_model_data=True, maxcpu=1, pyenv='wetb_py3'):
+                update_cases=False, ignore_non_unique=False,
+                run_only_new=False, windows_nr_cpus=2, wine_64bit=False,
+                pbs_fname_appendix=True, short_job_names=True, qsub='',
+                update_model_data=True, maxcpu=1, pyenv='wetb_py3',
+                m=[3,4,6,8,9,10,12], postpro_node_zipchunks=True,
+                postpro_node=False, exesingle=None, exechunks=None,
+                wine_arch='win32', wine_prefix='~/.wine32'):
     """
     Create the htc files, pbs scripts and replace the tags in master file
     =====================================================================
@@ -796,10 +805,13 @@ def prepare_launch(iter_dict, opt_tags, master, variable_tag_func,
         cases = cases_to_run
 
     launch(cases, runmethod=runmethod, verbose=verbose, check_log=check_log,
-           copyback_turb=copyback_turb, qsub=qsub, wine_appendix=wine_appendix,
+           copyback_turb=copyback_turb, qsub=qsub,
            windows_nr_cpus=windows_nr_cpus, short_job_names=short_job_names,
            pbs_fname_appendix=pbs_fname_appendix, silent=silent, maxcpu=maxcpu,
-           pyenv=pyenv)
+           pyenv=pyenv, wine_64bit=wine_64bit, m=[3,4,6,8,9,10,12],
+           postpro_node_zipchunks=postpro_node_zipchunks,
+           postpro_node=postpro_node, exesingle=exesingle, exechunks=exechunks,
+           wine_arch=wine_arch, wine_prefix=wine_prefix)
 
     return cases
 
@@ -999,8 +1011,10 @@ def prepare_launch_cases(cases, runmethod='gorm', verbose=False,write_htc=True,
 
 def launch(cases, runmethod='none', verbose=False, copyback_turb=True,
            silent=False, check_log=True, windows_nr_cpus=2, qsub='time',
-           wine_appendix='', pbs_fname_appendix=True, short_job_names=True,
-           maxcpu=1, pyenv='wetb_py3'):
+           pbs_fname_appendix=True, short_job_names=True,
+           maxcpu=1, pyenv='wetb_py3', wine_64bit=False, m=[3,4,6,8,9,10,12],
+           postpro_node_zipchunks=True, postpro_node=False, exesingle=None,
+           exechunks=None, wine_arch='win32', wine_prefix='~/.wine32'):
     """
     The actual launching of all cases in the Cases dictionary. Note that here
     only the PBS files are written and not the actuall htc files.
@@ -1041,8 +1055,11 @@ def launch(cases, runmethod='none', verbose=False, copyback_turb=True,
         # create the pbs object
         pbs = PBS(cases, short_job_names=short_job_names, pyenv=pyenv,
                   pbs_fname_appendix=pbs_fname_appendix, qsub=qsub,
-                  verbose=verbose, silent=silent)
-        pbs.wine_appendix = wine_appendix
+                  verbose=verbose, silent=silent, wine_64bit=wine_64bit,
+                  m=m, postpro_node_zipchunks=postpro_node_zipchunks,
+                  postpro_node=postpro_node, exesingle=exesingle,
+                  exechunks=exechunks, wine_arch=wine_arch,
+                  wine_prefix=wine_prefix)
         pbs.copyback_turb = copyback_turb
         pbs.pbs_out_dir = pbs_out_dir
         pbs.maxcpu = maxcpu
@@ -1930,7 +1947,10 @@ class PBS(object):
     """
 
     def __init__(self, cases, qsub='time', silent=False, pyenv='wetb_py3',
-                 pbs_fname_appendix=True, short_job_names=True, verbose=False):
+                 pbs_fname_appendix=True, short_job_names=True, verbose=False,
+                 wine_64bit=False, m=[3,4,6,8,9,10,12], exesingle=None,
+                 postpro_node_zipchunks=True, postpro_node=False,
+                 exechunks=None, wine_arch='win32', wine_prefix='~/.wine32'):
         """
         Define the settings here. This should be done outside, but how?
         In a text file, paramters list or first create the object and than set
@@ -1963,10 +1983,33 @@ class PBS(object):
         self.silent = silent
         self.pyenv = pyenv
         self.pyenv_cmd = 'source /home/python/miniconda3/bin/activate'
-        self.winebase = 'time WINEARCH=win32 WINEPREFIX=~/.wine32 '
+        self.postpro_node_zipchunks = postpro_node_zipchunks
+        self.postpro_node = postpro_node
+
+        self.m = m
+
+        # run in 32-bit or 64-bit mode. Note this uses the same assumptions
+        # on how to configure wine in toolbox/pbsutils/config-wine-hawc2.sh
+        wineparam = (wine_arch, wine_prefix)
+        if wine_64bit:
+            wineparam = ('win64', '~/.wine')
+        self.winebase = 'time WINEARCH=%s WINEPREFIX=%s ' % wineparam
+
         self.wine = self.winebase + 'wine'
         self.winenumactl = self.winebase + 'numactl --physcpubind=$CPU_NR wine'
 
+        # in case you want to redirect stdout to /dev/nul, append as follows:
+        # '> /dev/null 2>&1'
+        self.exesingle = exesingle
+        if exesingle is None:
+            self.exesingle = "{wine:} {hawc2_exe:} {fname_htc:}"
+        # in zipchunks mode we will output std out and err to a separate
+        # pbs_out file, and that in addition to the pbs_out_zipchunks file
+        self.exechunks = exechunks
+        if exechunks is None:
+            self.exechunks = "({winenumactl:} {hawc2_exe:} {fname_htc:}) "
+            self.exechunks += "2>&1 | tee {fname_pbs_out:}"
+
         # TODO: based on a certain host/architecture you can change these
         self.maxcpu = 1
         self.secperiter = 0.012
@@ -1974,7 +2017,7 @@ class PBS(object):
         # determine at runtime if winefix has to be ran
         self.winefix = '  _HOSTNAME_=`hostname`\n'
         self.winefix += '  if [[ ${_HOSTNAME_:0:1} == "j" ]] ; then\n'
-        self.winefix += '    WINEARCH=win32 WINEPREFIX=~/.wine32 winefix\n'
+        self.winefix += '    WINEARCH=%s WINEPREFIX=%s winefix\n' % wineparam
         self.winefix += '  fi\n'
 
         # the output channels comes with a price tag. Each time step
@@ -1993,9 +2036,6 @@ class PBS(object):
         # the actual script starts empty
         self.pbs = ''
 
-        # in case you want to redirect stdout to /dev/nul
-#        self.wine_appendix = '> /dev/null 2>&1'
-        self.wine_appendix = ''
         # /dev/shm should be the RAM of the cluster
 #        self.node_run_root = '/dev/shm'
         self.node_run_root = '/scratch'
@@ -2300,16 +2340,34 @@ class PBS(object):
             self.pbs += '# single PBS mode: one case per PBS job\n'
             self.pbs += '# evaluates to true if LAUNCH_PBS_MODE is NOT set\n'
             self.pbs += "if [ -z ${LAUNCH_PBS_MODE+x} ] ; then\n"
-            # the hawc2 execution commands via wine, in PBS mode fork and wait
-            param = (self.wine, hawc2_exe, self.htc_dir+case, self.wine_appendix)
+
             self.pbs += '  echo "execute HAWC2, fork to background"\n'
-            self.pbs += "  %s %s ./%s %s &\n" % param
+            # the hawc2 execution commands via wine, in PBS mode fork and wait
+            # METHOD MORE GENERAL
+            # case contains the htc file name extension, self.case doesn't
+            fname_htc = "./" + os.path.join(self.htc_dir, case)
+            fname_log = os.path.join(self.logs_dir, self.case)
+            ext = '.err.out'
+            fname_pbs_out = os.path.join(self.pbs_out_dir, self.case + ext)
+            execstr = self.exesingle.format(wine=self.wine, case=case,
+                                            fname_htc=fname_htc,
+                                            hawc2_exe=hawc2_exe,
+                                            pbs_out_dir=self.pbs_out_dir,
+                                            logs_dir=self.logs_dir,
+                                            fname_log=fname_log,
+                                            fname_pbs_out=fname_pbs_out,
+                                            winenumactl=self.winenumactl)
+            self.pbs += "  %s &\n" % execstr
+            # # OLD METHOD
+            # param = (self.wine, hawc2_exe, self.htc_dir+case)
+            # self.pbs += "  %s %s ./%s &\n" % param
+
             # FIXME: running post-processing will only work when 1 HAWC2 job
             # per PBS file, otherwise you have to wait for each job to finish
             # first and then run the post-processing for all those cases
             if self.maxcpu == 1:
                 self.pbs += '  wait\n'
-                if self.pyenv is not None:
+                if self.pyenv is not None and self.postpro_node:
                     self.pbs += '  echo "POST-PROCESSING"\n'
                     self.pbs += '  %s %s\n' % (self.pyenv_cmd, self.pyenv)
                     self.pbs += "  "
@@ -2324,15 +2382,32 @@ class PBS(object):
             self.pbs += '# find+xargs mode: 1 PBS job, multiple cases\n'
             self.pbs += "else\n"
             # numactl --physcpubind=$CPU_NR
-            param = (self.winenumactl, hawc2_exe, self.htc_dir+case,
-                     self.wine_appendix)
+
+            fname_htc = "./" + os.path.join(self.htc_dir, case)
+            fname_log = os.path.join(self.logs_dir, self.case)
+            ext = '.err.out'
+            fname_pbs_out = os.path.join(self.pbs_out_dir, self.case + ext)
+            execstr = self.exechunks.format(wine=self.wine, case=case,
+                                            fname_htc=fname_htc,
+                                            hawc2_exe=hawc2_exe,
+                                            pbs_out_dir=self.pbs_out_dir,
+                                            logs_dir=self.logs_dir,
+                                            fname_log=fname_log,
+                                            fname_pbs_out=fname_pbs_out,
+                                            winenumactl=self.winenumactl)
             self.pbs += '  echo "execute HAWC2, do not fork and wait"\n'
-            self.pbs += "  %s %s ./%s %s\n" % param
-            self.pbs += '  echo "POST-PROCESSING"\n'
-            self.pbs += "  "
-            self.checklogs()
-            self.pbs += "  "
-            self.postprocessing()
+            self.pbs += "  %s \n" % execstr
+
+            # param = (self.winenumactl, hawc2_exe, self.htc_dir+case,
+            #          self.wine_appendix)
+            # self.pbs += '  echo "execute HAWC2, do not fork and wait"\n'
+            # self.pbs += "  " + ("%s %s ./%s %s" % param).strip() + "\n"
+            if self.pyenv is not None and self.postpro_node_zipchunks:
+                self.pbs += '  echo "POST-PROCESSING"\n'
+                self.pbs += "  "
+                self.checklogs()
+                self.pbs += "  "
+                self.postprocessing()
             self.pbs += "fi\n"
             # mark end of find+xargs mode
             self.pbs += '# ' + '-'*78 + '\n'
@@ -2544,7 +2619,8 @@ class PBS(object):
         if mode=="find+xargs":
             foper = "rsync -a --remove-source-files" # move files instead of copy
             dst = os.path.join('..', self.sim_id, '')
-            dst_db = '../'
+            # copy back to DB dir, and not the scratch dir root
+            dst_db = "$PBS_O_WORKDIR/"
             cd2model = "  cd %s\n" % os.path.join(self.node_run_root, '$USER',
                                                   '$PBS_JOBID', '$CPU_NR', '')
             pbs_mode = False
@@ -2588,6 +2664,12 @@ class PBS(object):
         self.pbs += "  %s %s. %s\n" % (foper, self.results_dir, res_dst)
         log_dst = os.path.join(dst, self.logs_dir, ".")
         self.pbs += "  %s %s. %s\n" % (foper, self.logs_dir, log_dst)
+        # in zipchunks mode by default we also copy the time+std out/err to
+        # an additional file that is in pbs_out for consistancy with the
+        # pbs_mode approach
+        if not pbs_mode:
+            pbs_dst = os.path.join(dst, self.pbs_out_dir, ".")
+            self.pbs += "  %s %s. %s\n" % (foper, self.pbs_out_dir, pbs_dst)
         if self.animation_dir:
             ani_dst = os.path.join(dst, self.animation_dir, ".")
             self.pbs += "  %s %s. %s\n" % (foper, self.animation_dir, ani_dst)
@@ -2687,8 +2769,9 @@ class PBS(object):
         """
         self.pbs += 'python -c "from wetb.prepost import statsdel; '
         fsrc = os.path.join(self.results_dir, self.case)
-        rpl = (fsrc, str(self.case_duration), '.csv')
-        self.pbs += ('statsdel.calc(\'%s\', no_bins=46, m=[3, 4, 6, 8, 10, 12], '
+        mstr = ','.join([str(k) for k in self.m])
+        rpl = (fsrc, mstr, str(self.case_duration), '.csv')
+        self.pbs += ('statsdel.calc(\'%s\', no_bins=46, m=[%s], '
                      'neq=%s, i0=0, i1=None, ftype=\'%s\')"\n' % rpl)
 
     def check_results(self, cases):
@@ -4616,6 +4699,13 @@ class Cases(object):
         else:
             sim_id = new_sim_id
 
+        # FIXME: for backward compatibility, the column name of the unique
+        # channel name has been changed in the past....
+        if 'unique_ch_name' in dfs.columns:
+            chan_col_name  = 'unique_ch_name'
+        else:
+            chan_col_name  = 'channel'
+
         if fh_lst is None:
             # FIXME: wb has overlap with dlc_config.xlsx, and shape_k doesn't
             # seemed to be used by DLCHighLevel
@@ -4635,7 +4725,12 @@ class Cases(object):
             # the statistics analysis
             # TODO: could be faster if working with df directly, but how to
             # assure you're res_dir is always ending with path separator?
-            p1, p2 = dfs['[res_dir]'].values, dfs['[case_id]'].values
+            # only take the values from 1 channel, not all of them!!
+            # FIXME: breaks when not all channels are present for all cases !
+            # solution: set channel "Time" as a minimum required channel!
+            val = dfs[chan_col_name].values[0]
+            sel = dfs[dfs[chan_col_name]==val]
+            p1, p2 = sel['[res_dir]'].values, sel['[case_id]'].values
             files = [os.path.join(q1, q2) + '.sel' for q1, q2 in zip(p1, p2)]
             fh_lst = dlc_cfg.file_hour_lst(years=years, files=files)
 
@@ -4658,12 +4753,6 @@ class Cases(object):
         # ---------------------------------------------------------------------
         # column definitions
         # ---------------------------------------------------------------------
-        # FIXME: for backward compatibility, the column name of the unique
-        # channel name has been changed in the past....
-        if 'unique_ch_name' in dfs.columns:
-            chan_col_name  = 'unique_ch_name'
-        else:
-            chan_col_name  = 'channel'
         # available material constants
         ms, cols = [], []
         for key in dfs:
@@ -4791,6 +4880,13 @@ class Cases(object):
         else:
             sim_id = new_sim_id
 
+        # FIXME: for backward compatibility, the column name of the unique
+        # channel name has been changed in the past....
+        if 'unique_ch_name' in dfs.columns:
+            chan_col_name  = 'unique_ch_name'
+        else:
+            chan_col_name  = 'channel'
+
         if fh_lst is None:
             wb = WeibullParameters()
             if 'Weibull' in self.config:
@@ -4805,7 +4901,11 @@ class Cases(object):
             dlc_cfg.res_folder = os.path.join(run_dir, res_dir, dlc_folder)
             # TODO: could be faster if working with df directly, but how to
             # assure you're res_dir is always ending with path separator?
-            p1, p2 = dfs['[res_dir]'].values, dfs['[case_id]'].values
+            # FIXME: breaks when not all channels are present for all cases !
+            # solution: set channel "Time" as a minimum required channel!
+            val = dfs[chan_col_name].values[0]
+            sel = dfs[dfs[chan_col_name]==val]
+            p1, p2 = sel['[res_dir]'].values, sel['[case_id]'].values
             files = [os.path.join(q1, q2) + '.sel' for q1, q2 in zip(p1, p2)]
             fh_lst = dlc_cfg.file_hour_lst(years=1.0, files=files)
 
@@ -4830,7 +4930,7 @@ class Cases(object):
                                 complib=self.complib)
 
         # and select only the power channels
-        dfs_powe = dfs[dfs.channel==ch_powe]
+        dfs_powe = dfs[dfs[chan_col_name]==ch_powe]
 
         # by default we have AEP as a column
         cols = ['AEP']
diff --git a/wetb/prepost/dlctemplate.py b/wetb/prepost/dlctemplate.py
index e622d7ff63cbd7300436b577f66c94cc752e0764..8f7685635cecf817dbea21332cac6fad97a32e6b 100644
--- a/wetb/prepost/dlctemplate.py
+++ b/wetb/prepost/dlctemplate.py
@@ -265,8 +265,10 @@ def variable_tag_func_mod1(master, case_id_short=False):
 
 def launch_dlcs_excel(sim_id, silent=False, verbose=False, pbs_turb=False,
                       runmethod=None, write_htc=True, zipchunks=False,
-                      walltime='04:00:00', postpro_node=False,
-                      dlcs_dir='htc/DLCs', compress=False):
+                      walltime='04:00:00', postpro_node=False, compress=False,
+                      dlcs_dir='htc/DLCs', wine_64bit=False,
+                      m=[3,4,6,8,9,10,12], postpro_node_zipchunks=True,
+                      wine_arch='win32', wine_prefix='~/.wine32'):
     """
     Launch load cases defined in Excel files
     """
@@ -274,7 +276,7 @@ def launch_dlcs_excel(sim_id, silent=False, verbose=False, pbs_turb=False,
     iter_dict = dict()
     iter_dict['[empty]'] = [False]
 
-    if postpro_node:
+    if postpro_node or postpro_node_zipchunks:
         pyenv = 'wetb_py3'
     else:
         pyenv = None
@@ -328,7 +330,12 @@ def launch_dlcs_excel(sim_id, silent=False, verbose=False, pbs_turb=False,
                                copyback_turb=True, update_cases=False, msg='',
                                ignore_non_unique=False, run_only_new=False,
                                pbs_fname_appendix=False, short_job_names=False,
-                               silent=silent, verbose=verbose, pyenv=pyenv)
+                               silent=silent, verbose=verbose, pyenv=pyenv,
+                               wine_64bit=wine_64bit, m=[3,4,6,8,9,10,12],
+                               postpro_node_zipchunks=postpro_node_zipchunks,
+                               postpro_node=postpro_node, exesingle=None,
+                               exechunks=None, wine_arch=wine_arch,
+                               wine_prefix=wine_prefix)
 
     if pbs_turb:
         # to avoid confusing HAWC2 simulations and Mann64 generator PBS files,
@@ -346,10 +353,14 @@ def launch_dlcs_excel(sim_id, silent=False, verbose=False, pbs_turb=False,
         sorts_on = ['[DLC]', '[Windspeed]']
         create_chunks_htc_pbs(cases, sort_by_values=sorts_on, ppn=20,
                               nr_procs_series=3, walltime='20:00:00',
-                              chunks_dir='zip-chunks-jess', compress=compress)
+                              chunks_dir='zip-chunks-jess', compress=compress,
+                              queue='workq', wine_64bit=wine_64bit,
+                              wine_arch=wine_arch, wine_prefix=wine_prefix)
         create_chunks_htc_pbs(cases, sort_by_values=sorts_on, ppn=12,
                               nr_procs_series=3, walltime='20:00:00',
-                              chunks_dir='zip-chunks-gorm', compress=compress)
+                              chunks_dir='zip-chunks-gorm', compress=compress,
+                              queue='workq', wine_64bit=wine_64bit,
+                              wine_arch=wine_arch, wine_prefix=wine_prefix)
 
     df = sim.Cases(cases).cases2df()
     df.to_excel(os.path.join(POST_DIR, sim_id + '.xls'))
@@ -357,7 +368,7 @@ def launch_dlcs_excel(sim_id, silent=False, verbose=False, pbs_turb=False,
 
 def post_launch(sim_id, statistics=True, rem_failed=True, check_logs=True,
                 force_dir=False, update=False, saveinterval=2000, csv=False,
-                m=[1, 3, 4, 5, 6, 8, 10, 12, 14], neq=1e7, no_bins=46,
+                m=[3, 4, 6, 8, 9, 10, 12], neq=1e7, no_bins=46,
                 years=20.0, fatigue=True, A=None, AEP=False,
                 save_new_sigs=False, envelopeturbine=False, envelopeblade=False,
                 save_iter=False, pbs_failed_path=False):
@@ -465,7 +476,7 @@ def post_launch(sim_id, statistics=True, rem_failed=True, check_logs=True,
     return df_stats, df_AEP, df_Leq
 
 
-def postpro_node_merge(tqdm=False, zipchunks=False):
+def postpro_node_merge(tqdm=False, zipchunks=False, m=[3,4,6,8,9,10,12]):
     """With postpro_node each individual case has a .csv file for the log file
     analysis and a .csv file for the statistics tables. Merge all these single
     files into one table/DataFrame.
@@ -518,8 +529,8 @@ def postpro_node_merge(tqdm=False, zipchunks=False):
     store = pd.HDFStore(fdf, mode='w', format='table', complevel=9,
                         complib='zlib')
     colnames = ['channel', 'max', 'min', 'mean', 'std', 'range',
-                'absmax', 'rms', 'int', 'm=3', 'm=4', 'm=6', 'm=8', 'm=10',
-                'm=12', 'intabs', '[case_id]']
+                'absmax', 'rms', 'int', 'intabs', '[case_id]']
+    colnames.extend(['m=%1.0f' % k for k in m])
     dtypes = {col:np.float64 for col in colnames}
     dtypes['channel'] = str
     dtypes['[case_id]'] = str
@@ -634,7 +645,13 @@ if __name__ == '__main__':
     parser.add_argument('--postpro_node', default=False, action='store_true',
                         dest='postpro_node', help='Perform the log analysis '
                         'and stats calculation on the node right after the '
-                        'simulation has finished.')
+                        'simulation has finished in single pbs mode.')
+    parser.add_argument('--no_postpro_node_zipchunks', default=True,
+                        action='store_false', dest='no_postpro_node_zipchunks',
+                        help='Do NOT perform the log analysis '
+                        'and stats calculation on the node right after the '
+                        'simulation has finished in zipchunks mode. '
+                        'The default is True, use this flag to deactivate.')
     parser.add_argument('--postpro_node_merge', default=False,
                         action='store_true', dest='postpro_node_merge',
                         help='Merge all individual statistics and log file '
@@ -655,8 +672,21 @@ if __name__ == '__main__':
                         action='store', dest='dlcfolder', help='Optionally '
                         'define an other destination folder location for the '
                         'generated DLC exchange files, default: htc/DLCs/')
+    parser.add_argument('--wine_64bit', default=False, action='store_true',
+                        dest='wine_64bit', help='Run wine in 64-bit mode. '
+                        'Only works on Jess.')
+    parser.add_argument('--wine_arch', action='store', default='win32', type=str,
+                        dest='wine_arch', help='Set to win32 for 32-bit, and '
+                        'win64 for 64-bit. 64-bit only works on Jess. '
+                        'Defaults to win32.')
+    parser.add_argument('--wine_prefix', action='store', default='~/.wine32',
+                        type=str, dest='wine_prefix', help='WINEPREFIX: '
+                        'Directory used by wineserver. Default ~/.wine32')
     opt = parser.parse_args()
 
+    # Wholer coefficients to be considered for the fatigue analysis
+    m = [3, 4, 6, 8, 9, 10, 12]
+
     # -------------------------------------------------------------------------
 #    # manually configure paths, HAWC2 model root path is then constructed as
 #    # p_root_remote/PROJECT/sim_id, and p_root_local/PROJECT/sim_id
@@ -698,7 +728,9 @@ if __name__ == '__main__':
                           pbs_turb=opt.pbs_turb, walltime=opt.walltime,
                           postpro_node=opt.postpro_node, runmethod=RUNMETHOD,
                           dlcs_dir=os.path.join(P_SOURCE, 'htc', 'DLCs'),
-                          compress=opt.compress)
+                          compress=opt.compress, wine_64bit=opt.wine_64bit,
+                          postpro_node_zipchunks=opt.no_postpro_node_zipchunks,
+                          wine_arch=opt.wine_arch, wine_prefix=opt.wine_prefix)
     # post processing: check log files, calculate statistics
     if opt.check_logs or opt.stats or opt.fatigue or opt.envelopeblade \
         or opt.envelopeturbine or opt.AEP:
@@ -711,7 +743,7 @@ if __name__ == '__main__':
                     envelopeturbine=opt.envelopeturbine,
                     envelopeblade=opt.envelopeblade)
     if opt.postpro_node_merge:
-        postpro_node_merge(zipchunks=opt.zipchunks)
+        postpro_node_merge(zipchunks=opt.zipchunks, m=m)
     if opt.dlcplot:
         plot_chans = {}
         plot_chans['$B1_{flap}$'] = ['setbeta-bladenr-1-flapnr-1']
diff --git a/wetb/prepost/h2_vs_hs2.py b/wetb/prepost/h2_vs_hs2.py
index 8db023d5be593aef3564f3d3806206e23647d389..c5ce25a5d37e9486a42a3a63277522033d325a33 100644
--- a/wetb/prepost/h2_vs_hs2.py
+++ b/wetb/prepost/h2_vs_hs2.py
@@ -553,7 +553,7 @@ class MappingsH2HS2(object):
     def blade_distribution(self, fname_h2, fname_hs2, h2_df_stats=None,
                            fname_h2_tors=None):
 
-        self.hs2_res.load_ind(fname_hs2)
+        self.hs2_res.df_ind = self.hs2_res.load_ind(fname_hs2)
         self.h2_res = sim.windIO.ReadOutputAtTime(fname_h2)
         self._distribution_hs2()
         self._distribution_h2()
@@ -601,7 +601,7 @@ class MappingsH2HS2(object):
             hs2_cols = list(mapping_hs2)
             # select only the HS channels that will be used for the mapping
             std_cols = list(mapping_hs2.values())
-            self.hs_aero = self.hs2_res.ind.df_data[hs2_cols].copy()
+            self.hs_aero = self.hs2_res.df_ind[hs2_cols].copy()
         except KeyError:
             # some results have been created with older HAWCStab2 that did not
             # include CT and CP columns
@@ -610,7 +610,7 @@ class MappingsH2HS2(object):
             hs2_cols = list(mapping_hs2)
             std_cols = list(mapping_hs2.values())
             # select only the HS channels that will be used for the mapping
-            self.hs_aero = self.hs2_res.ind.df_data[hs2_cols].copy()
+            self.hs_aero = self.hs2_res.df_ind[hs2_cols].copy()
 
         # change column names to the standard form that is shared with H2
         self.hs_aero.columns = std_cols
@@ -808,7 +808,7 @@ class Plots(object):
     def load_hs(self, fname_hs):
 
         res = MappingsH2HS2(self.config)
-        res.hs2_res.load_ind(fname_hs)
+        res.df_ind = res.hs2_res.load_ind(fname_hs)
         self.units = res.units
         res._distribution_hs2()
 
diff --git a/wetb/prepost/hawcstab2.py b/wetb/prepost/hawcstab2.py
index abd99c3770fbf67754caec483266a8c66e40caa2..5d630e929b31eab836a357f799c2c29642c18b9c 100644
--- a/wetb/prepost/hawcstab2.py
+++ b/wetb/prepost/hawcstab2.py
@@ -37,38 +37,68 @@ def ReadFileHAWCStab2Header(fname):
     includes the column number and units between square brackets.
     """
 
-    def _read(fname, header=0, widths=[20]*15, skipfooter=0):
-        df = pd.read_fwf(fname, header=header, widths=widths,
-                         skipfooter=skipfooter)
-        units = regex_units.findall(''.join(df.columns))
-        return df, units
-
-    with open(fname) as f:
-        line = f.readline()
-
-    # when gradients are included in the output
-    if len(line) > 800:
-        df, units = _read(fname, header=1, widths=[30]*27)
-        # column name has the name, unit and column number in it...
-        df.columns = [k[:-2].replace('#', '').strip() for k in df.columns]
-        return df, units
-    elif len(line) > 200:
-        df, units = _read(fname, header=0, widths=[20]*15)
-        # column name has the name, unit and column number in it...
-        df.columns = [k[:-2].replace('#', '').strip() for k in df.columns]
-        return df, units
-    # older versions of HS2 seem to have two columns less
-    else:
-        df, units = _read(fname, header=0, widths=[14]*13)
-        df.columns = [k.replace('#', '').strip() for k in df.columns]
-        return df, units
+    def get_lines(fname):
+        # get the line that contains the header/column names and the first
+        # line that holds the data
+        with open(fname) as f:
+            line_header = f.readline()
+            line_data = f.readline()
+            # sometimes there are more header lines. The header is always on the
+            # last of the lines marked with #
+            while line_data[:2].strip() == '#':
+                line_header = line_data
+                line_data = f.readline()
+        return line_header, line_data
+
+    def get_col_widths(line):
+        # it is very annoying that various files can have various column widths
+        # also, the first column is one character wider than the rest
+        i0 = re.search(r'\S',line).start()
+        i1_col1 = line[i0:].find(' ') + i0
+        # number of columns can also be different (gradients or not, node displ)
+        nr_cols = int(round(len(line)/i1_col1, 0))
+        colwidths = [i1_col1+1] + [i1_col1]*(nr_cols-1)
+        return colwidths
+
+    def get_col_names(line, colwidths):
+        # because sometimes there are no spaces between the header of each column
+        # sanitize the headers
+        ci = np.array([0] + colwidths).cumsum()
+        # remember zero based indexing
+        ci[1:] = ci[1:] - 1
+        columns = []
+        for i in range(len(ci)-1):
+            # also lose the index in the header
+            colname = line[ci[i]:ci[i+1]][:-2].replace('#', '').strip()
+            columns.append(colname)
+        return columns
+
+    line_header, line_data = get_lines(fname)
+    colwidths = get_col_widths(line_data)
+    columns = get_col_names(line_header, colwidths)
+    # gradients have duplicate columns: set for with wake updated
+    # and another with frozen wake assumption, append _fw to the columns
+    # used to indicate frozen wake gradients
+    if 'dQ/dt [kNm/deg]' in columns:
+        i1 = columns.index('dQ/dt [kNm/deg]')
+        if i1 > -1:
+            i2 = columns.index('dQ/dt [kNm/deg]', i1+1)
+        if i2 > i1:
+            for i in range(i2, len(columns)):
+                columns[i] = columns[i].replace(' [', '_fw [')
+
+    df = pd.read_fwf(fname, widths=colwidths, comment='#', header=None,
+                     names=columns)
+    units = regex_units.findall(''.join(columns))
+
+    return df, units
 
 
 class InductionResults(object):
     """Column width can vary between versions and with/withouth gradient in
     output. Use get_col_width() for automatic detection.
     """
-    def __init__(self, colwidth=14):
+    def __init__(self, colwidth=None):
         """with gradients currently ind has columns width of 28 instead of 14!
         """
         self.cw = colwidth
@@ -76,22 +106,39 @@ class InductionResults(object):
     def get_col_width(self, fname):
         # figure out column width
         with open(fname) as fid:
-            fid.readline()
+            # line1 contains the header
+            line1 = fid.readline()
+            # line2 contains the numerical data
             line2 = fid.readline()
-        cols = misc.remove_items(line2.split(' '), '')
-        if len(cols[0]) > 15:
-            self.cw = 28
+
+        # it is very annoying that various files can have various column widths
+        # also, the first column is one character wider than the rest
+        i0 = re.search(r'\S',line2).start()
+        self.i1_col1 = line2[i0:].find(' ') + i0
+        # number of columns can also be different (gradients or not, node displ)
+        nr_cols = int(round(len(line2)/self.i1_col1, 0))
+        self.colwidths = [self.i1_col1+1] + [self.i1_col1]*(nr_cols-1)
+
+        # because sometimes there are no spaces between the header of each column
+        # sanitize the headers
+        ci = np.array([0] + self.colwidths).cumsum()
+        # remember zero based indexing
+        ci[1:] = ci[1:] - 1
+        self.columns = []
+        for i in range(len(ci)-1):
+            # also lose the index in the header
+            colname = line1[ci[i]:ci[i+1]][:-2].replace('#', '').strip()
+            self.columns.append(colname)
 
     def read(self, fname):
-        self.data = np.loadtxt(fname)
+        if self.cw is None:
+            self.get_col_width(fname)
         self.wsp = int(fname.split('_u')[-1][:-4]) / 1000.0
-        try:
-            self.df_data = pd.read_fwf(fname, header=0, widths=[self.cw]*38)
-        except:
-            self.df_data = pd.read_fwf(fname, header=0, widths=[self.cw]*34)
-        # sanitize the headers
-        cols = self.df_data.columns
-        self.df_data.columns = [k[:-2].replace('#', '').strip() for k in cols]
+        # self.df_data = pd.read_fwf(fname, header=0, widths=self.colwidths)
+        self.df_data = pd.read_fwf(fname, skiprows=0, widths=self.colwidths)
+        # we can not rely on read_fwf for the column names since for some
+        # columns there is no space between one column and the next one.
+        self.df_data.columns = self.columns
 
 
 class results(object):
@@ -178,10 +225,9 @@ class results(object):
         """for results withouth gradients, colwidth=14, otherwise 28. Set to
         None to derive automatically.
         """
-        self.ind = InductionResults(colwidth=colwidth)
-        if colwidth is None:
-            self.ind.get_col_width(fname)
-        self.ind.read(fname)
+        ind = InductionResults(colwidth=colwidth)
+        ind.read(fname)
+        return ind.df_data
 
     def load_amp(self, fname):
 
diff --git a/wetb/prepost/mplutils.py b/wetb/prepost/mplutils.py
index 96f7ae63608ae9a99370739855ca3e31bda3fb37..94bda4e42d4f800b553c9160358307eebe97dcf3 100644
--- a/wetb/prepost/mplutils.py
+++ b/wetb/prepost/mplutils.py
@@ -50,7 +50,7 @@ def make_fig(nrows=1, ncols=1, figsize=(12,8), dpi=120):
     return subplots(nrows=nrows, ncols=ncols, figsize=figsize, dpi=dpi)
 
 
-def subplots(nrows=1, ncols=1, figsize=(12,8), dpi=120, num=0):
+def subplots(nrows=1, ncols=1, figsize=(12,8), dpi=120, num=0, subplot_kw={}):
     """
 
     Equivalent function of pyplot.subplots(). The difference is that this one
@@ -76,7 +76,7 @@ def subplots(nrows=1, ncols=1, figsize=(12,8), dpi=120, num=0):
     plt_nr = 1
     for row in range(nrows):
         for col in range(ncols):
-            axes[row,col] = fig.add_subplot(nrows, ncols, plt_nr)
+            axes[row,col] = fig.add_subplot(nrows, ncols, plt_nr, **subplot_kw)
             plt_nr += 1
     return fig, axes
 
@@ -193,7 +193,8 @@ def p4psd(ax, rpm_mean, p_max=17, y_pos_rel=0.25, color='g', ls='--',
 
 
 def peaks(ax, freqs, Pxx, fn_max, min_h, nr_peaks=15, col_line='k',
-          ypos_mean=0.14, col_text='w', ypos_delta=0.06, bbox_alpha=0.5):
+          ypos_mean=0.14, col_text='w', ypos_delta=0.06, bbox_alpha=0.5,
+          verbose=False):
     """
     indicate the peaks
     """
@@ -204,11 +205,13 @@ def peaks(ax, freqs, Pxx, fn_max, min_h, nr_peaks=15, col_line='k',
     Pxx_log = 10.*np.log10(Pxx)
     try:
         pi = wafo.misc.findpeaks(Pxx_log, n=len(Pxx), min_h=min_h)
-        print('len Pxx', len(Pxx_log), 'nr of peaks:', len(pi))
+        if verbose:
+            print('len Pxx', len(Pxx_log), 'nr of peaks:', len(pi))
     except Exception as e:
-        print('len Pxx', len(Pxx_log))
-        print('*** wafo.misc.findpeaks FAILED ***')
-        print(e)
+        if verbose:
+            print('len Pxx', len(Pxx_log))
+            print('*** wafo.misc.findpeaks FAILED ***')
+            print(e)
         return ax
 
     # only take the nr_peaks most significant heights
@@ -220,7 +223,7 @@ def peaks(ax, freqs, Pxx, fn_max, min_h, nr_peaks=15, col_line='k',
 #    ax.plot(freqs[pi], Pxx[:xlim][pi], 'o')
     # and mark all peaks
     switch = True
-    yrange_plot = Pxx_log.max() - Pxx_log.min()
+    # yrange_plot = Pxx_log.max() - Pxx_log.min()
     for peak_nr, ii in enumerate(pi):
         freq_peak = freqs[ii]
 #        Pxx_peak = Pxx_log[ii]
@@ -232,13 +235,13 @@ def peaks(ax, freqs, Pxx, fn_max, min_h, nr_peaks=15, col_line='k',
             # locate at the min value (down the plot), but a little
             # lower so it does not interfere with the plot itself
             # if ax.set_yscale('log') True, set log values as coordinates!
-            text_ypos = Pxx_log.min() + yrange_plot*0.1
+            # text_ypos = Pxx_log.min() + yrange_plot*0.1
             text_ypos = ypos_mean + ypos_delta
             switch = False
         else:
             # put it a little lower than the max value so it does
             # not mess with the title (up the plot)
-            text_ypos = Pxx_log.min() - yrange_plot*0.4
+            # text_ypos = Pxx_log.min() - yrange_plot*0.4
             text_ypos = ypos_mean - ypos_delta
             switch = True
 #        print('%2.2e %2.2e %2.2e' % (yrange_plot, Pxx[:xlim].max(), Pxx[:xlim].min())
@@ -313,7 +316,7 @@ def psd(ax, time, sig, nfft=None, res_param=250, f0=0, f1=None, nr_peaks=10,
 def time_psd(results, labels, axes, alphas=[1.0, 0.7], colors=['k-', 'r-'],
              NFFT=None, res_param=250, f0=0, f1=None, nr_peaks=10, min_h=15,
              mark_peaks=False, xlabels=['frequency [Hz]', 'time [s]'],
-             ypos_peaks=[0.04, 0.9], ypos_peaks_delta=0.12):
+             ypos_peaks=[0.3, 0.9], ypos_peaks_delta=[0.12, 0.12]):
     """
     Plot time series and the corresponding PSD of the channel.
 
@@ -356,7 +359,8 @@ def time_psd(results, labels, axes, alphas=[1.0, 0.7], colors=['k-', 'r-'],
         axes[0] = psd(axes[0], time, data, nfft=nfft, res_param=res_param,
                       f0=f0, f1=f1, nr_peaks=nr_peaks, min_h=min_h,
                       mark_peaks=mark_peaks, col=col, label=label, alpha=alpha,
-                      ypos_peaks=ypos_peaks, ypos_peaks_delta=ypos_peaks_delta)
+                      ypos_peaks_delta=ypos_peaks_delta[i],
+                      ypos_peaks=ypos_peaks[i])
 
         # plotting time series
         axes[1].plot(time, data, col, label=label, alpha=alpha)
diff --git a/wetb/prepost/simchunks.py b/wetb/prepost/simchunks.py
index b06f923c234eb5bfb8745fff78058cdca155b736..abb00f702267cc51d535d652bc1d42a013275be4 100644
--- a/wetb/prepost/simchunks.py
+++ b/wetb/prepost/simchunks.py
@@ -37,7 +37,8 @@ from wetb.prepost.Simulations import Cases
 def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
                           nr_procs_series=9, queue='workq', pyenv='wetb_py3',
                           walltime='24:00:00', chunks_dir='zip-chunks-jess',
-                          compress=False):
+                          compress=False, wine_64bit=False, wine_arch='win32',
+                          wine_prefix='~/.wine32'):
     """Group a large number of simulations htc and pbs launch scripts into
     different zip files so we can run them with find+xargs on various nodes.
     """
@@ -132,22 +133,39 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
 
         return fname, df_index
 
-    pbs_tmplate ="""
-### Standard Output
-#PBS -N [job_name]
-#PBS -o [std_out]
-### Standard Error
-#PBS -e [std_err]
-#PBS -W umask=[umask]
-### Maximum wallclock time format HOURS:MINUTES:SECONDS
-#PBS -l walltime=[walltime]
-#PBS -l nodes=[nodes]:ppn=[ppn]
-### Queue name
-#PBS -q [queue]
-
-"""
-
-    def make_pbs_chunks(df, ii, sim_id, run_dir, model_zip, compress=False):
+    pbs_tmplate = "\n"
+    pbs_tmplate += "### Standard Output\n"
+    pbs_tmplate += "#PBS -N [job_name]\n"
+    pbs_tmplate += "#PBS -o [std_out]\n"
+    pbs_tmplate += "### Standard Error\n"
+    pbs_tmplate += "#PBS -e [std_err]\n"
+    pbs_tmplate += "#PBS -W umask=[umask]\n"
+    pbs_tmplate += "### Maximum wallclock time format HOURS:MINUTES:SECONDS\n"
+    pbs_tmplate += "#PBS -l walltime=[walltime]\n"
+    pbs_tmplate += "#PBS -l nodes=[nodes]:ppn=[ppn]\n"
+    pbs_tmplate += "### Queue name\n"
+    pbs_tmplate += "#PBS -q [queue]\n"
+    pbs_tmplate += "\n"
+
+    # FIXME: this causes troubles on CI runner for the tests (line endings?)
+#     pbs_tmplate = """
+# ### Standard Output
+# #PBS -N [job_name]
+# #PBS -o [std_out]
+# ### Standard Error
+# #PBS -e [std_err]
+# #PBS -W umask=[umask]
+# ### Maximum wallclock time format HOURS:MINUTES:SECONDS
+# #PBS -l walltime=[walltime]
+# #PBS -l nodes=[nodes]:ppn=[ppn]
+# ### Queue name
+# #PBS -q [queue]
+
+# """
+
+    def make_pbs_chunks(df, ii, sim_id, run_dir, model_zip, compress=False,
+                        wine_64bit=False, wine_arch='win32',
+                        wine_prefix='~/.wine32'):
         """Create a PBS that:
             * copies all required files (zip chunk) to scratch disk
             * copies all required turbulence files to scratch disk
@@ -159,18 +177,28 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
         cmd_xargs = '/home/MET/sysalt/bin/xargs'
         jobid = '%s_chnk_%05i' % (sim_id, ii)
 
+        wineparam = (wine_arch, wine_prefix)
+        if wine_64bit:
+            wineparam = ('win64', '~/.wine')
+
         pbase = os.path.join('/scratch','$USER', '$PBS_JOBID', '')
         post_dir_base = post_dir.split(sim_id)[1]
         if post_dir_base[0] == os.path.sep:
             post_dir_base = post_dir_base[1:]
 
-        pbs_in_base = os.path.commonpath(df['[pbs_in_dir]'].unique().tolist())
+        # FIXME: commonpath was only added in Python 3.5, but CI runner is old
+        try:
+            compath = os.path.commonpath
+        except AttributeError:
+            compath = os.path.commonprefix
+
+        pbs_in_base = compath(df['[pbs_in_dir]'].unique().tolist())
         pbs_in_base = os.path.join(pbs_in_base, '')
-        htc_base = os.path.commonpath(df['[htc_dir]'].unique().tolist())
+        htc_base = compath(df['[htc_dir]'].unique().tolist())
         htc_base = os.path.join(htc_base, '')
-        res_base = os.path.commonpath(df['[res_dir]'].unique().tolist())
+        res_base = compath(df['[res_dir]'].unique().tolist())
         res_base = os.path.join(res_base, '')
-        log_base = os.path.commonpath(df['[log_dir]'].unique().tolist())
+        log_base = compath(df['[log_dir]'].unique().tolist())
         log_base = os.path.join(log_base, '')
 
         # =====================================================================
@@ -188,21 +216,22 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
 
         # =====================================================================
         # activate the python environment
-        pbs += 'echo "activate python environment %s"\n' % pyenv
-        pbs += 'source /home/python/miniconda3/bin/activate %s\n' % pyenv
-        # sometimes activating an environment fails due to a FileExistsError
-        # is this because it is activated at the same time on another node?
-        # check twice if the environment got activated for real
-        pbs += 'echo "CHECK 2x IF %s IS ACTIVE, IF NOT TRY AGAIN"\n' % pyenv
-        pbs += 'CMD=\"from distutils.sysconfig import get_python_lib;'
-        pbs += 'print (get_python_lib().find(\'%s\'))"\n' % pyenv
-        pbs += 'ACTIVATED=`python -c "$CMD"`\n'
-        pbs += 'if [ $ACTIVATED -eq -1 ]; then source activate %s;fi\n' % pyenv
-        pbs += 'ACTIVATED=`python -c "$CMD"`\n'
-        pbs += 'if [ $ACTIVATED -eq -1 ]; then source activate %s;fi\n' % pyenv
+        if pyenv is not None:
+            pbs += 'echo "activate python environment %s"\n' % pyenv
+            pbs += 'source /home/python/miniconda3/bin/activate %s\n' % pyenv
+            # sometimes activating an environment fails due to a FileExistsError
+            # is this because it is activated at the same time on another node?
+            # check twice if the environment got activated for real
+            pbs += 'echo "CHECK 2x IF %s IS ACTIVE, IF NOT TRY AGAIN"\n' % pyenv
+            pbs += 'CMD=\"from distutils.sysconfig import get_python_lib;'
+            pbs += 'print (get_python_lib().find(\'%s\'))"\n' % pyenv
+            pbs += 'ACTIVATED=`python -c "$CMD"`\n'
+            pbs += 'if [ $ACTIVATED -eq -1 ]; then source activate %s;fi\n' % pyenv
+            pbs += 'ACTIVATED=`python -c "$CMD"`\n'
+            pbs += 'if [ $ACTIVATED -eq -1 ]; then source activate %s;fi\n' % pyenv
 
         # =====================================================================
-        # create all necessary directories at CPU_NR dirs, turb db dirs, sim_id
+        # create all necessary directories at CPU_NR dirs
         # browse to scratch directory
         pbs += '\necho "%s"\n' % ('-'*70)
         pbs += 'cd %s\n' % pbase
@@ -212,22 +241,6 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
         pbs += 'mkdir -p %s\n' % os.path.join(pbase, sim_id, '')
         for k in range(ppn):
             pbs += 'mkdir -p %s\n' % os.path.join(pbase, '%i' % k, '')
-        # pretend to be on the scratch sim_id directory to maintain the same
-        # database turb structure
-        pbs += '\necho "%s"\n' % ('-'*70)
-        pbs += 'cd %s\n' % os.path.join(pbase, sim_id, '')
-        pbs += "echo 'current working directory:'\n"
-        pbs += 'pwd\n'
-        pbs += 'echo "create turb_db directories"\n'
-        db_dir_tags = ['[turb_db_dir]', '[meand_db_dir]', '[wake_db_dir]']
-        turb_dirs = []
-        for tag in db_dir_tags:
-            for dirname in set(df[tag].unique().tolist()):
-                if not dirname or dirname.lower() not in ['false', 'none']:
-                    turb_dirs.append(dirname)
-        turb_dirs = set(turb_dirs)
-        for dirname in turb_dirs:
-            pbs += 'mkdir -p %s\n' % os.path.join(dirname, '')
 
         # =====================================================================
         # get the zip-chunk file from the PBS_O_WORKDIR
@@ -241,14 +254,62 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
         rpl = (os.path.join('./', chunks_dir, jobid), os.path.join(pbase, ''))
         pbs += 'cp %s.zip %s\n' % rpl
 
+        # =====================================================================
+        # unzip to all cpu dirs
+        pbs += '\necho "%s"\n' % ('-'*70)
+        pbs += 'cd %s\n' % pbase
+        pbs += "echo 'current working directory:'\n"
+        pbs += 'pwd\n'
+        pbs += 'echo "unzip chunk, create dirs in cpu and sim_id folders"\n'
+        # unzip chunk, this contains all relevant folders already, and also
+        # contains files defined in [copyto_files]
+        for k in list(range(ppn)) + [sim_id]:
+            dst = os.path.join('%s' % k, '.')
+            pbs += '/usr/bin/unzip %s -d %s >> /dev/null\n' % (jobid+'.zip', dst)
+
+        # =====================================================================
+        # create all turb_db directories
+        pbs += '\necho "%s"\n' % ('-'*70)
+        pbs += 'cd %s\n' % os.path.join(pbase, sim_id, '')
+        pbs += "echo 'current working directory:'\n"
+        pbs += 'pwd\n'
+        pbs += 'echo "create turb_db directories"\n'
+        turb_db_tags = ['[turb_db_dir]', '[meand_db_dir]', '[wake_db_dir]']
+        turb_db_dirs = []
+        for tag in turb_db_tags:
+            for dirname in set(df[tag].unique().tolist()):
+                dirname_s = str(dirname).replace('.', '').replace('/', '')
+                if dirname_s.lower() not in ['false', 'none', '0']:
+                    turb_db_dirs.append(dirname)
+        turb_db_dirs = set(turb_db_dirs)
+        # create all turb dirs
+        for dirname in turb_db_dirs:
+            pbs += 'mkdir -p %s\n' % os.path.join(dirname, '')
+
+        # =====================================================================
+        # copy required turbulence from db_dir to scratch/db_dirs
         # turb_db_dir might not be set, same for turb_base_name, for those
         # cases we do not need to copy anything from the database to the node
+        pbs += '\necho "%s"\n' % ('-'*70)
+        pbs += 'cd $PBS_O_WORKDIR\n'
+        pbs += "echo 'current working directory:'\n"
+        pbs += 'pwd\n'
         base_name_tags = ['[turb_base_name]', '[meand_base_name]',
                           '[wake_base_name]']
-        for db, base_name in zip(db_dir_tags, base_name_tags):
+        for db, base_name in zip(turb_db_tags, base_name_tags):
             turb_db_dirs = df[db] + df[base_name]
             # When set to None, the DataFrame will have text as None
-            turb_db_src = turb_db_dirs[turb_db_dirs.str.find('None')==-1]
+            # FIXME: CI runner has and old pandas version (v0.14.1)
+            try:
+                turb_db_src = turb_db_dirs[turb_db_dirs.str.find('None')==-1]
+            except AttributeError:
+                # and findall returns list with the search str occuring as
+                # many times as found in the str...
+                # sel should be True if str does NOT occur in turb_db_dirs
+                # meaning if findall returns empty list
+                findall = turb_db_dirs.str.findall('None').tolist()
+                sel = [True if len(k)==0 else False for k in findall]
+                turb_db_src = turb_db_dirs[sel]
             pbs += '\n'
             pbs += '# copy to scratch db directory for %s, %s\n' % (db, base_name)
             for k in turb_db_src.unique():
@@ -256,28 +317,65 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
                 pbs += 'cp %s* %s\n' % (k, os.path.join(dst, '.'))
 
         # =====================================================================
-        # browse back to the scratch directory
+        # to be safe, create all turb dirs in the cpu dirs
         pbs += '\necho "%s"\n' % ('-'*70)
-        pbs += 'cd %s\n' % pbase
+        pbs += 'cd %s\n' % os.path.join(pbase, '')
         pbs += "echo 'current working directory:'\n"
         pbs += 'pwd\n'
-        pbs += 'echo "unzip chunk, create dirs in cpu and sim_id folders"\n'
-        # unzip chunk, this contains all relevant folders already, and also
-        # contains files defined in [copyto_files]
-        for k in list(range(ppn)) + [sim_id]:
-            dst = os.path.join('%s' % k, '.')
-            pbs += '/usr/bin/unzip %s -d %s >> /dev/null\n' % (jobid+'.zip', dst)
+        pbs += 'echo "create turb directories in CPU dirs"\n'
+        turb_dir_tags = ['[turb_dir]', '[meand_dir]', '[wake_dir]']
+        turb_dirs = []
+        for tag in turb_dir_tags:
+            for dirname in set(df[tag].unique().tolist()):
+                dirname_s = str(dirname).replace('.', '').replace('/', '')
+                if dirname_s.lower() not in ['false', 'none', '0']:
+                    turb_dirs.append(dirname)
+        turb_dirs = set(turb_dirs)
+        for k in list(range(ppn)):
+            for dirname in turb_dirs:
+                pbs += 'mkdir -p %s\n' % os.path.join(str(k), dirname, '')
 
-        # create hard links for all the turbulence files
-        turb_dir_base = os.path.join(os.path.commonpath(list(turb_dirs)), '')
+        # =====================================================================
+        # symlink everything from the turb_db_dir to the cpu/turb_dir
         pbs += '\necho "%s"\n' % ('-'*70)
-        pbs += 'cd %s\n' % pbase
+        pbs += 'cd %s\n' % os.path.join(pbase, sim_id, '')
         pbs += "echo 'current working directory:'\n"
         pbs += 'pwd\n'
-        pbs += 'echo "copy all turb files into CPU dirs"\n'
-        for k in range(ppn):
-            rpl = (os.path.relpath(os.path.join(sim_id, turb_dir_base)), k)
-            pbs += 'find %s -iname *.bin -exec cp {} %s/{} \\;\n' % rpl
+        pbs += 'echo "Link all turb files into CPU dirs"\n'
+        for db_dir, turb_dir in zip(turb_db_tags, turb_dir_tags):
+            # FIXME: this needs to be written nicer. We should be able to
+            # select from df non-defined values so we can exclude them
+            # now it seems they are either None, False or 0 in either
+            # boolean, str or int formats
+            nogo = ['false', 'none', '0']
+            try:
+                symlink_dirs = df[db_dir] + '_*_'
+                symlink_dirs = symlink_dirs + df[turb_dir]
+            except:
+                continue
+            for symlink in symlink_dirs.unique().tolist():
+                db_dir, turb_dir = symlink.split('_*_')
+                db_dir_s = db_dir.replace('.', '').replace('/', '').lower()
+                turb_dir_s = turb_dir.replace('.', '').replace('/', '').lower()
+                if db_dir_s in nogo or turb_dir_s in nogo:
+                    continue
+                db_dir_abs = os.path.join(pbase, sim_id, db_dir, '')
+                for k in list(range(ppn)):
+                    turb_dir_abs = os.path.join(pbase, sim_id, str(k),
+                                                turb_dir, '')
+                    rpl = (db_dir_abs, turb_dir_abs)
+                    pbs += 'find %s -iname "*.bin" -exec ln -s {} %s \\;\n' % rpl
+
+        # copy all from scratch/turb_db to cpu/turb
+        # turb_dir_base = os.path.join(compath(list(turb_dirs)), '')
+        # pbs += '\necho "%s"\n' % ('-'*70)
+        # pbs += 'cd %s\n' % os.path.join(pbase, sim_id, '')
+        # pbs += "echo 'current working directory:'\n"
+        # pbs += 'pwd\n'
+        # pbs += 'echo "Link all turb files into CPU dirs"\n'
+        # for k in range(ppn):
+        #     rpl = (os.path.relpath(os.path.join(sim_id, turb_dir_base)), k)
+        #     pbs += 'find %s -iname "*.bin" -exec cp {} %s/{} \\;\n' % rpl
 
         # =====================================================================
         # finally we can run find+xargs!!!
@@ -287,7 +385,7 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
         pbs += "echo 'current working directory:'\n"
         pbs += 'pwd\n'
         pbs += 'echo "START RUNNING JOBS IN find+xargs MODE"\n'
-        pbs += 'WINEARCH=win32 WINEPREFIX=~/.wine32 winefix\n'
+        pbs += 'WINEARCH=%s WINEPREFIX=%s winefix\n' % wineparam
         pbs += '# run all the PBS *.p files in find+xargs mode\n'
         pbs += 'echo "following cases will be run from following path:"\n'
         pbs += 'echo "%s"\n' % (os.path.join(sim_id, pbs_in_base))
@@ -365,7 +463,8 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
         pbs += '    --exclude *.htc \n'
         # when using -u, htc and pbs_in files should be ignored
 #        pbs += 'time cp -ru %s $PBS_O_WORKDIR/\n' % tmp
-        pbs += 'source deactivate\n'
+        if pyenv is not None:
+            pbs += 'source deactivate\n'
         pbs += 'echo "DONE !!"\n'
         pbs += '\necho "%s"\n' % ('-'*70)
         pbs += '# in case wine has crashed, kill any remaining wine servers\n'
@@ -389,7 +488,11 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
     cc = Cases(cases)
     df = cc.cases2df()
     # sort on the specified values in the given columns
-    df.sort_values(by=sort_by_values, inplace=True)
+    # FIXME: sort_values was only added in Pandas 0.17, but CI runner is old
+    try:
+        df.sort_values(by=sort_by_values, inplace=True)
+    except AttributeError:
+        df.sort(columns=sort_by_values, inplace=True)
 
     # create the directory to store all zipped chunks
     try:
@@ -413,7 +516,8 @@ def create_chunks_htc_pbs(cases, sort_by_values=['[Windspeed]'], ppn=20, i0=0,
     for ii, dfi in enumerate(df_iter):
         fname, ind = make_zip_chunks(dfi, i0+ii, sim_id, run_dir, model_zip)
         make_pbs_chunks(dfi, i0+ii, sim_id, run_dir, model_zip,
-                        compress=compress)
+                        compress=compress, wine_64bit=wine_64bit,
+                        wine_arch=wine_arch, wine_prefix=wine_prefix)
         df_ind = df_ind.append(ind)
         print(fname)
 
diff --git a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp10_s100.p b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp10_s100.p
index 5fed071645069f93274c75bea5670a86862c0732..a2f204a876a4d00b188b8f126d16933e67940b6d 100644
--- a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp10_s100.p
+++ b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp10_s100.p
@@ -60,7 +60,7 @@ echo ""
 # evaluates to true if LAUNCH_PBS_MODE is NOT set
 if [ -z ${LAUNCH_PBS_MODE+x} ] ; then
   echo "execute HAWC2, fork to background"
-  time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp10_s100.htc  &
+  time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp10_s100.htc &
   wait
 # ==============================================================================
 
@@ -68,10 +68,7 @@ if [ -z ${LAUNCH_PBS_MODE+x} ] ; then
 # find+xargs mode: 1 PBS job, multiple cases
 else
   echo "execute HAWC2, do not fork and wait"
-  time WINEARCH=win32 WINEPREFIX=~/.wine32 numactl --physcpubind=$CPU_NR wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp10_s100.htc 
-  echo "POST-PROCESSING"
-  python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp10_s100.log')"
-  python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp10_s100', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')"
+  (time WINEARCH=win32 WINEPREFIX=~/.wine32 numactl --physcpubind=$CPU_NR wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp10_s100.htc) 2>&1 | tee pbs_out/dlc01_demos/dlc01_steady_wsp10_s100.err.out 
 fi
 # ------------------------------------------------------------------------------
 
@@ -115,12 +112,13 @@ else
   cd /scratch/$USER/$PBS_JOBID/$CPU_NR/
   rsync -a --remove-source-files res/dlc01_demos/. ../remote/res/dlc01_demos/.
   rsync -a --remove-source-files logfiles/dlc01_demos/. ../remote/logfiles/dlc01_demos/.
+  rsync -a --remove-source-files pbs_out/dlc01_demos/. ../remote/pbs_out/dlc01_demos/.
   rsync -a --remove-source-files animation/. ../remote/animation/.
 
   echo ""
   echo "COPY BACK TURB IF APPLICABLE"
   cd turb/
-  for i in `ls *.bin`; do  if [ -e ../../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i ../../turb/; fi; done
+  for i in `ls *.bin`; do  if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done
   cd /scratch/$USER/$PBS_JOBID/$CPU_NR/
   echo "END COPY BACK TURB"
   echo ""
diff --git a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp11_s101.p b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp11_s101.p
index b2db53ba4f4a4b07fe83d39dec0f3b9b8b695c86..33f02992f48ef4ab61fd1218e8dc49b174c1262e 100644
--- a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp11_s101.p
+++ b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp11_s101.p
@@ -60,7 +60,7 @@ echo ""
 # evaluates to true if LAUNCH_PBS_MODE is NOT set
 if [ -z ${LAUNCH_PBS_MODE+x} ] ; then
   echo "execute HAWC2, fork to background"
-  time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp11_s101.htc  &
+  time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp11_s101.htc &
   wait
 # ==============================================================================
 
@@ -68,10 +68,7 @@ if [ -z ${LAUNCH_PBS_MODE+x} ] ; then
 # find+xargs mode: 1 PBS job, multiple cases
 else
   echo "execute HAWC2, do not fork and wait"
-  time WINEARCH=win32 WINEPREFIX=~/.wine32 numactl --physcpubind=$CPU_NR wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp11_s101.htc 
-  echo "POST-PROCESSING"
-  python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp11_s101.log')"
-  python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp11_s101', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')"
+  (time WINEARCH=win32 WINEPREFIX=~/.wine32 numactl --physcpubind=$CPU_NR wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp11_s101.htc) 2>&1 | tee pbs_out/dlc01_demos/dlc01_steady_wsp11_s101.err.out 
 fi
 # ------------------------------------------------------------------------------
 
@@ -115,12 +112,13 @@ else
   cd /scratch/$USER/$PBS_JOBID/$CPU_NR/
   rsync -a --remove-source-files res/dlc01_demos/. ../remote/res/dlc01_demos/.
   rsync -a --remove-source-files logfiles/dlc01_demos/. ../remote/logfiles/dlc01_demos/.
+  rsync -a --remove-source-files pbs_out/dlc01_demos/. ../remote/pbs_out/dlc01_demos/.
   rsync -a --remove-source-files animation/. ../remote/animation/.
 
   echo ""
   echo "COPY BACK TURB IF APPLICABLE"
   cd turb/
-  for i in `ls *.bin`; do  if [ -e ../../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i ../../turb/; fi; done
+  for i in `ls *.bin`; do  if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done
   cd /scratch/$USER/$PBS_JOBID/$CPU_NR/
   echo "END COPY BACK TURB"
   echo ""
diff --git a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp8_noturb.p b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp8_noturb.p
index 4fe00308ffdf95d83e3b21a96f3e6072be7d9831..909462333ad296912dbc7b564d73b3c87466c929 100644
--- a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp8_noturb.p
+++ b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp8_noturb.p
@@ -60,7 +60,7 @@ echo ""
 # evaluates to true if LAUNCH_PBS_MODE is NOT set
 if [ -z ${LAUNCH_PBS_MODE+x} ] ; then
   echo "execute HAWC2, fork to background"
-  time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc  &
+  time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc &
   wait
 # ==============================================================================
 
@@ -68,10 +68,7 @@ if [ -z ${LAUNCH_PBS_MODE+x} ] ; then
 # find+xargs mode: 1 PBS job, multiple cases
 else
   echo "execute HAWC2, do not fork and wait"
-  time WINEARCH=win32 WINEPREFIX=~/.wine32 numactl --physcpubind=$CPU_NR wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc 
-  echo "POST-PROCESSING"
-  python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp8_noturb.log')"
-  python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp8_noturb', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')"
+  (time WINEARCH=win32 WINEPREFIX=~/.wine32 numactl --physcpubind=$CPU_NR wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp8_noturb.htc) 2>&1 | tee pbs_out/dlc01_demos/dlc01_steady_wsp8_noturb.err.out 
 fi
 # ------------------------------------------------------------------------------
 
@@ -115,12 +112,13 @@ else
   cd /scratch/$USER/$PBS_JOBID/$CPU_NR/
   rsync -a --remove-source-files res/dlc01_demos/. ../remote/res/dlc01_demos/.
   rsync -a --remove-source-files logfiles/dlc01_demos/. ../remote/logfiles/dlc01_demos/.
+  rsync -a --remove-source-files pbs_out/dlc01_demos/. ../remote/pbs_out/dlc01_demos/.
   rsync -a --remove-source-files animation/. ../remote/animation/.
 
   echo ""
   echo "COPY BACK TURB IF APPLICABLE"
   cd turb/
-  for i in `ls *.bin`; do  if [ -e ../../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i ../../turb/; fi; done
+  for i in `ls *.bin`; do  if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done
   cd /scratch/$USER/$PBS_JOBID/$CPU_NR/
   echo "END COPY BACK TURB"
   echo ""
diff --git a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp9_noturb.p b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp9_noturb.p
index 237970bb3702b5fb37eeeae9cf553fe2930e3c68..c4a0ee11250ba1e6143a0ba15da29a663ea645ac 100644
--- a/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp9_noturb.p
+++ b/wetb/prepost/tests/data/demo_dlc/ref/pbs_in/dlc01_demos/dlc01_steady_wsp9_noturb.p
@@ -60,7 +60,7 @@ echo ""
 # evaluates to true if LAUNCH_PBS_MODE is NOT set
 if [ -z ${LAUNCH_PBS_MODE+x} ] ; then
   echo "execute HAWC2, fork to background"
-  time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc  &
+  time WINEARCH=win32 WINEPREFIX=~/.wine32 wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc &
   wait
 # ==============================================================================
 
@@ -68,10 +68,7 @@ if [ -z ${LAUNCH_PBS_MODE+x} ] ; then
 # find+xargs mode: 1 PBS job, multiple cases
 else
   echo "execute HAWC2, do not fork and wait"
-  time WINEARCH=win32 WINEPREFIX=~/.wine32 numactl --physcpubind=$CPU_NR wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc 
-  echo "POST-PROCESSING"
-  python -c "from wetb.prepost import statsdel; statsdel.logcheck('logfiles/dlc01_demos/dlc01_steady_wsp9_noturb.log')"
-  python -c "from wetb.prepost import statsdel; statsdel.calc('res/dlc01_demos/dlc01_steady_wsp9_noturb', no_bins=46, m=[3, 4, 6, 8, 10, 12], neq=20.0, i0=0, i1=None, ftype='.csv')"
+  (time WINEARCH=win32 WINEPREFIX=~/.wine32 numactl --physcpubind=$CPU_NR wine hawc2-latest ./htc/dlc01_demos/dlc01_steady_wsp9_noturb.htc) 2>&1 | tee pbs_out/dlc01_demos/dlc01_steady_wsp9_noturb.err.out 
 fi
 # ------------------------------------------------------------------------------
 
@@ -115,12 +112,13 @@ else
   cd /scratch/$USER/$PBS_JOBID/$CPU_NR/
   rsync -a --remove-source-files res/dlc01_demos/. ../remote/res/dlc01_demos/.
   rsync -a --remove-source-files logfiles/dlc01_demos/. ../remote/logfiles/dlc01_demos/.
+  rsync -a --remove-source-files pbs_out/dlc01_demos/. ../remote/pbs_out/dlc01_demos/.
   rsync -a --remove-source-files animation/. ../remote/animation/.
 
   echo ""
   echo "COPY BACK TURB IF APPLICABLE"
   cd turb/
-  for i in `ls *.bin`; do  if [ -e ../../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i ../../turb/; fi; done
+  for i in `ls *.bin`; do  if [ -e $PBS_O_WORKDIR/../turb/$i ]; then echo "$i exists no copyback"; else echo "$i copyback"; cp $i $PBS_O_WORKDIR/../turb/; fi; done
   cd /scratch/$USER/$PBS_JOBID/$CPU_NR/
   echo "END COPY BACK TURB"
   echo ""
diff --git a/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-gorm/remote_chnk_00000.p b/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-gorm/remote_chnk_00000.p
new file mode 100644
index 0000000000000000000000000000000000000000..d81898a3b7f9eff5fb8aab66e9d52563c17f46d5
--- /dev/null
+++ b/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-gorm/remote_chnk_00000.p
@@ -0,0 +1,181 @@
+
+### Standard Output
+#PBS -N remote_chnk_00000
+#PBS -o ./pbs_out_chunks/remote_chnk_00000.out
+### Standard Error
+#PBS -e ./pbs_out_chunks/remote_chnk_00000.err
+#PBS -W umask=0003
+### Maximum wallclock time format HOURS:MINUTES:SECONDS
+#PBS -l walltime=20:00:00
+#PBS -l nodes=1:ppn=12
+### Queue name
+#PBS -q workq
+
+
+echo "----------------------------------------------------------------------"
+echo "activate python environment wetb_py3"
+source /home/python/miniconda3/bin/activate wetb_py3
+echo "CHECK 2x IF wetb_py3 IS ACTIVE, IF NOT TRY AGAIN"
+CMD="from distutils.sysconfig import get_python_lib;print (get_python_lib().find('wetb_py3'))"
+ACTIVATED=`python -c "$CMD"`
+if [ $ACTIVATED -eq -1 ]; then source activate wetb_py3;fi
+ACTIVATED=`python -c "$CMD"`
+if [ $ACTIVATED -eq -1 ]; then source activate wetb_py3;fi
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+
+echo "create CPU directories on the scratch disk"
+mkdir -p /scratch/$USER/$PBS_JOBID/remote/
+mkdir -p /scratch/$USER/$PBS_JOBID/0/
+mkdir -p /scratch/$USER/$PBS_JOBID/1/
+mkdir -p /scratch/$USER/$PBS_JOBID/2/
+mkdir -p /scratch/$USER/$PBS_JOBID/3/
+mkdir -p /scratch/$USER/$PBS_JOBID/4/
+mkdir -p /scratch/$USER/$PBS_JOBID/5/
+mkdir -p /scratch/$USER/$PBS_JOBID/6/
+mkdir -p /scratch/$USER/$PBS_JOBID/7/
+mkdir -p /scratch/$USER/$PBS_JOBID/8/
+mkdir -p /scratch/$USER/$PBS_JOBID/9/
+mkdir -p /scratch/$USER/$PBS_JOBID/10/
+mkdir -p /scratch/$USER/$PBS_JOBID/11/
+
+echo "----------------------------------------------------------------------"
+cd $PBS_O_WORKDIR
+echo 'current working directory:'
+pwd
+echo "get the zip-chunk file from the PBS_O_WORKDIR"
+cp ./zip-chunks-gorm/remote_chnk_00000.zip /scratch/$USER/$PBS_JOBID/
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+echo "unzip chunk, create dirs in cpu and sim_id folders"
+/usr/bin/unzip remote_chnk_00000.zip -d 0/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 1/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 2/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 3/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 4/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 5/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 6/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 7/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 8/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 9/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 10/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 11/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d remote/. >> /dev/null
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/remote/
+echo 'current working directory:'
+pwd
+echo "create turb_db directories"
+mkdir -p ../turb/
+
+echo "----------------------------------------------------------------------"
+cd $PBS_O_WORKDIR
+echo 'current working directory:'
+pwd
+
+# copy to scratch db directory for [turb_db_dir], [turb_base_name]
+cp ../turb/none* /scratch/$USER/$PBS_JOBID/remote/../turb/.
+cp ../turb/turb_s100_10ms* /scratch/$USER/$PBS_JOBID/remote/../turb/.
+cp ../turb/turb_s101_11ms* /scratch/$USER/$PBS_JOBID/remote/../turb/.
+
+# copy to scratch db directory for [meand_db_dir], [meand_base_name]
+
+# copy to scratch db directory for [wake_db_dir], [wake_base_name]
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+echo "create turb directories in CPU dirs"
+mkdir -p 0/turb/
+mkdir -p 1/turb/
+mkdir -p 2/turb/
+mkdir -p 3/turb/
+mkdir -p 4/turb/
+mkdir -p 5/turb/
+mkdir -p 6/turb/
+mkdir -p 7/turb/
+mkdir -p 8/turb/
+mkdir -p 9/turb/
+mkdir -p 10/turb/
+mkdir -p 11/turb/
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/remote/
+echo 'current working directory:'
+pwd
+echo "Link all turb files into CPU dirs"
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/0/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/1/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/2/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/3/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/4/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/5/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/6/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/7/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/8/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/9/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/10/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/11/turb/ \;
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+echo "START RUNNING JOBS IN find+xargs MODE"
+WINEARCH=win32 WINEPREFIX=~/.wine32 winefix
+# run all the PBS *.p files in find+xargs mode
+echo "following cases will be run from following path:"
+echo "remote/pbs_in/dlc01_demos/"
+export LAUNCH_PBS_MODE=false
+/home/MET/sysalt/bin/find remote/pbs_in/dlc01_demos/ -type f -name '*.p' | sort -z
+
+echo "number of files to be launched: "`find remote/pbs_in/dlc01_demos/ -type f | wc -l`
+/home/MET/sysalt/bin/find remote/pbs_in/dlc01_demos/ -type f -name '*.p' -print0 | sort -z | /home/MET/sysalt/bin/xargs -0 -I{} --process-slot-var=CPU_NR -n 1 -P 12 sh {}
+echo "END OF JOBS IN find+xargs MODE"
+
+
+echo "----------------------------------------------------------------------"
+echo 'total scratch disk usage:'
+du -hs /scratch/$USER/$PBS_JOBID/
+cd /scratch/$USER/$PBS_JOBID/remote
+echo 'current working directory:'
+pwd
+echo "Results saved at sim_id directory:"
+find 
+
+echo "move statsdel into compressed archive"
+find res/dlc01_demos/ -name "*.csv" -print0 | xargs -0 tar --remove-files -rf prepost/statsdel_chnk_00000.tar
+xz -z2 -T 12 prepost/statsdel_chnk_00000.tar
+
+echo "move log analysis into compressed archive"
+find logfiles/dlc01_demos/ -name "*.csv" -print0 | xargs -0 tar --remove-files -rf prepost/loganalysis_chnk_00000.tar
+xz -z2 -T 12 prepost/loganalysis_chnk_00000.tar
+
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+echo "move results back from node scratch/sim_id to origin, but ignore htc, and pbs_in directories."
+echo "copy from remote/* to $PBS_O_WORKDIR/"
+time rsync -au --remove-source-files remote/* $PBS_O_WORKDIR/ \
+    --exclude pbs_in/dlc01_demos/* \
+    --exclude *.htc 
+source deactivate
+echo "DONE !!"
+
+echo "----------------------------------------------------------------------"
+# in case wine has crashed, kill any remaining wine servers
+# caution: ALL the users wineservers will die on this node!
+echo "following wineservers are still running:"
+ps -u $USER -U $USER | grep wineserver
+killall -u $USER wineserver
+exit
diff --git a/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-gorm/remote_chnk_00000.zip b/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-gorm/remote_chnk_00000.zip
new file mode 100644
index 0000000000000000000000000000000000000000..286bbcb3df1c3701910dbc45b42117a01559344a
Binary files /dev/null and b/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-gorm/remote_chnk_00000.zip differ
diff --git a/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-jess/remote_chnk_00000.p b/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-jess/remote_chnk_00000.p
new file mode 100644
index 0000000000000000000000000000000000000000..55f11f24915307d2a0f1ffb4bf7c028cf526481b
--- /dev/null
+++ b/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-jess/remote_chnk_00000.p
@@ -0,0 +1,213 @@
+
+### Standard Output
+#PBS -N remote_chnk_00000
+#PBS -o ./pbs_out_chunks/remote_chnk_00000.out
+### Standard Error
+#PBS -e ./pbs_out_chunks/remote_chnk_00000.err
+#PBS -W umask=0003
+### Maximum wallclock time format HOURS:MINUTES:SECONDS
+#PBS -l walltime=20:00:00
+#PBS -l nodes=1:ppn=20
+### Queue name
+#PBS -q workq
+
+
+echo "----------------------------------------------------------------------"
+echo "activate python environment wetb_py3"
+source /home/python/miniconda3/bin/activate wetb_py3
+echo "CHECK 2x IF wetb_py3 IS ACTIVE, IF NOT TRY AGAIN"
+CMD="from distutils.sysconfig import get_python_lib;print (get_python_lib().find('wetb_py3'))"
+ACTIVATED=`python -c "$CMD"`
+if [ $ACTIVATED -eq -1 ]; then source activate wetb_py3;fi
+ACTIVATED=`python -c "$CMD"`
+if [ $ACTIVATED -eq -1 ]; then source activate wetb_py3;fi
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+
+echo "create CPU directories on the scratch disk"
+mkdir -p /scratch/$USER/$PBS_JOBID/remote/
+mkdir -p /scratch/$USER/$PBS_JOBID/0/
+mkdir -p /scratch/$USER/$PBS_JOBID/1/
+mkdir -p /scratch/$USER/$PBS_JOBID/2/
+mkdir -p /scratch/$USER/$PBS_JOBID/3/
+mkdir -p /scratch/$USER/$PBS_JOBID/4/
+mkdir -p /scratch/$USER/$PBS_JOBID/5/
+mkdir -p /scratch/$USER/$PBS_JOBID/6/
+mkdir -p /scratch/$USER/$PBS_JOBID/7/
+mkdir -p /scratch/$USER/$PBS_JOBID/8/
+mkdir -p /scratch/$USER/$PBS_JOBID/9/
+mkdir -p /scratch/$USER/$PBS_JOBID/10/
+mkdir -p /scratch/$USER/$PBS_JOBID/11/
+mkdir -p /scratch/$USER/$PBS_JOBID/12/
+mkdir -p /scratch/$USER/$PBS_JOBID/13/
+mkdir -p /scratch/$USER/$PBS_JOBID/14/
+mkdir -p /scratch/$USER/$PBS_JOBID/15/
+mkdir -p /scratch/$USER/$PBS_JOBID/16/
+mkdir -p /scratch/$USER/$PBS_JOBID/17/
+mkdir -p /scratch/$USER/$PBS_JOBID/18/
+mkdir -p /scratch/$USER/$PBS_JOBID/19/
+
+echo "----------------------------------------------------------------------"
+cd $PBS_O_WORKDIR
+echo 'current working directory:'
+pwd
+echo "get the zip-chunk file from the PBS_O_WORKDIR"
+cp ./zip-chunks-jess/remote_chnk_00000.zip /scratch/$USER/$PBS_JOBID/
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+echo "unzip chunk, create dirs in cpu and sim_id folders"
+/usr/bin/unzip remote_chnk_00000.zip -d 0/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 1/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 2/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 3/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 4/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 5/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 6/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 7/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 8/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 9/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 10/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 11/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 12/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 13/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 14/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 15/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 16/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 17/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 18/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d 19/. >> /dev/null
+/usr/bin/unzip remote_chnk_00000.zip -d remote/. >> /dev/null
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/remote/
+echo 'current working directory:'
+pwd
+echo "create turb_db directories"
+mkdir -p ../turb/
+
+echo "----------------------------------------------------------------------"
+cd $PBS_O_WORKDIR
+echo 'current working directory:'
+pwd
+
+# copy to scratch db directory for [turb_db_dir], [turb_base_name]
+cp ../turb/none* /scratch/$USER/$PBS_JOBID/remote/../turb/.
+cp ../turb/turb_s100_10ms* /scratch/$USER/$PBS_JOBID/remote/../turb/.
+cp ../turb/turb_s101_11ms* /scratch/$USER/$PBS_JOBID/remote/../turb/.
+
+# copy to scratch db directory for [meand_db_dir], [meand_base_name]
+
+# copy to scratch db directory for [wake_db_dir], [wake_base_name]
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+echo "create turb directories in CPU dirs"
+mkdir -p 0/turb/
+mkdir -p 1/turb/
+mkdir -p 2/turb/
+mkdir -p 3/turb/
+mkdir -p 4/turb/
+mkdir -p 5/turb/
+mkdir -p 6/turb/
+mkdir -p 7/turb/
+mkdir -p 8/turb/
+mkdir -p 9/turb/
+mkdir -p 10/turb/
+mkdir -p 11/turb/
+mkdir -p 12/turb/
+mkdir -p 13/turb/
+mkdir -p 14/turb/
+mkdir -p 15/turb/
+mkdir -p 16/turb/
+mkdir -p 17/turb/
+mkdir -p 18/turb/
+mkdir -p 19/turb/
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/remote/
+echo 'current working directory:'
+pwd
+echo "Link all turb files into CPU dirs"
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/0/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/1/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/2/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/3/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/4/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/5/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/6/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/7/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/8/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/9/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/10/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/11/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/12/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/13/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/14/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/15/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/16/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/17/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/18/turb/ \;
+find /scratch/$USER/$PBS_JOBID/remote/../turb/ -iname "*.bin" -exec ln -s {} /scratch/$USER/$PBS_JOBID/remote/19/turb/ \;
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+echo "START RUNNING JOBS IN find+xargs MODE"
+WINEARCH=win32 WINEPREFIX=~/.wine32 winefix
+# run all the PBS *.p files in find+xargs mode
+echo "following cases will be run from following path:"
+echo "remote/pbs_in/dlc01_demos/"
+export LAUNCH_PBS_MODE=false
+/home/MET/sysalt/bin/find remote/pbs_in/dlc01_demos/ -type f -name '*.p' | sort -z
+
+echo "number of files to be launched: "`find remote/pbs_in/dlc01_demos/ -type f | wc -l`
+/home/MET/sysalt/bin/find remote/pbs_in/dlc01_demos/ -type f -name '*.p' -print0 | sort -z | /home/MET/sysalt/bin/xargs -0 -I{} --process-slot-var=CPU_NR -n 1 -P 20 sh {}
+echo "END OF JOBS IN find+xargs MODE"
+
+
+echo "----------------------------------------------------------------------"
+echo 'total scratch disk usage:'
+du -hs /scratch/$USER/$PBS_JOBID/
+cd /scratch/$USER/$PBS_JOBID/remote
+echo 'current working directory:'
+pwd
+echo "Results saved at sim_id directory:"
+find 
+
+echo "move statsdel into compressed archive"
+find res/dlc01_demos/ -name "*.csv" -print0 | xargs -0 tar --remove-files -rf prepost/statsdel_chnk_00000.tar
+xz -z2 -T 20 prepost/statsdel_chnk_00000.tar
+
+echo "move log analysis into compressed archive"
+find logfiles/dlc01_demos/ -name "*.csv" -print0 | xargs -0 tar --remove-files -rf prepost/loganalysis_chnk_00000.tar
+xz -z2 -T 20 prepost/loganalysis_chnk_00000.tar
+
+
+echo "----------------------------------------------------------------------"
+cd /scratch/$USER/$PBS_JOBID/
+echo 'current working directory:'
+pwd
+echo "move results back from node scratch/sim_id to origin, but ignore htc, and pbs_in directories."
+echo "copy from remote/* to $PBS_O_WORKDIR/"
+time rsync -au --remove-source-files remote/* $PBS_O_WORKDIR/ \
+    --exclude pbs_in/dlc01_demos/* \
+    --exclude *.htc 
+source deactivate
+echo "DONE !!"
+
+echo "----------------------------------------------------------------------"
+# in case wine has crashed, kill any remaining wine servers
+# caution: ALL the users wineservers will die on this node!
+echo "following wineservers are still running:"
+ps -u $USER -U $USER | grep wineserver
+killall -u $USER wineserver
+exit
diff --git a/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-jess/remote_chnk_00000.zip b/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-jess/remote_chnk_00000.zip
new file mode 100644
index 0000000000000000000000000000000000000000..286bbcb3df1c3701910dbc45b42117a01559344a
Binary files /dev/null and b/wetb/prepost/tests/data/demo_dlc/ref/zip-chunks-jess/remote_chnk_00000.zip differ
diff --git a/wetb/prepost/tests/data/demo_gendlc/DLCs.xlsx b/wetb/prepost/tests/data/demo_gendlc/DLCs.xlsx
new file mode 100644
index 0000000000000000000000000000000000000000..273a5f007d95bcdf11057e110879256d50ab5f0d
Binary files /dev/null and b/wetb/prepost/tests/data/demo_gendlc/DLCs.xlsx differ
diff --git a/wetb/prepost/tests/data/demo_gendlc/DLCs/DLC12.xlsx b/wetb/prepost/tests/data/demo_gendlc/DLCs/DLC12.xlsx
new file mode 100644
index 0000000000000000000000000000000000000000..f162da187fceb4641f07c24393007b1d28dbccc1
Binary files /dev/null and b/wetb/prepost/tests/data/demo_gendlc/DLCs/DLC12.xlsx differ
diff --git a/wetb/prepost/tests/data/demo_gendlc/DLCs/DLC13.xlsx b/wetb/prepost/tests/data/demo_gendlc/DLCs/DLC13.xlsx
new file mode 100644
index 0000000000000000000000000000000000000000..f8e58345985a5a9c3dcea1e044cdab5345c2a650
Binary files /dev/null and b/wetb/prepost/tests/data/demo_gendlc/DLCs/DLC13.xlsx differ
diff --git a/wetb/prepost/tests/data/dtu10mw_nofull.pwr b/wetb/prepost/tests/data/dtu10mw_nofull.pwr
new file mode 100644
index 0000000000000000000000000000000000000000..dcc819d93b054ad9aa3ee231b98ba6ac43e62890
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nofull.pwr
@@ -0,0 +1,22 @@
+ #        V [m/s]  1           P [kW]  2           T [kN]  3           Cp [-]  4           Ct [-]  5     Pitch Q [Nm]  6     Flap M [kNm]  7     Edge M [kNm]  8      Pitch [deg]  9      Speed [rpm] 10        Tip x [m] 11        Tip y [m] 12        Tip z [m] 13
+    0.5000000000E+01    0.7970169792E+03    0.3544331376E+03    0.4169253900E+00    0.9270327859E+00    0.9594040831E+04   -0.7285219033E+04    0.4266133176E+03    0.1520000000E+01    0.6000000000E+01    0.1058287730E+00   -0.4570720975E+01    0.8914999301E+02
+    0.6000000000E+01    0.1538224912E+04    0.5028078553E+03    0.4652851459E+00    0.9125415578E+00    0.5381139449E+05   -0.1012310608E+05    0.8194497447E+03    0.4600000000E+00    0.6000000000E+01    0.2331541125E+00   -0.3771950371E+01    0.8918544381E+02
+    0.7000000000E+01    0.2506971009E+04    0.6601028022E+03    0.4772730921E+00    0.8796851381E+00    0.9494399540E+05   -0.1317261132E+05    0.1255760384E+04    0.0000000000E+00    0.6370000000E+01    0.3464163472E+00   -0.2878853577E+01    0.8920985994E+02
+    0.8000000000E+01    0.3761077611E+04    0.8583261420E+03    0.4795983570E+00    0.8756039627E+00    0.1290616014E+06   -0.1709648905E+05    0.1646679988E+04    0.0000000000E+00    0.7280000000E+01    0.4680668290E+00   -0.1686808663E+01    0.8921715254E+02
+    0.9000000000E+01    0.5381732316E+04    0.1080310781E+04    0.4822396840E+00    0.8712284988E+00    0.1701276997E+06   -0.2147779640E+05    0.2092031161E+04    0.0000000000E+00    0.8190000000E+01    0.6022597200E+00   -0.4071172529E+00    0.8919241427E+02
+    0.1000000000E+02    0.7416712473E+04    0.1324854638E+04    0.4851495915E+00    0.8666274836E+00    0.2187145887E+06   -0.2629124663E+05    0.2591677356E+04    0.0000000000E+00    0.9100000000E+01    0.7474581721E+00    0.9382686044E+00    0.8913014778E+02
+    0.1100000000E+02    0.9907484978E+04    0.1546838035E+04    0.4877552803E+00    0.8376760228E+00    0.2812549251E+06   -0.3054233251E+05    0.3279346841E+04    0.0000000000E+00    0.9600000000E+01    0.8928524405E+00    0.2040564708E+01    0.8905163080E+02
+    0.1200000000E+02    0.1061014657E+05    0.1249721989E+04    0.4011774939E+00    0.5670349590E+00    0.2254674006E+06   -0.2399091342E+05    0.3517871551E+04    0.4100000000E+01    0.9600000000E+01    0.8502430701E+00   -0.4898551655E-01    0.8918109828E+02
+    0.1300000000E+02    0.1061208986E+05    0.1077410212E+04    0.3153511352E+00    0.4162151842E+00    0.1829537579E+06   -0.2005519301E+05    0.3521839899E+04    0.6690000000E+01    0.9600000000E+01    0.7105471690E+00   -0.1322639287E+01    0.8921676454E+02
+    0.1400000000E+02    0.1061401890E+05    0.9708527455E+03    0.2525095152E+00    0.3233547837E+00    0.1559014426E+06   -0.1748238187E+05    0.3524730063E+04    0.8620000000E+01    0.9600000000E+01    0.5668305192E+00   -0.2186290412E+01    0.8922206031E+02
+    0.1500000000E+02    0.1061329710E+05    0.8932979867E+03    0.2053212055E+00    0.2592215469E+00    0.1363963165E+06   -0.1551083230E+05    0.3526274664E+04    0.1026000000E+02    0.9600000000E+01    0.4200757269E+00   -0.2868166914E+01    0.8921514105E+02
+    0.1600000000E+02    0.1060155692E+05    0.8319576205E+03    0.1690468823E+00    0.2122553780E+00    0.1211316054E+06   -0.1387742351E+05    0.3523910934E+04    0.1174000000E+02    0.9600000000E+01    0.2690761529E+00   -0.3446315184E+01    0.8920132453E+02
+    0.1700000000E+02    0.1060183963E+05    0.7833358202E+03    0.1409974106E+00    0.1771033654E+00    0.1097254204E+06   -0.1250589079E+05    0.3525345535E+04    0.1310000000E+02    0.9600000000E+01    0.1163384788E+00   -0.3946279752E+01    0.8918325238E+02
+    0.1800000000E+02    0.1059682774E+05    0.7428073023E+03    0.1187798692E+00    0.1498703210E+00    0.1008807108E+06   -0.1130020855E+05    0.3524900846E+04    0.1438000000E+02    0.9600000000E+01   -0.4028360452E-01   -0.4394639668E+01    0.8916198430E+02
+    0.1900000000E+02    0.1061289335E+05    0.7098016174E+03    0.1012000817E+00    0.1285990169E+00    0.9464525489E+05   -0.1025221596E+05    0.3531333519E+04    0.1559000000E+02    0.9600000000E+01   -0.1969844321E+00   -0.4793302157E+01    0.8913884812E+02
+    0.2000000000E+02    0.1060030267E+05    0.6800543291E+03    0.8671201045E-01    0.1112588573E+00    0.8942778021E+05   -0.9275547527E+04    0.3528209496E+04    0.1676000000E+02    0.9600000000E+01   -0.3598763549E+00   -0.5166554397E+01    0.8911339331E+02
+    0.2100000000E+02    0.1061048923E+05    0.6555390118E+03    0.7502015373E-01    0.9733306017E-01    0.8621809447E+05   -0.8410251218E+04    0.3532565660E+04    0.1788000000E+02    0.9600000000E+01   -0.5224480721E+00   -0.5504269566E+01    0.8908699920E+02
+    0.2200000000E+02    0.1060110309E+05    0.6333292288E+03    0.6522967792E-01    0.8573267782E-01    0.8387755891E+05   -0.7596163932E+04    0.3530396023E+04    0.1897000000E+02    0.9600000000E+01   -0.6897955513E+00   -0.5822816349E+01    0.8905901247E+02
+    0.2300000000E+02    0.1058612080E+05    0.6136154737E+03    0.5704072800E-01    0.7604529574E-01    0.8251906318E+05   -0.6837127935E+04    0.3526341412E+04    0.2003000000E+02    0.9600000000E+01   -0.8600401258E+00   -0.6121188447E+01    0.8902990031E+02
+    0.2400000000E+02    0.1061205678E+05    0.5981919525E+03    0.5035738770E-01    0.6812639928E-01    0.8293079728E+05   -0.6168957698E+04    0.3535808055E+04    0.2105000000E+02    0.9600000000E+01   -0.1027553825E+01   -0.6391259215E+01    0.8900089860E+02
+    0.2500000000E+02    0.1061168881E+05    0.5837999848E+03    0.4457969688E-01    0.6131358268E-01    0.8380042886E+05   -0.5525518996E+04    0.3536527702E+04    0.2205000000E+02    0.9600000000E+01   -0.1200272290E+01   -0.6650867142E+01    0.8897053016E+02
diff --git a/wetb/prepost/tests/data/dtu10mw_nofull_defl_u10000.ind b/wetb/prepost/tests/data/dtu10mw_nofull_defl_u10000.ind
new file mode 100644
index 0000000000000000000000000000000000000000..32c1339a43502a7da0fae73072e6f254d88065a4
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nofull_defl_u10000.ind
@@ -0,0 +1,28 @@
+ #             s [m] 1      Element no [-] 2          pos_xR [m] 3          pos_yR [m] 4          pos_zR [m] 5    Elem angle [rad] 6        Elem v_1 [-] 7        Elem v_2 [-] 8        Elem v_3 [-] 9 Node 1 angle [rad] 10     Node 1 v_1 [-] 11     Node 1 v_2 [-] 12     Node 1 v_3 [-] 13 Node 2 angle [rad] 14     Node 2 v_1 [-] 15     Node 2 v_2 [-] 16     Node 2 v_3 [-] 17     Elongation [m] 18
+          0.100000E-01                     1          0.000000E+00          0.000000E+00          0.000000E+00          0.158172E+00         -0.125253E-02          0.500920E-05         -0.999999E+00          0.197910E-03          0.997182E+00          0.750162E-01         -0.109396E-03          0.193668E-03          0.997166E+00          0.752333E-01          0.969652E-04          0.595707E-06
+          0.300003E+01                     2          0.164254E-06          0.197239E-05          0.100006E-01          0.253142E+00          0.152820E-01         -0.308514E-02         -0.999878E+00          0.818351E-03          0.985601E+00          0.168844E+00         -0.901715E-02          0.409381E-03         -0.989040E+00         -0.146549E+00          0.180061E-01          0.176154E-03
+          0.600004E+01                     3         -0.376642E-02         -0.111486E-01          0.300018E+01          0.252974E+00          0.123352E-01         -0.128909E-01         -0.999841E+00          0.797666E-03          0.985814E+00          0.167307E+00         -0.133941E-01          0.376106E-03         -0.987114E+00         -0.157480E+00          0.283865E-01          0.173611E-03
+          0.700027E+01                     4         -0.146239E-01         -0.191804E-01          0.600034E+01          0.252682E+00          0.143807E-01          0.221218E-01         -0.999652E+00          0.429097E-03          0.984487E+00          0.175453E+00          0.115559E-02          0.235472E-04          0.930733E+00          0.365069E+00         -0.214538E-01          0.590958E-04
+          0.870176E+01                     5         -0.954841E-02         -0.234790E-01          0.700061E+01          0.534720E+00         -0.299733E-02         -0.860380E-02         -0.999958E+00          0.626298E-03          0.905337E+00          0.424520E+00         -0.121390E-01          0.123301E-03         -0.924831E+00         -0.375382E+00          0.614574E-01          0.103516E-03
+          0.104085E+02                     6         -0.162971E-01         -0.188364E-01          0.870218E+01          0.943932E+00         -0.312952E-02          0.698715E-02         -0.999971E+00          0.698375E-03          0.699045E+00          0.715050E+00          0.628631E-02          0.126148E-03         -0.808071E+00         -0.588037E+00         -0.351275E-01          0.108088E-03
+          0.122171E+02                     7         -0.443052E-02         -0.194404E-01          0.104090E+02          0.799949E+00          0.325617E-02         -0.172818E-01         -0.999845E+00          0.861246E-03          0.828587E+00          0.559306E+00         -0.248923E-01          0.182549E-03         -0.814243E+00         -0.568582E+00          0.117147E+00          0.120653E-03
+          0.132226E+02                     8         -0.286388E-01         -0.141872E-01          0.122176E+02          0.657887E+00         -0.142400E-02         -0.895068E-02         -0.999959E+00          0.739203E-03          0.906694E+00          0.421755E+00         -0.531928E-02          0.526512E-04          0.923981E+00          0.375301E+00          0.735490E-01          0.693360E-04
+          0.150319E+02                     9         -0.338432E-01         -0.114332E-01          0.132231E+02          0.550937E+00         -0.366666E-02         -0.741762E-02         -0.999966E+00          0.118229E-02          0.949569E+00          0.313554E+00          0.135953E-02          0.264234E-03         -0.942095E+00         -0.335288E+00         -0.631629E-02          0.126677E-03
+          0.182408E+02                    10         -0.398874E-01         -0.597444E-02          0.150325E+02          0.413897E+00         -0.171889E-02         -0.206470E-01         -0.999785E+00          0.225341E-02          0.982334E+00          0.187128E+00         -0.153105E-02          0.106288E-02         -0.980371E+00         -0.197136E+00          0.318752E-02          0.233584E-03
+          0.214384E+02                    11         -0.660698E-01          0.183774E-02          0.182415E+02          0.312177E+00         -0.163859E-01          0.509216E-02         -0.999853E+00          0.284930E-02          0.992559E+00          0.118484E+00          0.280651E-01          0.142123E-02         -0.993096E+00         -0.102906E+00         -0.563128E-01          0.250642E-03
+          0.246337E+02                    12         -0.585361E-01          0.171447E-01          0.214394E+02          0.257385E+00         -0.199416E-01          0.635988E-01         -0.997776E+00          0.342364E-02          0.992371E+00          0.899782E-01          0.842789E-01          0.179423E-02         -0.985546E+00         -0.531264E-01         -0.160864E+00          0.265152E-03
+          0.278269E+02                    13         -0.470817E-02          0.266860E-01          0.246344E+02          0.214675E+00         -0.265124E-01         -0.623253E-01         -0.997704E+00          0.400621E-02          0.998392E+00          0.551469E-01         -0.131365E-01          0.219364E-02         -0.998900E+00         -0.402961E-01          0.239637E-01          0.272371E-03
+          0.310224E+02                    14         -0.451687E-01          0.492804E-01          0.278275E+02          0.188842E+00         -0.481720E-01          0.516235E-01         -0.997504E+00          0.451870E-02          0.996138E+00          0.457130E-01          0.749667E-01          0.262846E-02         -0.991498E+00         -0.177428E-01         -0.128907E+00          0.266006E-03
+          0.342167E+02                    15         -0.114690E-01          0.752540E-01          0.310230E+02          0.173735E+00         -0.946428E-01          0.827302E-01         -0.992068E+00          0.499259E-02          0.994735E+00          0.378695E-01          0.952277E-01          0.300875E-02         -0.987348E+00         -0.129102E-01         -0.158041E+00          0.257938E-03
+          0.402160E+02                    16          0.387313E-01          0.123570E+00          0.342168E+02          0.149416E+00         -0.179544E+00          0.576075E-01         -0.982062E+00          0.999275E-02          0.996645E+00          0.217683E-01          0.788967E-01          0.733509E-02         -0.994087E+00         -0.153884E-01         -0.107492E+00          0.460000E-03
+          0.466212E+02                    17          0.101969E+00          0.280145E+00          0.402142E+02          0.120875E+00         -0.335510E+00          0.987467E-01         -0.936847E+00          0.129283E-01          0.995702E+00          0.976747E-02          0.921007E-01          0.965647E-02         -0.992340E+00         -0.741153E-02         -0.123311E+00          0.453198E-03
+          0.530293E+02                    18          0.192932E+00          0.534968E+00          0.466141E+02          0.995733E-01         -0.575176E+00          0.124415E+00         -0.808513E+00          0.154386E-01          0.995962E+00         -0.757411E-05          0.897709E-01          0.115334E-01         -0.992754E+00         -0.657805E-03         -0.120166E+00          0.410735E-03
+          0.594400E+02                    19          0.286955E+00          0.898201E+00          0.530117E+02          0.931911E-01         -0.821706E+00          0.132755E+00         -0.554234E+00          0.175639E-01          0.996620E+00         -0.784314E-02          0.817805E-01          0.129629E-01         -0.993829E+00          0.519032E-02         -0.110800E+00          0.362857E-03
+          0.658541E+02                    20          0.378825E+00          0.138638E+01          0.594035E+02          0.102966E+00         -0.955811E+00          0.121307E+00         -0.267786E+00          0.189507E-01          0.997340E+00         -0.142658E-01          0.714788E-01          0.135518E-01         -0.994938E+00          0.104459E-01         -0.999418E-01          0.313607E-03
+          0.722716E+02                    21          0.467497E+00          0.201544E+01          0.657863E+02          0.121725E+00         -0.991735E+00          0.108503E+00         -0.684793E-01          0.195289E-01          0.997748E+00         -0.186876E-01          0.644242E-01          0.131310E-01         -0.995300E+00          0.141924E-01         -0.957917E-01          0.262515E-03
+          0.790961E+02                    22          0.555277E+00          0.278793E+01          0.721569E+02          0.141501E+00         -0.995523E+00          0.713038E-01          0.620523E-01          0.189832E-01          0.998842E+00         -0.205817E-01          0.434793E-01          0.106510E-01         -0.996870E+00          0.158702E-01         -0.774484E-01          0.214263E-03
+          0.806018E+02                    23          0.619692E+00          0.374640E+01          0.789136E+02          0.148163E+00         -0.989128E+00          0.810082E-01          0.122732E+00          0.324585E-02          0.998598E+00         -0.228228E-01          0.477590E-01          0.139025E-02         -0.993757E+00          0.446550E-02         -0.111481E+00          0.317275E-04
+          0.821087E+02                    24          0.635696E+00          0.396643E+01          0.804031E+02          0.149447E+00         -0.988847E+00          0.409112E-01          0.143205E+00          0.277414E-02          0.999035E+00         -0.215039E-01          0.382886E-01          0.104491E-02         -0.994821E+00          0.154966E-02         -0.101628E+00          0.265552E-04
+          0.836161E+02                    25          0.642497E+00          0.418840E+01          0.818936E+02          0.149431E+00         -0.987294E+00          0.169329E-01          0.158003E+00          0.221971E-02          0.999120E+00         -0.185684E-01          0.376135E-01          0.696381E-03         -0.992782E+00         -0.394280E-02         -0.119869E+00          0.206861E-04
+          0.851232E+02                    26          0.643676E+00          0.441001E+01          0.833846E+02          0.148884E+00         -0.983888E+00          0.715696E-01          0.163833E+00          0.160278E-02          0.998501E+00         -0.144022E-01          0.528105E-01          0.342010E-03         -0.968803E+00         -0.135564E-01         -0.247463E+00          0.148018E-04
+          0.864694E+02                    27          0.656989E+00          0.463016E+01          0.848755E+02          0.161690E+00         -0.895532E+00          0.426648E+00          0.126466E+00          0.631646E-03          0.993953E+00         -0.791507E-02          0.109520E+00          0.713966E-04          0.246305E+00         -0.234270E-01         -0.968909E+00          0.615937E-05
diff --git a/wetb/prepost/tests/data/dtu10mw_nofull_fext_u10000.ind b/wetb/prepost/tests/data/dtu10mw_nofull_fext_u10000.ind
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f9eb35fa9c60d202ae115acd5f173566fe23
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nofull_fext_u10000.ind
@@ -0,0 +1,28 @@
+ #     s [m] 1    Node [-] 2   Fx_e [N]  3   Fy_e [N]  4   Fz_e [N]  5  Mx_e [Nm]  6  My_e [Nm]  7  Mz_e [Nm]  8   Fx_r [N]  9   Fy_r [N] 10   Fz_r [N] 11  Mx_r [Nm] 12  My_r [Nm] 13  Mz_r [Nm] 14
+  0.100000E-01             2 -0.622052E+05  0.438696E+06 -0.384119E+05 -0.248711E+08 -0.389263E+07  0.127846E+06  0.496814E+05  0.441617E+06 -0.174608E+05 -0.250536E+08  0.245221E+07  0.212624E+06
+  0.300003E+01             3 -0.620667E+05  0.438498E+06 -0.380663E+05 -0.235602E+08 -0.370277E+07  0.185977E+06  0.497759E+05  0.441360E+06 -0.174729E+05 -0.237377E+08  0.230367E+07  0.206941E+06
+  0.600004E+01             4 -0.611646E+05  0.437987E+06 -0.383439E+05 -0.222481E+08 -0.351061E+07 -0.130870E+05  0.500466E+05  0.440719E+06 -0.175026E+05 -0.224192E+08  0.215392E+07  0.204103E+06
+  0.700027E+01             5 -0.180624E+06  0.403245E+06 -0.357113E+05 -0.199872E+08 -0.938520E+07  0.199900E+06  0.502173E+05  0.440088E+06 -0.175304E+05 -0.219805E+08  0.210361E+07  0.198914E+06
+  0.870176E+01             6 -0.325300E+06  0.297977E+06 -0.365138E+05 -0.140969E+08 -0.160092E+08 -0.386728E+05  0.502345E+05  0.439445E+06 -0.175573E+05 -0.212345E+08  0.201833E+07  0.197904E+06
+  0.104085E+02             7 -0.279077E+06  0.340275E+06 -0.361055E+05 -0.156648E+08 -0.133421E+08  0.383527E+06  0.500802E+05  0.438357E+06 -0.176043E+05 -0.204884E+08  0.193274E+07  0.188176E+06
+  0.122171E+02             8 -0.227266E+06  0.375108E+06 -0.357783E+05 -0.167190E+08 -0.105811E+08  0.220570E+06  0.497025E+05  0.436867E+06 -0.176758E+05 -0.197002E+08  0.184337E+07  0.194135E+06
+  0.132226E+02             9 -0.185485E+06  0.395801E+06 -0.355806E+05 -0.173555E+08 -0.854972E+07  0.184848E+06  0.492703E+05  0.435415E+06 -0.177508E+05 -0.192636E+08  0.179406E+07  0.193506E+06
+  0.150319E+02            10 -0.129632E+06  0.415559E+06 -0.360892E+05 -0.176079E+08 -0.586263E+07  0.271971E+06  0.487038E+05  0.433711E+06 -0.178448E+05 -0.184807E+08  0.170610E+07  0.191629E+06
+  0.182408E+02            11 -0.864420E+05  0.423066E+06 -0.346223E+05 -0.167559E+08 -0.376718E+07  0.945920E+05  0.475690E+05  0.430194E+06 -0.180407E+05 -0.171029E+08  0.155387E+07  0.195379E+06
+  0.214384E+02            12 -0.624948E+05  0.421057E+06 -0.348023E+05 -0.155916E+08 -0.263288E+07 -0.137352E+06  0.459020E+05  0.424219E+06 -0.183572E+05 -0.157491E+08  0.140705E+07  0.185285E+06
+  0.246337E+02            13 -0.457317E+05  0.414036E+06 -0.344996E+05 -0.143634E+08 -0.182409E+07  0.291949E+06  0.437696E+05  0.415257E+06 -0.187830E+05 -0.144254E+08  0.126636E+07  0.155577E+06
+  0.278269E+02            14 -0.343955E+05  0.403940E+06 -0.331452E+05 -0.131194E+08 -0.133990E+07 -0.123767E+05  0.414863E+05  0.404176E+06 -0.192494E+05 -0.131376E+08  0.113479E+07  0.166556E+06
+  0.310224E+02            15 -0.279949E+05  0.392282E+06 -0.302454E+05 -0.118859E+08 -0.103972E+07 -0.670281E+05  0.391743E+05  0.391996E+06 -0.197000E+05 -0.118878E+08  0.100902E+07  0.148617E+06
+  0.342167E+02            16 -0.185906E+05  0.380085E+06 -0.263594E+05 -0.106954E+08 -0.677264E+06 -0.206935E+04  0.368532E+05  0.379134E+06 -0.201058E+05 -0.106791E+08  0.890355E+06  0.126123E+06
+  0.402160E+02            17 -0.685763E+04  0.360456E+06 -0.214807E+05 -0.854101E+07 -0.277868E+06 -0.233058E+05  0.335137E+05  0.359013E+06 -0.205812E+05 -0.851736E+07  0.686397E+06  0.100289E+06
+  0.466212E+02            18  0.288211E+04  0.329444E+06 -0.162535E+05 -0.643263E+07 -0.174428E+05 -0.163468E+05  0.289959E+05  0.327911E+06 -0.209723E+05 -0.641294E+07  0.498375E+06  0.712351E+05
+  0.530293E+02            19  0.957342E+04  0.291768E+06 -0.110402E+05 -0.455934E+07  0.105941E+06 -0.597343E+04  0.243115E+05  0.290372E+06 -0.208635E+05 -0.454759E+07  0.340565E+06  0.481261E+05
+  0.594400E+02            20  0.130302E+05  0.248172E+06 -0.613468E+04 -0.296261E+07  0.131287E+06  0.228321E+04  0.196177E+05  0.247012E+06 -0.199175E+05 -0.295769E+07  0.213013E+06  0.315960E+05
+  0.658541E+02            21  0.134737E+05  0.198976E+06 -0.227762E+04 -0.168109E+07  0.101216E+06  0.635806E+04  0.149369E+05  0.198088E+06 -0.177799E+05 -0.168003E+07  0.115775E+06  0.204900E+05
+  0.722716E+02            22  0.116792E+05  0.145114E+06 -0.102306E+02 -0.745821E+06  0.541563E+05  0.103447E+05  0.103052E+05  0.144521E+06 -0.142118E+05 -0.746169E+06  0.485638E+05  0.127315E+05
+  0.790961E+02            23  0.733001E+04  0.864063E+05 -0.862422E+02 -0.150278E+06  0.108476E+05  0.813612E+04  0.568600E+04  0.860561E+05 -0.904493E+04 -0.150362E+06  0.894962E+04  0.886136E+04
+  0.806018E+02            24  0.404287E+04  0.490074E+05 -0.124788E+03 -0.109514E+06  0.842750E+04  0.601819E+04  0.297428E+04  0.488032E+05 -0.524285E+04 -0.109643E+06  0.668573E+04  0.584939E+04
+  0.821087E+02            25  0.293909E+04  0.358633E+05 -0.130286E+03 -0.554273E+05  0.421281E+04  0.492844E+04  0.208787E+04  0.357155E+05 -0.385744E+04 -0.555078E+05  0.339759E+04  0.464450E+04
+  0.836161E+02            26  0.186597E+04  0.232959E+05 -0.109762E+03 -0.203544E+05  0.148578E+04  0.331406E+04  0.128006E+04  0.231993E+05 -0.251905E+04 -0.203552E+05  0.132876E+04  0.337529E+04
+  0.851232E+02            27  0.894700E+03  0.117981E+05 -0.433425E+02 -0.276479E+04  0.165021E+03  0.159779E+04  0.590480E+03  0.117470E+05 -0.128699E+04 -0.265445E+04  0.275661E+03  0.176129E+04
+  0.864694E+02            28  0.196980E+03  0.293411E+04 -0.108366E+02  0.696288E+03 -0.506722E+02  0.363140E+03  0.119285E+03  0.292054E+04 -0.322720E+03  0.737379E+03 -0.504743E+01  0.274776E+03
diff --git a/wetb/prepost/tests/data/dtu10mw_nofull_u10000.ind b/wetb/prepost/tests/data/dtu10mw_nofull_u10000.ind
new file mode 100644
index 0000000000000000000000000000000000000000..70b2df2865d351826abee35d4688d6cc35897efd
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nofull_u10000.ind
@@ -0,0 +1,49 @@
+ #     s [m] 1       A [-] 2      AP [-] 3  PHI0 [rad] 4ALPHA0 [rad] 5    U0 [m/s] 6   FX0 [N/m] 7   FY0 [N/m] 8   M0 [Nm/m] 9    UX0 [m] 10    UY0 [m] 11    UZ0 [m] 12 Twist[rad] 13  X_AC0 [m] 14  Y_AC0 [m] 15  Z_AC0 [m] 16    CL0 [-] 17    CD0 [-] 18    CM0 [-] 19 CLp0[1/rad]20 CDp0[1/rad]21 CMp0[1/rad]22     F0 [-] 23  F'[1/rad] 24 CL_FS0 [-] 25CLFS'[1/rad]26  V_a [m/s] 27  V_t [m/s] 28Tors. [rad] 29   vx [m/s] 30   vy [m/s] 31  chord [m] 32     CT [-] 33     CP [-] 34angle [rad] 35    v_1 [-] 36    v_2 [-] 37    v_3 [-] 38
+  0.888299E-01  0.111507E+00 -0.102084E+00  0.129813E+01  0.104302E+01  0.915933E+01 -0.449932E+02  0.159470E+03  0.000000E+00  0.137229E-05  0.189280E-04  0.189436E-04  0.253079E+00  0.130216E+01 -0.462763E+00  0.287159E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.111507E+01  0.282465E+00  0.382402E-06 -0.461277E+01  0.791300E+01  0.538000E+01  0.394263E+00 -0.327678E-01  0.375220E-04 -0.986908E+00 -0.160960E+00  0.101884E-01
+  0.354955E+00  0.104833E+00 -0.974125E-01  0.127518E+01  0.101992E+01  0.929163E+01 -0.500811E+02  0.163000E+03  0.000000E+00  0.716522E-05  0.954554E-04  0.783354E-04  0.253099E+00  0.130215E+01 -0.475373E+00  0.313747E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.104833E+01  0.294219E+00  0.154508E-05 -0.486352E+01  0.791710E+01  0.538000E+01  0.374053E+00 -0.365660E-01  0.149504E-03 -0.986875E+00 -0.161155E+00  0.103228E-01
+  0.797281E+00  0.954443E-01 -0.903855E-01  0.123763E+01  0.982146E+00  0.950687E+01 -0.588392E+02  0.168542E+03  0.000000E+00  0.227743E-04  0.288022E-03  0.179821E-03  0.253123E+00  0.130216E+01 -0.496275E+00  0.357940E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.954443E+00  0.311055E+00  0.348746E-05 -0.527858E+01  0.790677E+01  0.538000E+01  0.344940E+00 -0.431032E-01  0.334383E-03 -0.986860E+00 -0.161240E+00  0.104029E-01
+  0.141399E+01  0.851228E-01 -0.821059E-01  0.118669E+01  0.930945E+00  0.980418E+01 -0.716769E+02  0.175817E+03  0.000000E+00  0.568877E-04  0.691609E-03  0.327046E-03  0.253137E+00  0.130219E+01 -0.525290E+00  0.419555E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.851228E+00  0.330765E+00  0.621568E-05 -0.585384E+01  0.786476E+01  0.538000E+01  0.311987E+00 -0.526795E-01  0.589552E-03 -0.986848E+00 -0.161311E+00  0.104961E-01
+  0.220255E+01  0.761859E-01 -0.721246E-01  0.112326E+01  0.867255E+00  0.101858E+02 -0.870908E+02  0.186745E+03 -0.305265E+01  0.121192E-03  0.143419E-02  0.524892E-03  0.253123E+00  0.130225E+01 -0.562170E+00  0.498341E+01  0.872944E-02  0.603187E+00 -0.165965E-02 -0.209316E-01  0.124322E-02  0.581780E-03  0.000000E+00  0.000000E+00  0.872944E-02 -0.209316E-01  0.761859E+00  0.344698E+00  0.973682E-05 -0.658941E+01  0.776722E+01  0.538000E+01  0.282627E+00 -0.642406E-01  0.911417E-03 -0.986838E+00 -0.161363E+00  0.106106E-01
+  0.315971E+01  0.724485E-01 -0.576846E-01  0.104648E+01  0.790220E+00  0.106564E+02 -0.970422E+02  0.210816E+03 -0.198328E+02  0.231085E-03  0.268561E-02  0.603583E-03  0.253059E+00  0.130233E+01 -0.606732E+00  0.594274E+01  0.598340E-01  0.617849E+00 -0.985122E-02 -0.119593E+00  0.738343E-02  0.357566E-02  0.000000E+00  0.000000E+00  0.598340E-01 -0.119593E+00  0.724485E+00  0.328371E+00  0.146292E-04 -0.749882E+01  0.757149E+01  0.538000E+01  0.270126E+00 -0.719763E-01  0.129619E-02 -0.986811E+00 -0.161487E+00  0.111831E-01
+  0.428156E+01  0.716846E-01 -0.447774E-01  0.963326E+00  0.706714E+00  0.112527E+02 -0.104633E+03  0.246528E+03 -0.459768E+02  0.404228E-03  0.461052E-02  0.921880E-03  0.252971E+00  0.130109E+01 -0.658404E+00  0.706362E+01  0.133990E+00  0.628281E+00 -0.204813E-01 -0.191471E+00  0.864260E-01  0.122334E-01  0.000000E+00  0.000000E+00  0.133990E+00 -0.191471E+00  0.716846E+00  0.302507E+00  0.244684E-04 -0.855764E+01  0.730678E+01  0.538000E+01  0.267565E+00 -0.779454E-01  0.174210E-02 -0.986684E+00 -0.162050E+00  0.139061E-01
+  0.556347E+01  0.795622E-01 -0.286265E-01  0.871373E+00  0.614585E+00  0.119818E+02 -0.908592E+02  0.318343E+03 -0.114434E+03  0.655269E-03  0.741203E-02  0.131085E-02  0.252860E+00  0.129776E+01 -0.716910E+00  0.834445E+01  0.289117E+00  0.637767E+00 -0.449365E-01 -0.591968E-01  0.211804E+00  0.367351E-01  0.000000E+00  0.000000E+00  0.289117E+00 -0.591968E-01  0.795622E+00  0.228207E+00  0.367900E-04 -0.978927E+01  0.690893E+01  0.538150E+01  0.293862E+00 -0.683130E-01  0.223929E-02 -0.986585E+00 -0.162441E+00  0.162499E-01
+  0.700027E+01  0.984073E-01 -0.831576E-02  0.773316E+00  0.516293E+00  0.128800E+02 -0.335730E+02  0.448439E+03 -0.235407E+03  0.100310E-02  0.113408E-01  0.155393E-02  0.252391E+00  0.129104E+01 -0.780979E+00  0.978178E+01  0.544710E+00  0.611772E+00 -0.792278E-01  0.139881E+00  0.858802E+00 -0.113457E+00  0.000000E+00  0.000000E+00  0.544710E+00  0.139881E+00  0.984073E+00  0.774523E-01  0.725659E-04 -0.112011E+02  0.635832E+01  0.540757E+01  0.354300E+00 -0.265421E-01  0.281164E-02 -0.986399E+00 -0.162365E+00  0.255840E-01
+  0.858587E+01  0.121282E+00  0.137695E-01  0.676985E+00  0.421598E+00  0.140247E+02  0.808407E+02  0.621017E+03 -0.385836E+03  0.149482E-02  0.167281E-01  0.212114E-02  0.250450E+00  0.127587E+01 -0.847302E+00  0.113663E+02  0.814041E+00  0.490860E+00 -0.106913E+00  0.101781E+01  0.127423E+01 -0.251642E+00  0.000000E+00  0.000000E+00  0.814041E+00  0.101781E+01  0.121282E+01 -0.148506E+00  0.144434E-03 -0.127967E+02  0.573918E+01  0.547316E+01  0.423255E+00  0.575360E-01  0.351073E-02 -0.986709E+00 -0.157274E+00  0.408684E-01
+  0.103137E+02  0.146240E+00  0.287290E-01  0.591490E+00  0.340991E+00  0.153394E+02  0.211600E+03  0.831552E+03 -0.556607E+03  0.221870E-02  0.238790E-01  0.261028E-02  0.245104E+00  0.123074E+01 -0.906823E+00  0.130785E+02  0.100833E+01  0.353081E+00 -0.124097E+00  0.302746E+01  0.275993E+00 -0.429074E+00  0.000000E+00  0.000000E+00  0.100833E+01  0.302746E+01  0.146240E+01 -0.354953E+00  0.264884E-03 -0.144562E+02  0.512982E+01  0.557870E+01  0.493461E+00  0.153743E+00  0.433686E-02 -0.988654E+00 -0.137361E+00  0.607829E-01
+  0.121770E+02  0.168025E+00  0.342499E-01  0.517770E+00  0.278608E+00  0.168542E+02  0.319254E+03  0.106083E+04 -0.735531E+03  0.342423E-02  0.336339E-01  0.317312E-02  0.233911E+00  0.116814E+01 -0.963676E+00  0.149667E+02  0.108829E+01  0.243286E+00 -0.129353E+00  0.497479E+01  0.354073E+00 -0.689762E+00  0.000000E+00  0.000000E+00  0.108829E+01  0.497479E+01  0.168025E+01 -0.483695E+00  0.403426E-03 -0.162043E+02  0.463520E+01  0.571677E+01  0.550857E+00  0.233260E+00  0.539817E-02 -0.991416E+00 -0.107482E+00  0.744466E-01
+  0.141679E+02  0.184718E+00  0.386036E-01  0.455989E+00  0.233937E+00  0.185657E+02  0.449466E+03  0.129082E+04 -0.905828E+03  0.526259E-02  0.464037E-01  0.372952E-02  0.216843E+00  0.108901E+01 -0.101398E+01  0.169450E+02  0.109678E+01  0.127247E+00 -0.124435E+00  0.661847E+01  0.198438E+00 -0.951791E+00  0.000000E+00  0.000000E+00  0.109678E+01  0.661847E+01  0.184718E+01 -0.617847E+00  0.487634E-03 -0.180600E+02  0.430370E+01  0.587200E+01  0.592608E+00  0.329711E+00  0.686571E-02 -0.995053E+00 -0.696988E-01  0.707871E-01
+  0.162782E+02  0.183881E+00  0.306580E-01  0.413807E+00  0.213545E+00  0.203485E+02  0.450686E+03  0.144595E+04 -0.127831E+04  0.808068E-02  0.637478E-01  0.452938E-02  0.195095E+00  0.101006E+01 -0.106739E+01  0.190597E+02  0.987763E+00  0.105501E+00 -0.139079E+00  0.510566E+01  0.247929E+00 -0.788352E+00  0.000000E+00  0.000000E+00  0.987763E+00  0.510566E+01  0.183881E+01 -0.552784E+00  0.543568E-03 -0.198863E+02  0.431238E+01  0.602007E+01  0.590558E+00  0.331183E+00  0.886449E-02 -0.997659E+00 -0.305541E-01  0.611854E-01
+  0.184993E+02  0.215969E+00  0.289334E-01  0.361464E+00  0.184953E+00  0.222194E+02  0.507717E+03  0.181945E+04 -0.166218E+04  0.121252E-01  0.867699E-01  0.545661E-02  0.171500E+00  0.930149E+00 -0.112372E+01  0.212699E+02  0.101665E+01  0.859739E-01 -0.146244E+00  0.225022E+01  0.239885E+00 -0.534261E+00  0.100000E+01 -0.685021E-15  0.648286E+00  0.153593E+01  0.215969E+01 -0.583135E+00  0.556640E-03 -0.218404E+02  0.408615E+01  0.613078E+01  0.666187E+00  0.373622E+00  0.112152E-01 -0.998757E+00  0.428834E-02  0.496576E-01
+  0.208220E+02  0.329607E+00  0.365656E-01  0.281012E+00  0.124883E+00  0.242103E+02  0.673535E+03  0.270632E+04 -0.194795E+04  0.176554E-01  0.117420E+00  0.705040E-02  0.151664E+00  0.859867E+00 -0.118957E+01  0.235923E+02  0.125571E+01  0.412891E-01 -0.141609E+00  0.199452E+01  0.414463E+00 -0.216032E+00  0.100000E+01  0.000000E+00  0.525370E+00  0.215397E+01  0.329607E+01 -0.819282E+00  0.383381E-03 -0.240218E+02  0.301560E+01  0.618999E+01  0.893627E+00  0.496409E+00  0.143291E-01 -0.999220E+00  0.288680E-01  0.269630E-01
+  0.232369E+02  0.379502E+00  0.344255E-01  0.238037E+00  0.969902E-01  0.263398E+02  0.711607E+03  0.326415E+04 -0.244667E+04  0.248452E-01  0.157048E+00  0.893264E-02  0.136878E+00  0.798616E+00 -0.126283E+01  0.259940E+02  0.126957E+01  0.251078E-01 -0.149921E+00  0.751378E+01  0.825547E-01 -0.441864E+00  0.100000E+01 -0.143958E-14  0.616970E+00  0.386040E+01  0.379502E+01 -0.851068E+00  0.159286E-04 -0.262160E+02  0.255070E+01  0.619714E+01  0.978422E+00  0.525058E+00  0.181013E-01 -0.999038E+00  0.438294E-01  0.127633E-02
+  0.257339E+02  0.394178E+00  0.296906E-01  0.213398E+00  0.839306E-01  0.286144E+02  0.720161E+03  0.366642E+04 -0.290335E+04  0.342163E-01  0.208926E+00  0.114443E-01  0.125645E+00  0.750148E+00 -0.134083E+01  0.285140E+02  0.121119E+01  0.198447E-01 -0.152795E+00  0.744249E+01  0.476648E-01 -0.299953E+00  0.909907E+00 -0.225697E+01  0.627030E+00  0.441563E+01  0.394178E+01 -0.806126E+00 -0.316522E-03 -0.285136E+02  0.239880E+01  0.615543E+01  0.100200E+01  0.531894E+00  0.225290E-01 -0.998502E+00  0.530421E-01 -0.134541E-01
+  0.283028E+02  0.372027E+00  0.243306E-01  0.204181E+00  0.850670E-01  0.309603E+02  0.725120E+03  0.385103E+04 -0.288477E+04  0.457753E-01  0.273816E+00  0.145252E-01  0.115754E+00  0.711877E+00 -0.141539E+01  0.310643E+02  0.110029E+01  0.170885E-01 -0.133384E+00  0.723409E+01  0.432269E-01 -0.233781E+00  0.910971E+00 -0.181974E+01  0.569374E+00  0.415514E+01  0.372027E+01 -0.720350E+00 -0.582890E-03 -0.308483E+02  0.263052E+01  0.606940E+01  0.966131E+00  0.536134E+00  0.276227E-01 -0.998015E+00  0.596187E-01 -0.202827E-01
+  0.309331E+02  0.350813E+00  0.200762E-01  0.195543E+00  0.856407E-01  0.333883E+02  0.727016E+03  0.402280E+04 -0.283436E+04  0.598594E-01  0.354885E+00  0.185383E-01  0.106581E+00  0.683754E+00 -0.148636E+01  0.336945E+02  0.100756E+01  0.148374E-01 -0.117476E+00  0.711353E+01  0.357997E-01 -0.186661E+00  0.908808E+00 -0.135588E+01  0.521839E+00  0.396578E+01  0.350813E+01 -0.645047E+00 -0.127856E-02 -0.332659E+02  0.285590E+01  0.594438E+01  0.930494E+00  0.538030E+00  0.334593E-01 -0.997231E+00  0.644289E-01 -0.371443E-01
+  0.336139E+02  0.331306E+00  0.167141E-01  0.187324E+00  0.859303E-01  0.358685E+02  0.725976E+03  0.418375E+04 -0.275880E+04  0.766513E-01  0.453997E+00  0.229867E-01  0.978663E-01  0.663728E+00 -0.154994E+01  0.363725E+02  0.931447E+00  0.129989E-01 -0.104552E+00  0.689578E+01  0.315029E-01 -0.134489E+00  0.908943E+00 -0.117187E+01  0.482391E+00  0.379619E+01  0.331306E+01 -0.579957E+00 -0.226751E-02 -0.357362E+02  0.307840E+01  0.578666E+01  0.896509E+00  0.537672E+00  0.401806E-01 -0.996167E+00  0.679458E-01 -0.550879E-01
+  0.363343E+02  0.332808E+00  0.145232E-01  0.174489E+00  0.816107E-01  0.383831E+02  0.726868E+03  0.451032E+04 -0.291452E+04  0.964449E-01  0.574407E+00  0.282354E-01  0.891645E-01  0.658422E+00 -0.160335E+01  0.390969E+02  0.903645E+00  0.122913E-01 -0.102869E+00  0.678010E+01  0.356715E-01 -0.124852E+00  0.928824E+00 -0.133342E+01  0.464330E+00  0.372697E+01  0.332808E+01 -0.541805E+00 -0.325503E-02 -0.382553E+02  0.312899E+01  0.560337E+01  0.899162E+00  0.538672E+00  0.481584E-01 -0.995359E+00  0.700949E-01 -0.659353E-01
+  0.390830E+02  0.334945E+00  0.127347E-01  0.162998E+00  0.786039E-01  0.409293E+02  0.727670E+03  0.484759E+04 -0.304386E+04  0.119239E+00  0.717936E+00  0.345111E-01  0.804095E-01  0.658283E+00 -0.164364E+01  0.418458E+02  0.884480E+00  0.117344E-01 -0.101675E+00  0.681383E+01  0.303749E-01 -0.102614E+00  0.943898E+00 -0.117224E+01  0.451814E+00  0.368654E+01  0.334945E+01 -0.508509E+00 -0.420536E-02 -0.408029E+02  0.321389E+01  0.540154E+01  0.902931E+00  0.539579E+00  0.559500E-01 -0.994597E+00  0.736546E-01 -0.731514E-01
+  0.418488E+02  0.338372E+00  0.112937E-01  0.152503E+00  0.768884E-01  0.434989E+02  0.729017E+03  0.520213E+04 -0.313447E+04  0.144845E+00  0.884560E+00  0.411490E-01  0.711656E-01  0.662815E+00 -0.166924E+01  0.446105E+02  0.874316E+00  0.112593E-01 -0.100643E+00  0.679747E+01  0.308525E-01 -0.106136E+00  0.956585E+00 -0.110734E+01  0.444434E+00  0.364502E+01  0.338372E+01 -0.480739E+00 -0.531192E-02 -0.433703E+02  0.334126E+01  0.518393E+01  0.908932E+00  0.540931E+00  0.652486E-01 -0.993977E+00  0.759463E-01 -0.790034E-01
+  0.446203E+02  0.343343E+00  0.101214E-01  0.142817E+00  0.764526E-01  0.460820E+02  0.730535E+03  0.557781E+04 -0.319287E+04  0.173414E+00  0.107929E+01  0.489511E-01  0.612816E-01  0.668601E+00 -0.167650E+01  0.473825E+02  0.872654E+00  0.108919E-01 -0.999504E-01  0.677897E+01  0.308184E-01 -0.101447E+00  0.967400E+00 -0.104834E+01  0.441750E+00  0.360890E+01  0.343343E+01 -0.457568E+00 -0.652470E-02 -0.459474E+02  0.351966E+01  0.495580E+01  0.917566E+00  0.542438E+00  0.750789E-01 -0.993315E+00  0.791453E-01 -0.840316E-01
+  0.473860E+02  0.348730E+00  0.913111E-02  0.134082E+00  0.770123E-01  0.486657E+02  0.731461E+03  0.596297E+04 -0.321555E+04  0.204545E+00  0.129966E+01  0.570818E-01  0.512719E-01  0.676684E+00 -0.166641E+01  0.501489E+02  0.877044E+00  0.106718E-01 -0.994249E-01  0.676638E+01  0.292662E-01 -0.987009E-01  0.974186E+00 -0.931354E+00  0.442823E+00  0.357357E+01  0.348730E+01 -0.436870E+00 -0.782355E-02 -0.485214E+02  0.374415E+01  0.472176E+01  0.926821E+00  0.543558E+00  0.851498E-01 -0.992638E+00  0.827047E-01 -0.884906E-01
+  0.501347E+02  0.354449E+00  0.830117E-02  0.126200E+00  0.783320E-01  0.512390E+02  0.732562E+03  0.635564E+04 -0.320934E+04  0.238128E+00  0.155061E+01  0.661107E-01  0.412309E-01  0.687053E+00 -0.163393E+01  0.528980E+02  0.886936E+00  0.104804E-01 -0.991859E-01  0.671266E+01  0.307348E-01 -0.900797E-01  0.977145E+00 -0.985714E+00  0.447313E+00  0.355318E+01  0.354449E+01 -0.418896E+00 -0.924981E-02 -0.510819E+02  0.400955E+01  0.448569E+01  0.936521E+00  0.544915E+00  0.973117E-01 -0.992229E+00  0.847460E-01 -0.911048E-01
+  0.528551E+02  0.359712E+00  0.757852E-02  0.119212E+00  0.803085E-01  0.537895E+02  0.732606E+03  0.674508E+04 -0.317339E+04  0.273743E+00  0.182958E+01  0.755490E-01  0.313233E-01  0.699262E+00 -0.158115E+01  0.556185E+02  0.900679E+00  0.103828E-01 -0.990801E-01  0.668435E+01  0.311550E-01 -0.795753E-01  0.976852E+00 -0.998049E+00  0.454294E+00  0.354405E+01  0.359712E+01 -0.402064E+00 -0.106521E-01 -0.536161E+02  0.431511E+01  0.425127E+01  0.945297E+00  0.545425E+00  0.107787E+00 -0.991574E+00  0.888636E-01 -0.942581E-01
+  0.555359E+02  0.363978E+00  0.695040E-02  0.113106E+00  0.827237E-01  0.563076E+02  0.732329E+03  0.712194E+04 -0.311101E+04  0.310938E+00  0.213694E+01  0.849954E-01  0.218668E-01  0.713351E+00 -0.150762E+01  0.582991E+02  0.917076E+00  0.103557E-01 -0.990522E-01  0.670360E+01  0.287412E-01 -0.781863E-01  0.975658E+00 -0.923473E+00  0.462775E+00  0.354552E+01  0.363978E+01 -0.386484E+00 -0.121611E-01 -0.561151E+02  0.465266E+01  0.402160E+01  0.952222E+00  0.545902E+00  0.121774E+00 -0.991438E+00  0.899362E-01 -0.946700E-01
+  0.581662E+02  0.366775E+00  0.638950E-02  0.107859E+00  0.853621E-01  0.587804E+02  0.731202E+03  0.747619E+04 -0.302774E+04  0.349345E+00  0.247296E+01  0.946667E-01  0.129675E-01  0.729558E+00 -0.141180E+01  0.609281E+02  0.934981E+00  0.103665E-01 -0.991337E-01  0.670658E+01  0.299792E-01 -0.823554E-01  0.973008E+00 -0.902073E+00  0.472287E+00  0.355021E+01  0.366775E+01 -0.371291E+00 -0.136374E-01 -0.585664E+02  0.501153E+01  0.379894E+01  0.956460E+00  0.545688E+00  0.133789E+00 -0.991052E+00  0.926526E-01 -0.960755E-01
+  0.607352E+02  0.368353E+00  0.589191E-02  0.103331E+00  0.882312E-01  0.611984E+02  0.729444E+03  0.780636E+04 -0.292894E+04  0.388374E+00  0.283113E+01  0.104036E+00  0.459098E-02  0.747443E+00 -0.129781E+01  0.634952E+02  0.954363E+00  0.104287E-01 -0.993393E-01  0.676075E+01  0.281652E-01 -0.907191E-01  0.971613E+00 -0.759923E+00  0.482335E+00  0.355682E+01  0.368353E+01 -0.356778E+00 -0.150642E-01 -0.609603E+02  0.539260E+01  0.358510E+01  0.958324E+00  0.545096E+00  0.146791E+00 -0.990877E+00  0.944950E-01 -0.960960E-01
+  0.632321E+02  0.368346E+00  0.544418E-02  0.995036E-01  0.911103E-01  0.635498E+02  0.726951E+03  0.810145E+04 -0.281831E+04  0.427639E+00  0.321409E+01  0.113021E+00 -0.307499E-02  0.766430E+00 -0.116246E+01  0.659889E+02  0.973844E+00  0.105101E-01 -0.996160E-01  0.677390E+01  0.286479E-01 -0.997938E-01  0.970961E+00 -0.676064E+00  0.492303E+00  0.355150E+01  0.368346E+01 -0.342592E+00 -0.164308E-01 -0.632862E+02  0.578204E+01  0.338191E+01  0.956969E+00  0.543994E+00  0.160104E+00 -0.990804E+00  0.959257E-01 -0.954262E-01
+  0.656470E+02  0.366545E+00  0.503329E-02  0.963354E-01  0.937943E-01  0.658244E+02  0.723290E+03  0.835062E+04 -0.269776E+04  0.466626E+00  0.361294E+01  0.121573E+00 -0.993133E-02  0.786129E+00 -0.101234E+01  0.683994E+02  0.992033E+00  0.105870E-01 -0.998867E-01  0.677700E+01  0.286479E-01 -0.101038E+00  0.969196E+00 -0.644032E+00  0.501836E+00  0.355184E+01  0.366545E+01 -0.328288E+00 -0.177192E-01 -0.655351E+02  0.616491E+01  0.319012E+01  0.951640E+00  0.541869E+00  0.170511E+00 -0.990506E+00  0.983103E-01 -0.960839E-01
+  0.679697E+02  0.363960E+00  0.466699E-02  0.936139E-01  0.964005E-01  0.680133E+02  0.718599E+03  0.855902E+04 -0.257181E+04  0.504868E+00  0.402432E+01  0.129200E+00 -0.161284E-01  0.806172E+00 -0.848792E+00  0.707166E+02  0.100969E+01  0.106617E-01 -0.100146E+00  0.676743E+01  0.286479E-01 -0.971890E-01  0.967529E+00 -0.638746E+00  0.511092E+00  0.355056E+01  0.363960E+01 -0.314693E+00 -0.189584E-01 -0.676975E+02  0.654636E+01  0.301062E+01  0.943428E+00  0.539220E+00  0.184696E+00 -0.990676E+00  0.984456E-01 -0.941802E-01
+  0.701908E+02  0.361352E+00  0.433334E-02  0.911918E-01  0.988498E-01  0.701043E+02  0.711682E+03  0.872746E+04 -0.244364E+04  0.542027E+00  0.444642E+01  0.136075E+00 -0.219025E-01  0.826444E+00 -0.672900E+00  0.729309E+02  0.102624E+01  0.107318E-01 -0.100375E+00  0.674713E+01  0.286479E-01 -0.890300E-01  0.965949E+00 -0.655290E+00  0.519785E+00  0.354791E+01  0.361352E+01 -0.301331E+00 -0.201545E-01 -0.697620E+02  0.691852E+01  0.284386E+01  0.932790E+00  0.534673E+00  0.195947E+00 -0.990587E+00  0.997089E-01 -0.937867E-01
+  0.723012E+02  0.359306E+00  0.402776E-02  0.889608E-01  0.101024E+00  0.720900E+02  0.701890E+03  0.885290E+04 -0.231608E+04  0.577691E+00  0.486787E+01  0.142717E+00 -0.272176E-01  0.846947E+00 -0.495285E+00  0.750349E+02  0.104088E+01  0.107941E-01 -0.100557E+00  0.671994E+01  0.286479E-01 -0.780978E-01  0.964493E+00 -0.686281E+00  0.527497E+00  0.354437E+01  0.359306E+01 -0.288152E+00 -0.212914E-01 -0.717225E+02  0.727048E+01  0.268993E+01  0.919664E+00  0.527728E+00  0.204073E+00 -0.990292E+00  0.101738E+00 -0.947173E-01
+  0.742921E+02  0.359249E+00  0.375976E-02  0.867159E-01  0.103168E+00  0.739621E+02  0.689089E+03  0.894485E+04 -0.219201E+04  0.611480E+00  0.528561E+01  0.148941E+00 -0.321434E-01  0.866898E+00 -0.314586E+00  0.770179E+02  0.105525E+01  0.108556E-01 -0.100710E+00  0.668469E+01  0.286479E-01 -0.639241E-01  0.962976E+00 -0.730917E+00  0.535091E+00  0.353978E+01  0.359249E+01 -0.276077E+00 -0.220791E-01 -0.735688E+02  0.761702E+01  0.254872E+01  0.905292E+00  0.519020E+00  0.216590E+00 -0.990543E+00  0.102034E+00 -0.917244E-01
+  0.761554E+02  0.361611E+00  0.351221E-02  0.843995E-01  0.104910E+00  0.757091E+02  0.671731E+03  0.899492E+04 -0.207338E+04  0.643214E+00  0.569624E+01  0.153827E+00 -0.367453E-01  0.886077E+00 -0.131050E+00  0.788721E+02  0.106686E+01  0.109055E-01 -0.100810E+00  0.664594E+01  0.292671E-01 -0.515662E-01  0.961663E+00 -0.784061E+00  0.541251E+00  0.353474E+01  0.361611E+01 -0.264101E+00 -0.228582E-01 -0.752929E+02  0.792807E+01  0.242040E+01  0.888958E+00  0.506594E+00  0.225360E+00 -0.990489E+00  0.103499E+00 -0.906618E-01
+  0.778833E+02  0.366272E+00  0.327576E-02  0.820282E-01  0.106265E+00  0.773249E+02  0.648807E+03  0.898147E+04 -0.195039E+04  0.672667E+00  0.608935E+01  0.158409E+00 -0.409994E-01  0.903138E+00  0.459066E-01  0.805910E+02  0.107583E+01  0.109480E-01 -0.100880E+00  0.659270E+01  0.333834E-01 -0.515662E-01  0.960544E+00 -0.865528E+00  0.546036E+00  0.352784E+01  0.366272E+01 -0.251684E+00 -0.236172E-01 -0.768887E+02  0.820146E+01  0.229766E+01  0.868697E+00  0.489711E+00  0.230946E+00 -0.990229E+00  0.105658E+00 -0.910083E-01
+  0.794689E+02  0.372851E+00  0.304093E-02  0.796481E-01  0.107295E+00  0.788018E+02  0.619228E+03  0.887447E+04 -0.181124E+04  0.699640E+00  0.645676E+01  0.163064E+00 -0.448859E-01  0.916436E+00  0.209489E+00  0.821677E+02  0.108260E+01  0.109839E-01 -0.100933E+00  0.655671E+01  0.361658E-01 -0.515662E-01  0.959625E+00 -0.917961E+00  0.549667E+00  0.352315E+01  0.372851E+01 -0.238212E+00 -0.246311E-01 -0.783486E+02  0.843880E+01  0.217211E+01  0.841878E+00  0.467666E+00  0.234751E+00 -0.989772E+00  0.107959E+00 -0.932563E-01
+  0.809056E+02  0.381814E+00  0.280321E-02  0.771946E-01  0.107951E+00  0.801365E+02  0.581974E+03  0.865648E+04 -0.165379E+04  0.724019E+00  0.679595E+01  0.167895E+00 -0.483728E-01  0.927718E+00  0.359047E+00  0.835984E+02  0.108690E+01  0.110081E-01 -0.100967E+00  0.653579E+01  0.377836E-01 -0.515662E-01  0.959013E+00 -0.947226E+00  0.551980E+00  0.352042E+01  0.381814E+01 -0.223413E+00 -0.256600E-01 -0.796700E+02  0.863405E+01  0.204065E+01  0.807145E+00  0.439880E+00  0.238980E+00 -0.989378E+00  0.109743E+00 -0.953246E-01
+  0.821875E+02  0.394023E+00  0.255859E-02  0.745611E-01  0.108013E+00  0.813197E+02  0.536323E+03  0.831648E+04 -0.148099E+04  0.745682E+00  0.710316E+01  0.172504E+00 -0.513578E-01  0.935243E+00  0.493942E+00  0.848743E+02  0.108731E+01  0.110105E-01 -0.100970E+00  0.653389E+01  0.379303E-01 -0.515662E-01  0.958954E+00 -0.949829E+00  0.552198E+00  0.352018E+01  0.394023E+01 -0.207028E+00 -0.265950E-01 -0.808458E+02  0.876655E+01  0.190297E+01  0.763786E+00  0.405674E+00  0.242040E+00 -0.988975E+00  0.111448E+00 -0.975099E-01
+  0.833094E+02  0.410466E+00  0.230304E-02  0.716243E-01  0.107288E+00  0.823414E+02  0.481698E+03  0.784216E+04 -0.129484E+04  0.764538E+00  0.737468E+01  0.177017E+00 -0.538014E-01  0.940618E+00  0.611674E+00  0.859900E+02  0.108256E+01  0.109836E-01 -0.100932E+00  0.655694E+01  0.361482E-01 -0.515662E-01  0.959631E+00 -0.917638E+00  0.549643E+00  0.352318E+01  0.410466E+01 -0.188802E+00 -0.280514E-01 -0.818679E+02  0.881729E+01  0.175760E+01  0.710881E+00  0.364659E+00  0.244347E+00 -0.988340E+00  0.112864E+00 -0.102206E+00
+  0.842666E+02  0.431906E+00  0.203010E-02  0.682922E-01  0.105717E+00  0.831885E+02  0.417874E+03  0.721261E+04 -0.109263E+04  0.780519E+00  0.760746E+01  0.181366E+00 -0.557495E-01  0.940592E+00  0.710960E+00  0.869396E+02  0.107222E+01  0.109302E-01 -0.100851E+00  0.661340E+01  0.317828E-01 -0.515662E-01  0.961010E+00 -0.834348E+00  0.544104E+00  0.353052E+01  0.431906E+01 -0.168271E+00 -0.303995E-01 -0.827241E+02  0.877810E+01  0.159874E+01  0.646672E+00  0.316646E+00  0.245909E+00 -0.987266E+00  0.114043E+00 -0.110905E+00
+  0.850551E+02  0.458577E+00  0.172731E-02  0.645329E-01  0.103328E+00  0.838618E+02  0.344521E+03  0.638363E+04 -0.866540E+03  0.793679E+00  0.780072E+01  0.185246E+00 -0.572712E-01  0.935466E+00  0.792760E+00  0.877240E+02  0.105632E+01  0.108601E-01 -0.100720E+00  0.668172E+01  0.286479E-01 -0.627313E-01  0.962859E+00 -0.734785E+00  0.535657E+00  0.353939E+01  0.458577E+01 -0.144468E+00 -0.329067E-01 -0.834146E+02  0.864990E+01  0.141325E+01  0.567230E+00  0.261445E+00  0.246632E+00 -0.985983E+00  0.115253E+00 -0.120637E+00
+  0.856716E+02  0.491267E+00  0.139798E-02  0.602427E-01  0.100168E+00  0.841462E+02  0.265097E+03  0.536175E+04 -0.630805E+03  0.803701E+00  0.794840E+01  0.188347E+00 -0.584135E-01  0.930988E+00  0.854686E+00  0.883225E+02  0.103513E+01  0.107696E-01 -0.100488E+00  0.673167E+01  0.286479E-01 -0.828150E-01  0.965074E+00 -0.672316E+00  0.524462E+00  0.354589E+01  0.491267E+01 -0.117748E+00 -0.437292E-01 -0.837244E+02  0.841471E+01  0.120310E+01  0.473201E+00  0.201582E+00  0.247126E+00 -0.979542E+00  0.115825E+00 -0.164569E+00
+  0.861141E+02  0.560429E+00  0.105523E-02  0.518279E-01  0.924809E-01  0.843120E+02  0.173918E+03  0.428533E+04 -0.441330E+03  0.811070E+00  0.805727E+01  0.190727E+00 -0.592081E-01  0.932301E+00  0.899687E+00  0.887636E+02  0.983131E+00  0.105494E-01 -0.997538E-01  0.677713E+01  0.286479E-01 -0.101089E+00  0.970049E+00 -0.656205E+00  0.497171E+00  0.355189E+01  0.560429E+01 -0.893236E-01 -0.490092E-01 -0.839517E+02  0.778614E+01  0.100803E+01  0.376323E+00  0.132899E+00  0.247287E+00 -0.975643E+00  0.116316E+00 -0.185985E+00
+  0.863804E+02  0.720298E+00  0.649802E-03  0.329129E-01  0.739313E-01  0.843714E+02  0.674124E+02  0.326358E+04 -0.329324E+03  0.815501E+00  0.812282E+01  0.192196E+00 -0.596752E-01  0.933538E+00  0.926605E+00  0.890292E+02  0.858428E+00  0.100180E-01 -0.981553E-01  0.679709E+01  0.286479E-01 -0.971209E-01  0.986459E+00 -0.852276E+00  0.431408E+00  0.355498E+01  0.720298E+01 -0.551658E-01 -0.507947E-01 -0.841410E+02  0.623201E+01  0.877215E+00  0.285741E+00  0.528383E-01  0.247292E+00 -0.974188E+00  0.116689E+00 -0.193241E+00
diff --git a/wetb/prepost/tests/data/dtu10mw_nogradient.pwr b/wetb/prepost/tests/data/dtu10mw_nogradient.pwr
new file mode 100644
index 0000000000000000000000000000000000000000..3fb025fe44d41ba993ec96e340874be8f604339d
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nogradient.pwr
@@ -0,0 +1,22 @@
+ #                V [m/s]  1                   P [kW]  2                   T [kN]  3                   Cp [-]  4                   Ct [-]  5             Pitch Q [Nm]  6             Flap M [kNm]  7             Edge M [kNm]  8              Pitch [deg]  9              Speed [rpm] 10                Tip x [m] 11                Tip y [m] 12                Tip z [m] 13
+      0.5000000000000000E+01      0.7970169791578448E+03      0.3544331376231053E+03      0.4169253899720817E+00      0.9270327859180790E+00      0.9594040831429129E+04     -0.7285219033288880E+04      0.4266133175794696E+03      0.1520000000000000E+01      0.6000000000000000E+01      0.1058287730378880E+00     -0.4570720974965974E+01      0.8914999301491066E+02
+      0.6000000000000000E+01      0.1538224912236643E+04      0.5028078552591091E+03      0.4652851458655674E+00      0.9125415578002156E+00      0.5381139449224927E+05     -0.1012310607930005E+05      0.8194497447377861E+03      0.4600000000000001E+00      0.6000000000000000E+01      0.2331541124624440E+00     -0.3771950370961326E+01      0.8918544380531593E+02
+      0.7000000000000000E+01      0.2506971009248905E+04      0.6601028022124265E+03      0.4772730920662255E+00      0.8796851380883184E+00      0.9494399539690152E+05     -0.1317261132118186E+05      0.1255760383606364E+04      0.0000000000000000E+00      0.6370000000000000E+01      0.3464163472096511E+00     -0.2878853576663426E+01      0.8920985994276425E+02
+      0.8000000000000000E+01      0.3761077610689366E+04      0.8583261420148028E+03      0.4795983570259911E+00      0.8756039627213232E+00      0.1290616013640559E+06     -0.1709648904765180E+05      0.1646679988112126E+04      0.0000000000000000E+00      0.7279999999999999E+01      0.4680668290015476E+00     -0.1686808663189807E+01      0.8921715253544735E+02
+      0.9000000000000000E+01      0.5381732315696529E+04      0.1080310780888448E+04      0.4822396840120912E+00      0.8712284988272722E+00      0.1701276996611903E+06     -0.2147779639777565E+05      0.2092031161012877E+04      0.0000000000000000E+00      0.8190000000000000E+01      0.6022597199520462E+00     -0.4071172529039249E+00      0.8919241427217456E+02
+      0.1000000000000000E+02      0.7416712472523705E+04      0.1324854638420147E+04      0.4851495915269021E+00      0.8666274835963063E+00      0.2187145886774265E+06     -0.2629124662906981E+05      0.2591677355693617E+04      0.0000000000000000E+00      0.9100000000000000E+01      0.7474581721392320E+00      0.9382686044027334E+00      0.8913014778298016E+02
+      0.1100000000000000E+02      0.9907484978459799E+04      0.1546838035017184E+04      0.4877552803179612E+00      0.8376760228436287E+00      0.2812549250549605E+06     -0.3054233250592176E+05      0.3279346840966920E+04      0.0000000000000000E+00      0.9599999999999998E+01      0.8928524405421021E+00      0.2040564708128432E+01      0.8905163079868974E+02
+      0.1200000000000000E+02      0.1061014657108758E+05      0.1249721988766591E+04      0.4011774939027885E+00      0.5670349590398148E+00      0.2254674005676494E+06     -0.2399091342085267E+05      0.3517871550943046E+04      0.4100000000000001E+01      0.9599999999999998E+01      0.8502430701369529E+00     -0.4898551655049134E-01      0.8918109827975073E+02
+      0.1300000000000000E+02      0.1061208985668525E+05      0.1077410211782461E+04      0.3153511352272069E+00      0.4162151841656613E+00      0.1829537578781671E+06     -0.2005519301411685E+05      0.3521839899182678E+04      0.6690000000000001E+01      0.9599999999999998E+01      0.7105471690129758E+00     -0.1322639286687157E+01      0.8921676454114522E+02
+      0.1400000000000000E+02      0.1061401889940045E+05      0.9708527455375043E+03      0.2525095152315331E+00      0.3233547837483274E+00      0.1559014425969238E+06     -0.1748238186619036E+05      0.3524730063354117E+04      0.8620000000000001E+01      0.9599999999999998E+01      0.5668305192378178E+00     -0.2186290411632646E+01      0.8922206030638033E+02
+      0.1500000000000000E+02      0.1061329710264457E+05      0.8932979867475455E+03      0.2053212055070568E+00      0.2592215469078845E+00      0.1363963164848901E+06     -0.1551083229602619E+05      0.3526274664368028E+04      0.1026000000000000E+02      0.9599999999999998E+01      0.4200757268826584E+00     -0.2868166913940989E+01      0.8921514104676571E+02
+      0.1600000000000000E+02      0.1060155692128170E+05      0.8319576204597553E+03      0.1690468823274193E+00      0.2122553779774559E+00      0.1211316053618953E+06     -0.1387742351383117E+05      0.3523910934267796E+04      0.1174000000000000E+02      0.9599999999999998E+01      0.2690761528524743E+00     -0.3446315184459102E+01      0.8920132452776888E+02
+      0.1700000000000000E+02      0.1060183963499188E+05      0.7833358202115986E+03      0.1409974106264970E+00      0.1771033654307255E+00      0.1097254204332629E+06     -0.1250589079254378E+05      0.3525345535114981E+04      0.1310000000000000E+02      0.9599999999999998E+01      0.1163384787611592E+00     -0.3946279752224537E+01      0.8918325237589035E+02
+      0.1800000000000000E+02      0.1059682774409639E+05      0.7428073022970189E+03      0.1187798691986428E+00      0.1498703210122704E+00      0.1008807108347629E+06     -0.1130020855305979E+05      0.3524900845735160E+04      0.1438000000000000E+02      0.9599999999999998E+01     -0.4028360451736025E-01     -0.4394639668368468E+01      0.8916198430045489E+02
+      0.1900000000000000E+02      0.1061289335441474E+05      0.7098016173736669E+03      0.1012000817235990E+00      0.1285990169176314E+00      0.9464525489133733E+05     -0.1025221596297727E+05      0.3531333518711257E+04      0.1559000000000000E+02      0.9599999999999998E+01     -0.1969844320530114E+00     -0.4793302156631236E+01      0.8913884812140398E+02
+      0.2000000000000000E+02      0.1060030266827369E+05      0.6800543290753695E+03      0.8671201044635370E-01      0.1112588572840720E+00      0.8942778021483211E+05     -0.9275547526844854E+04      0.3528209495967019E+04      0.1676000000000000E+02      0.9599999999999998E+01     -0.3598763549410885E+00     -0.5166554397385442E+01      0.8911339331284624E+02
+      0.2100000000000000E+02      0.1061048922554726E+05      0.6555390117784526E+03      0.7502015372940181E-01      0.9733306017006643E-01      0.8621809447266402E+05     -0.8410251218309510E+04      0.3532565660171932E+04      0.1788000000000000E+02      0.9599999999999998E+01     -0.5224480720785591E+00     -0.5504269565763194E+01      0.8908699920362002E+02
+      0.2200000000000000E+02      0.1060110308578692E+05      0.6333292287585914E+03      0.6522967791689528E-01      0.8573267781714662E-01      0.8387755890787989E+05     -0.7596163931537479E+04      0.3530396023248682E+04      0.1897000000000000E+02      0.9599999999999998E+01     -0.6897955512604874E+00     -0.5822816349005327E+01      0.8905901247150452E+02
+      0.2300000000000000E+02      0.1058612079687397E+05      0.6136154737425885E+03      0.5704072800083193E-01      0.7604529573659602E-01      0.8251906317545590E+05     -0.6837127934996724E+04      0.3526341412461991E+04      0.2003000000000000E+02      0.9599999999999998E+01     -0.8600401258454597E+00     -0.6121188446982691E+01      0.8902990031045036E+02
+      0.2400000000000000E+02      0.1061205678332627E+05      0.5981919524558181E+03      0.5035738769763526E-01      0.6812639928143560E-01      0.8293079727758301E+05     -0.6168957697994681E+04      0.3535808055464818E+04      0.2105000000000000E+02      0.9599999999999998E+01     -0.1027553825139650E+01     -0.6391259215359025E+01      0.8900089859581524E+02
+      0.2500000000000000E+02      0.1061168880733778E+05      0.5837999848031249E+03      0.4457969688339745E-01      0.6131358268124843E-01      0.8380042886389370E+05     -0.5525518996295825E+04      0.3536527702270825E+04      0.2205000000000000E+02      0.9599999999999998E+01     -0.1200272290169282E+01     -0.6650867142082967E+01      0.8897053016152849E+02
diff --git a/wetb/prepost/tests/data/dtu10mw_nogradient_defl_u10000.ind b/wetb/prepost/tests/data/dtu10mw_nogradient_defl_u10000.ind
new file mode 100644
index 0000000000000000000000000000000000000000..902822d420a753075f15b8b99dcc21f7743c663c
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nogradient_defl_u10000.ind
@@ -0,0 +1,28 @@
+ #                   s [m] 1            Element no [-] 2                pos_xR [m] 3                pos_yR [m] 4                pos_zR [m] 5          Elem angle [rad] 6              Elem v_1 [-] 7              Elem v_2 [-] 8              Elem v_3 [-] 9       Node 1 angle [rad] 10           Node 1 v_1 [-] 11           Node 1 v_2 [-] 12           Node 1 v_3 [-] 13       Node 2 angle [rad] 14           Node 2 v_1 [-] 15           Node 2 v_2 [-] 16           Node 2 v_3 [-] 17           Elongation [m] 18
+      0.1000000000000000E-01                           1      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.1581720748334171E+00     -0.1252525828090220E-02      0.5009197628077356E-05     -0.9999992155766756E+00      0.1979097375561801E-03      0.9971823029593873E+00      0.7501619309174899E-01     -0.1093964306656607E-03      0.1936676353146043E-03      0.9971659682539831E+00      0.7523326475802933E-01      0.9696524349262792E-04      0.5957071812241060E-06
+      0.3000027716563378E+01                           2      0.1642544242645871E-06      0.1972387749673990E-05      0.1000059551132814E-01      0.2531423654693439E+00      0.1528202722592904E-01     -0.3085144615482638E-02     -0.9998784633777184E+00      0.8183508178185977E-03      0.9856014621746311E+00      0.1688444549654974E+00     -0.9017147085587327E-02      0.4093809839369353E-03     -0.9890395138408292E+00     -0.1465490449883605E+00      0.1800606074137397E-01      0.1761543996638970E-03
+      0.6000041734190423E+01                           3     -0.3766423178687979E-02     -0.1114859699860099E-01      0.3000181303686746E+01      0.2529742691274434E+00      0.1233520397951033E-01     -0.1289086087246781E-01     -0.9998408215554879E+00      0.7976656488811755E-03      0.9858139085971006E+00      0.1673067124519329E+00     -0.1339412004693096E-01      0.3761057778473889E-03     -0.9871140284239134E+00     -0.1574804730755604E+00      0.2838650000498641E-01      0.1736114062951266E-03
+      0.7000271418919271E+01                           4     -0.1462387301605233E-01     -0.1918037278858609E-01      0.6000338535527540E+01      0.2526821335524182E+00      0.1438069345042819E-01      0.2212181282914732E-01     -0.9996518499222883E+00      0.4290969485643005E-03      0.9844870474302937E+00      0.1754534702131119E+00      0.1155587183458647E-02      0.2354724850243057E-04      0.9307331385350871E+00      0.3650689356110729E+00     -0.2145377672573980E-01      0.5909577833551616E-04
+      0.8701763021717801E+01                           5     -0.9548408962055584E-02     -0.2347903880267432E-01      0.7000605202743904E+01      0.5347203884733629E+00     -0.2997332854786683E-02     -0.8603801153347039E-02     -0.9999584944393811E+00      0.6262975844698961E-03      0.9053370452656561E+00      0.4245202924629912E+00     -0.1213901005414290E-01      0.1233011473896562E-03     -0.9248306408914695E+00     -0.3753815707537404E+00      0.6145737691049351E-01      0.1035159624309667E-03
+      0.1040850079628084E+02                           6     -0.1629714673363100E-01     -0.1883642864626495E-01      0.8702180604805919E+01      0.9439316523310755E+00     -0.3129523837826997E-02      0.6987150804038404E-02     -0.9999706924726296E+00      0.6983751344495495E-03      0.6990452062075777E+00      0.7150498469881501E+00      0.6286313860634241E-02      0.1261480734361052E-03     -0.8080711301347540E+00     -0.5880366840223720E+00     -0.3512747982779760E-01      0.1080876596986080E-03
+      0.1221714185677281E+02                           7     -0.4430523606519183E-02     -0.1944037027268947E-01      0.1040898510910604E+02      0.7999491723227071E+00      0.3256168340195651E-02     -0.1728176730248817E-01     -0.9998453569860910E+00      0.8612461383030364E-03      0.8285872880733496E+00      0.5593062488086346E+00     -0.2489230509183344E-01      0.1825487611820551E-03     -0.8142425617140202E+00     -0.5685821364540720E+00      0.1171469123301747E+00      0.1206526729571333E-03
+      0.1322263387610731E+02                           8     -0.2863875817398900E-01     -0.1418720780794724E-01      0.1221757718602036E+02      0.6578865580918504E+00     -0.1424002793929857E-02     -0.8950676857561173E-02     -0.9999589279564594E+00      0.7392027592896892E-03      0.9066940755605909E+00      0.4217553297028188E+00     -0.5319280111748110E-02      0.5265121564888148E-04      0.9239806003004130E+00      0.3753006064499599E+00      0.7354901836048115E-01      0.6933597804015257E-04
+      0.1503187355187086E+02                           9     -0.3384319959282073E-01     -0.1143322340841924E-01      0.1322312130174005E+02      0.5509372567793474E+00     -0.3666656461563566E-02     -0.7417619603902931E-02     -0.9999657666889439E+00      0.1182286785741451E-02      0.9495693053563803E+00      0.3135542807606300E+00      0.1359528001347989E-02      0.2642336460043138E-03     -0.9420945574850691E+00     -0.3352878779062760E+00     -0.6316286372530983E-02      0.1266773898567219E-03
+      0.1824077992511038E+02                          10     -0.3988738660231354E-01     -0.5974438433401397E-02      0.1503246932503406E+02      0.4138967620438695E+00     -0.1718892171490765E-02     -0.2064703458835893E-01     -0.9997853496488178E+00      0.2253413264982063E-02      0.9823343006539123E+00      0.1871282385107864E+00     -0.1531047509239844E-02      0.1062879134898192E-02     -0.9803709852130448E+00     -0.1971359221153717E+00      0.3187517027885291E-02      0.2335842676473021E-03
+      0.2143844424534061E+02                          11     -0.6606984557893278E-01      0.1837743157957594E-02      0.1824149296401618E+02      0.3121767171200429E+00     -0.1638593584368783E-01      0.5092157358420077E-02     -0.9998527746823340E+00      0.2849296743417799E-02      0.9925592419532074E+00      0.1184841803883586E+00      0.2806510790696540E-01      0.1421231263813160E-02     -0.9930957392754793E+00     -0.1029063485628202E+00     -0.5631283944919391E-01      0.2506416984608961E-03
+      0.2463372253480342E+02                          12     -0.5853613721650198E-01      0.1714470779113098E-01      0.2143936241785870E+02      0.2573852427351832E+00     -0.1994156955376372E-01      0.6359884089564170E-01     -0.9977762881730987E+00      0.3423641329683507E-02      0.9923713960414110E+00      0.8997821180110188E-01      0.8427890466707817E-01      0.1794230201055558E-02     -0.9855456938124078E+00     -0.5312641944928276E-01     -0.1608641333126031E+00      0.2651517189589114E-03
+      0.2782687059672809E+02                          13     -0.4708166558402113E-02      0.2668603763299227E-01      0.2463443822245262E+02      0.2146749244018029E+00     -0.2651244951837950E-01     -0.6232534757125296E-01     -0.9977036840017550E+00      0.4006214528453690E-02      0.9983918325410275E+00      0.5514690700582760E-01     -0.1313649285834536E-01      0.2193639022362007E-02     -0.9989003771372439E+00     -0.4029613903792238E-01      0.2396367837085299E-01      0.2723706293701333E-03
+      0.3102237659735258E+02                          14     -0.4516874151752751E-01      0.4928042046958625E-01      0.2782752238902515E+02      0.1888420913429391E+00     -0.4817200904361239E-01      0.5162353945093000E-01     -0.9975041191490369E+00      0.4518704774015439E-02      0.9961377025162572E+00      0.4571297530555758E-01      0.7496666935584377E-01      0.2628460163443630E-02     -0.9914979011513546E+00     -0.1774282318321487E-01     -0.1289073472543885E+00      0.2660057297614316E-03
+      0.3421665012867821E+02                          15     -0.1146897241936012E-01      0.7525396777872673E-01      0.3102301114929782E+02      0.1737354039472654E+00     -0.9464281435034931E-01      0.8273024642308205E-01     -0.9920677618079596E+00      0.4992586215226078E-02      0.9947349337424524E+00      0.3786945232391481E-01      0.9522770715855090E-01      0.3008752956532680E-02     -0.9873481054494950E+00     -0.1291016071180312E-01     -0.1580412806236732E+00      0.2579377383682413E-03
+      0.4021597872082173E+02                          16      0.3873127967320857E-01      0.1235701892873278E+00      0.3421678271036794E+02      0.1494162743260572E+00     -0.1795441299222726E+00      0.5760746604255465E-01     -0.9820617522674655E+00      0.9992748138304256E-02      0.9966450992348819E+00      0.2176829898775773E-01      0.7889668765261458E-01      0.7335092207129834E-02     -0.9940868621303213E+00     -0.1538836590179935E-01     -0.1074919008472466E+00      0.4600004514045963E-03
+      0.4662115166526345E+02                          17      0.1019694842930053E+00      0.2801452722610889E+00      0.4021419451287240E+02      0.1208748854713345E+00     -0.3355101971489429E+00      0.9874666364310201E-01     -0.9368468412864807E+00      0.1292831663260515E-01      0.9957017885124539E+00      0.9767470808056037E-02      0.9210073219309702E-01      0.9656467542046198E-02     -0.9923403972822695E+00     -0.7411533846692219E-02     -0.1233110096169499E+00      0.4531978133979209E-03
+      0.5302930575614984E+02                          18      0.1929318646924971E+00      0.5349679475094862E+00      0.4661410369379219E+02      0.9957334581215924E-01     -0.5751762242817842E+00      0.1244152881372695E+00     -0.8085129232725954E+00      0.1543861574016671E-01      0.9959624388220668E+00     -0.7574106541910151E-05      0.8977093292250343E-01      0.1153344696157107E-01     -0.9927536250487221E+00     -0.6578045742872741E-03     -0.1201657490696722E+00      0.4107350587476688E-03
+      0.5944002225373877E+02                          19      0.2869549264688854E+00      0.8982013306615821E+00      0.5301167544420852E+02      0.9319111378216556E-01     -0.8217061812285272E+00      0.1327554661474658E+00     -0.5542336492301139E+00      0.1756392146750973E-01      0.9966195052313377E+00     -0.7843142780608790E-02      0.8178047997724432E-01      0.1296291357757680E-01     -0.9938291253926579E+00      0.5190319037119890E-02     -0.1108004066497350E+00      0.3628565327788991E-03
+      0.6585405181409229E+02                          20      0.3788247584766748E+00      0.1386377201273159E+01      0.5940348135008055E+02      0.1029664445190838E+00     -0.9558114448462710E+00      0.1213068545387936E+00     -0.2677856025682875E+00      0.1895074585214260E-01      0.9973400987906705E+00     -0.1426580022825759E-01      0.7147876809349017E-01      0.1355180387114826E-01     -0.9949384508301500E+00      0.1044585907531454E-01     -0.9994179851286283E-01      0.3136068552631599E-03
+      0.7227162425796887E+02                          21      0.4674972394169647E+00      0.2015435983171767E+01      0.6578628798250797E+02      0.1217251712778462E+00     -0.9917347327552511E+00      0.1085025810882727E+00     -0.6847926506719793E-01      0.1952894359183652E-01      0.9977476097585600E+00     -0.1868762869881552E-01      0.6442421714034885E-01      0.1313098757311434E-01     -0.9953002204590911E+00      0.1419235762057446E-01     -0.9579169138327800E-01      0.2625151874688925E-03
+      0.7909609719728093E+02                          22      0.5552766543365004E+00      0.2787926429699397E+01      0.7215685772518636E+02      0.1415014447547772E+00     -0.9955226140902559E+00      0.7130384867049212E-01      0.6205228440368667E-01      0.1898320937199168E-01      0.9988423011676827E+00     -0.2058169582245570E-01      0.4347931918144051E-01      0.1065104011499267E-01     -0.9968700420667719E+00      0.1587017887100748E-01     -0.7744841285387848E-01      0.2142630859989225E-03
+      0.8060184206428970E+02                          23      0.6196917922659049E+00      0.3746402486383171E+01      0.7891359730501267E+02      0.1481627474829670E+00     -0.9891281098920218E+00      0.8100820702829759E-01      0.1227324432067504E+00      0.3245849176048589E-02      0.9985981181316443E+00     -0.2282278042686098E-01      0.4775896968615797E-01      0.1390251789392073E-02     -0.9937565215322347E+00      0.4465497835337153E-02     -0.1114811019037393E+00      0.3172754432001490E-04
+      0.8210874792071280E+02                          24      0.6356959260498970E+00      0.3966434491195867E+01      0.8040312506147653E+02      0.1494468610162167E+00     -0.9888471270855952E+00      0.4091124780854070E-01      0.1432048499785049E+00      0.2774143043094783E-02      0.9990353162726682E+00     -0.2150391945889328E-01      0.3828861748066711E-01      0.1044914107149095E-02     -0.9948212246146633E+00      0.1549660609893319E-02     -0.1016283950415776E+00      0.2655524775119211E-04
+      0.8361612636375484E+02                          25      0.6424965704300474E+00      0.4188399488284412E+01      0.8189360504613276E+02      0.1494311327755315E+00     -0.9872935041190730E+00      0.1693289705734296E-01      0.1580025750471675E+00      0.2219709419724010E-02      0.9991198317008191E+00     -0.1856836086627572E-01      0.3761353428614069E-01      0.6963808434670491E-03     -0.9927819147754040E+00     -0.3942797495253256E-02     -0.1198687840922344E+00      0.2068605689453662E-04
+      0.8512324587594718E+02                          26      0.6436760758570516E+00      0.4410007896964454E+01      0.8338462498442701E+02      0.1488837281126082E+00     -0.9838883952461851E+00      0.7156962867745140E-01      0.1638334945940457E+00      0.1602780570856442E-02      0.9985006915774901E+00     -0.1440220437188664E-01      0.5281047124607827E-01      0.3420099303359101E-03     -0.9688025108209810E+00     -0.1355640136406891E-01     -0.2474629730926469E+00      0.1480177388990533E-04
+      0.8646937203114588E+02                          27      0.6569885744187199E+00      0.4630161207452426E+01      0.8487553381383671E+02      0.1616895536852675E+00     -0.8955323919774116E+00      0.4266475718522915E+00      0.1264657437876259E+00      0.6316460414236690E-03      0.9939530820683576E+00     -0.7915066229085152E-02      0.1095199730345992E+00      0.7139656234036121E-04      0.2463052311044225E+00     -0.2342700217644817E-01     -0.9689091102549057E+00      0.6159368197033999E-05
diff --git a/wetb/prepost/tests/data/dtu10mw_nogradient_fext_u10000.ind b/wetb/prepost/tests/data/dtu10mw_nogradient_fext_u10000.ind
new file mode 100644
index 0000000000000000000000000000000000000000..1b769c1f56efbf77c4765e296df3cb17fe953112
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nogradient_fext_u10000.ind
@@ -0,0 +1,28 @@
+ #                   s [m] 1                  Node [-] 2                 Fx_e [N]  3                 Fy_e [N]  4                 Fz_e [N]  5                Mx_e [Nm]  6                My_e [Nm]  7                Mz_e [Nm]  8                 Fx_r [N]  9                 Fy_r [N] 10                 Fz_r [N] 11                Mx_r [Nm] 12                My_r [Nm] 13                Mz_r [Nm] 14
+      0.1000000000000000E-01                           2     -0.6220519479112588E+05      0.4386959110844825E+06     -0.3841193782411448E+05     -0.2487113875315152E+08     -0.3892625239366227E+07      0.1278456004660936E+06      0.4968143643374329E+05      0.4416174154554460E+06     -0.1746078088040680E+05     -0.2505362040043254E+08      0.2452206033641757E+07      0.2126241512809403E+06
+      0.3000027716563378E+01                           3     -0.6206666039614371E+05      0.4384981968553886E+06     -0.3806633503703626E+05     -0.2356018457927083E+08     -0.3702765397855537E+07      0.1859773797060649E+06      0.4977592399812499E+05      0.4413604409534044E+06     -0.1747293315111940E+05     -0.2373768416809377E+08      0.2303667194091423E+07      0.2069405263396266E+06
+      0.6000041734190423E+01                           4     -0.6116455727139746E+05      0.4379868450577608E+06     -0.3834391653221281E+05     -0.2224811505911673E+08     -0.3510613308656475E+07     -0.1308701325961735E+05      0.5004655298331730E+05      0.4407185470549610E+06     -0.1750257869930861E+05     -0.2241923645514955E+08      0.2153921850171830E+07      0.2041033757871685E+06
+      0.7000271418919271E+01                           5     -0.1806238560585013E+06      0.4032448229232375E+06     -0.3571131761010167E+05     -0.1998716586368677E+08     -0.9385204413457580E+07      0.1998999809553981E+06      0.5021730590826500E+05      0.4400881394898285E+06     -0.1753038690404563E+05     -0.2198053825643031E+08      0.2103614141497275E+07      0.1989136712757642E+06
+      0.8701763021717801E+01                           6     -0.3252997901745338E+06      0.2979772588444809E+06     -0.3651383244011259E+05     -0.1409692218225806E+08     -0.1600918237014223E+08     -0.3867284230599186E+05      0.5023450718839045E+05      0.4394449864749840E+06     -0.1755728866000100E+05     -0.2123454237690651E+08      0.2018334700732014E+07      0.1979036157163713E+06
+      0.1040850079628084E+02                           7     -0.2790771797710481E+06      0.3402753195866454E+06     -0.3610553974919156E+05     -0.1566479580808431E+08     -0.1334209046613272E+08      0.3835274070571079E+06      0.5008018556208821E+05      0.4383572059647310E+06     -0.1760427170496028E+05     -0.2048837261422299E+08      0.1932738095688366E+07      0.1881756146607006E+06
+      0.1221714185677281E+02                           8     -0.2272658831142912E+06      0.3751078896117142E+06     -0.3577830027075367E+05     -0.1671900077038113E+08     -0.1058105717887323E+08      0.2205696910159309E+06      0.4970246273307010E+05      0.4368672874297383E+06     -0.1767584846892137E+05     -0.1970017039753840E+08      0.1843368324046086E+07      0.1941347506787610E+06
+      0.1322263387610731E+02                           9     -0.1854845376059892E+06      0.3958013645124857E+06     -0.3558061997262844E+05     -0.1735545741829988E+08     -0.8549721995081386E+07      0.1848479715732060E+06      0.4927029436948161E+05      0.4354153900013904E+06     -0.1775079156566224E+05     -0.1926363749687858E+08      0.1794057693751489E+07      0.1935059295372744E+06
+      0.1503187355187086E+02                          10     -0.1296316161854899E+06      0.4155590531001544E+06     -0.3608917991472773E+05     -0.1760789306189526E+08     -0.5862628889136626E+07      0.2719712621803500E+06      0.4870376157767788E+05      0.4337114450670584E+06     -0.1784481609243985E+05     -0.1848066017477731E+08      0.1706095513611641E+07      0.1916286549275333E+06
+      0.1824077992511038E+02                          11     -0.8644199128841216E+05      0.4230656077536433E+06     -0.3462230721029962E+05     -0.1675590960536219E+08     -0.3767176974186298E+07      0.9459195189081630E+05      0.4756897220677060E+05      0.4301943253432284E+06     -0.1804067083665458E+05     -0.1710287647334409E+08      0.1553872660089948E+07      0.1953785794893975E+06
+      0.2143844424534061E+02                          12     -0.6249483341720461E+05      0.4210567504574911E+06     -0.3480226426882942E+05     -0.1559157964486599E+08     -0.2632878001707643E+07     -0.1373518958965843E+06      0.4590200838483182E+05      0.4242188199349993E+06     -0.1835721512618828E+05     -0.1574909952402139E+08      0.1407054235262277E+07      0.1852849134026589E+06
+      0.2463372253480342E+02                          13     -0.4573169405017483E+05      0.4140358185112571E+06     -0.3449961524302161E+05     -0.1436339101956619E+08     -0.1824092557038532E+07      0.2919491308795095E+06      0.4376955963658125E+05      0.4152573830556580E+06     -0.1878301812575313E+05     -0.1442538311545061E+08      0.1266359872659738E+07      0.1555769207593542E+06
+      0.2782687059672809E+02                          14     -0.3439554576166112E+05      0.4039404664174109E+06     -0.3314522797080207E+05     -0.1311935407897311E+08     -0.1339902679426051E+07     -0.1237667474174890E+05      0.4148626355762550E+05      0.4041755949320836E+06     -0.1924937693417659E+05     -0.1313763511015755E+08      0.1134789304557479E+07      0.1665556025836815E+06
+      0.3102237659735258E+02                          15     -0.2799492384543208E+05      0.3922820374716422E+06     -0.3024539786326043E+05     -0.1188592818387464E+08     -0.1039724201567224E+07     -0.6702805925138020E+05      0.3917425743685630E+05      0.3919961515587737E+06     -0.1970003790164724E+05     -0.1188783394989002E+08      0.1009021758699751E+07      0.1486170880290851E+06
+      0.3421665012867821E+02                          16     -0.1859056459720837E+05      0.3800853052490590E+06     -0.2635943865819395E+05     -0.1069543615300678E+08     -0.6772635411337508E+06     -0.2069348188544325E+04      0.3685317067636705E+05      0.3791343686628066E+06     -0.2010578708889669E+05     -0.1067906393205156E+08      0.8903545128524821E+06      0.1261232183052559E+06
+      0.4021597872082173E+02                          17     -0.6857634336389980E+04      0.3604557227314730E+06     -0.2148069416008165E+05     -0.8541009341567198E+07     -0.2778676892251748E+06     -0.2330578883392693E+05      0.3351373332287033E+05      0.3590125609753747E+06     -0.2058120892731512E+05     -0.8517358449983422E+07      0.6863973985564703E+06      0.1002887388010149E+06
+      0.4662115166526345E+02                          18      0.2882111205255561E+04      0.3294442102788463E+06     -0.1625346474089156E+05     -0.6432629929339478E+07     -0.1744276743108776E+05     -0.1634682817897259E+05      0.2899586056022919E+05      0.3279106172683241E+06     -0.2097227981089102E+05     -0.6412943712019775E+07      0.4983751482388820E+06      0.7123506804955690E+05
+      0.5302930575614984E+02                          19      0.9573419156752965E+04      0.2917678030946885E+06     -0.1104016591473938E+05     -0.4559344690686118E+07      0.1059410106910547E+06     -0.5973430845032494E+04      0.2431151970269777E+05      0.2903715733917260E+06     -0.2086350680626132E+05     -0.4547590816704739E+07      0.3405654596667597E+06      0.4812608083326022E+05
+      0.5944002225373877E+02                          20      0.1303016075969083E+05      0.2481716661471129E+06     -0.6134678411396699E+04     -0.2962608733394106E+07      0.1312871625336753E+06      0.2283208336557087E+04      0.1961772451275499E+05      0.2470122124378896E+06     -0.1991750582750277E+05     -0.2957688123228143E+07      0.2130133705055405E+06      0.3159602812478947E+05
+      0.6585405181409229E+02                          21      0.1347365295358376E+05      0.1989757717276148E+06     -0.2277623652335125E+04     -0.1681085707137297E+07      0.1012163684084916E+06      0.6358060476400325E+04      0.1493693190246069E+05      0.1980879821463922E+06     -0.1777987689981343E+05     -0.1680032939941479E+07      0.1157748439460740E+06      0.2048997646325784E+05
+      0.7227162425796887E+02                          22      0.1167921736253658E+05      0.1451142382890254E+06     -0.1023056715712573E+02     -0.7458206033590892E+06      0.5415627287329726E+05      0.1034467775716207E+05      0.1030519834371510E+05      0.1445211930672798E+06     -0.1421175635136359E+05     -0.7461687185649794E+06      0.4856376358130042E+05      0.1273149432207982E+05
+      0.7909609719728093E+02                          23      0.7330007872796113E+04      0.8640630520917765E+05     -0.8624222759963800E+02     -0.1502776984582057E+06      0.1084759243684640E+05      0.8136118495975844E+04      0.5685997869424858E+04      0.8605605522130798E+05     -0.9044933444913004E+04     -0.1503616770682211E+06      0.8949615714741156E+04      0.8861364883475146E+04
+      0.8060184206428970E+02                          24      0.4042872467612217E+04      0.4900738599639626E+05     -0.1247876969311650E+03     -0.1095139829120225E+06      0.8427499964315701E+04      0.6018194927618080E+04      0.2974278436109421E+04      0.4880318134706967E+05     -0.5242845615673446E+04     -0.1096432376792566E+06      0.6685725181602875E+04      0.5849392201823506E+04
+      0.8210874792071280E+02                          25      0.2939088629082651E+04      0.3586333731552351E+05     -0.1302859506681176E+03     -0.5542733837781249E+05      0.4212811294526341E+04      0.4928442061922298E+04      0.2087874438811689E+04      0.3571547463389449E+05     -0.3857438503676456E+04     -0.5550776615399592E+05      0.3397592848856140E+04      0.4644504198019948E+04
+      0.8361612636375484E+02                          26      0.1865972386954317E+04      0.2329586116258260E+05     -0.1097616319823834E+03     -0.2035438429729204E+05      0.1485778936605411E+04      0.3314057299664242E+04      0.1280056623594766E+04      0.2319928591219333E+05     -0.2519054599615964E+04     -0.2035517887099387E+05      0.1328762316741204E+04      0.3375286475616193E+04
+      0.8512324587594718E+02                          27      0.8947004134002606E+03      0.1179809436721369E+05     -0.4334250846938707E+02     -0.2764788729538687E+04      0.1650211680775192E+03      0.1597790363614786E+04      0.5904804478758647E+03      0.1174701577186372E+05     -0.1286993161126587E+04     -0.2654446976586075E+04      0.2756609575415551E+03      0.1761290730112945E+04
+      0.8646937203114588E+02                          28      0.1969797826219535E+03      0.2934114545323812E+04     -0.1083662925064995E+02      0.6962876954748293E+03     -0.5067218460989268E+02      0.3631401551918350E+03      0.1192852275557883E+03      0.2920542698133473E+04     -0.3227197162353349E+03      0.7373787486577517E+03     -0.5047425413920145E+01      0.2747764582391104E+03
diff --git a/wetb/prepost/tests/data/dtu10mw_nogradient_u10000.ind b/wetb/prepost/tests/data/dtu10mw_nogradient_u10000.ind
new file mode 100644
index 0000000000000000000000000000000000000000..2d200999282c74633fd6e560a67284848245db99
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nogradient_u10000.ind
@@ -0,0 +1,49 @@
+ #                   s [m] 1                     A [-] 2                    AP [-] 3                PHI0 [rad] 4              ALPHA0 [rad] 5                  U0 [m/s] 6                 FX0 [N/m] 7                 FY0 [N/m] 8                 M0 [Nm/m] 9                  UX0 [m] 10                  UY0 [m] 11                  UZ0 [m] 12               Twist[rad] 13                X_AC0 [m] 14                Y_AC0 [m] 15                Z_AC0 [m] 16                  CL0 [-] 17                  CD0 [-] 18                  CM0 [-] 19               CLp0[1/rad]20               CDp0[1/rad]21               CMp0[1/rad]22                   F0 [-] 23                F'[1/rad] 24               CL_FS0 [-] 25              CLFS'[1/rad]26                V_a [m/s] 27                V_t [m/s] 28              Tors. [rad] 29                 vx [m/s] 30                 vy [m/s] 31                chord [m] 32                   CT [-] 33                   CP [-] 34              angle [rad] 35                  v_1 [-] 36                  v_2 [-] 37                  v_3 [-] 38
+      0.8882990024446988E-01      0.1115071216727919E+00     -0.1020837965456315E+00      0.1298126816909545E+01      0.1043019123067352E+01      0.9159326913496336E+01     -0.4499319627132439E+02      0.1594702603957731E+03      0.0000000000000000E+00      0.1372292498302841E-05      0.1892799225633457E-04      0.1894359844145654E-04      0.2530793969956788E+00      0.1302155720565163E+01     -0.4627626061445611E+00      0.2871592861789574E+01      0.0000000000000000E+00      0.6000000238418579E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.1115071216727919E+01      0.2824652595166054E+00      0.3824017477143674E-06     -0.4612767550097719E+01      0.7913004804564686E+01      0.5380000114440918E+01      0.3942628928171870E+00     -0.3276779553535365E-01      0.3752204706082447E-04     -0.9869081009996770E+00     -0.1609602073095953E+00      0.1018840791852023E-01
+      0.3549547317585976E+00      0.1048327063912239E+00     -0.9741252649098227E-01      0.1275181844479815E+01      0.1019923992823860E+01      0.9291626741339096E+01     -0.5008108269110544E+02      0.1630001019082874E+03      0.0000000000000000E+00      0.7165217131177570E-05      0.9545542652972250E-04      0.7833535623191779E-04      0.2530992013082043E+00      0.1302154514069358E+01     -0.4753734290835315E+00      0.3137474739538340E+01      0.0000000000000000E+00      0.6000000238418579E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.1048327063912239E+01      0.2942187529177885E+00      0.1545076279830965E-05     -0.4863522838621652E+01      0.7917100043486465E+01      0.5380000114440918E+01      0.3740526283649884E+00     -0.3656604678525230E-01      0.1495041278006660E-03     -0.9868751683717101E+00     -0.1611546949769697E+00      0.1032278452749412E-01
+      0.7972805615186989E+00      0.9544430221025138E-01     -0.9038551943386412E-01      0.1237629702255942E+01      0.9821462984291049E+00      0.9506865959763557E+01     -0.5883919265177016E+02      0.1685419755592228E+03      0.0000000000000000E+00      0.2277426894381485E-04      0.2880218831309289E-03      0.1798214665944542E-03      0.2531230273295337E+00      0.1302160512121300E+01     -0.4962747765947574E+00      0.3579399227028247E+01      0.0000000000000000E+00      0.6000000238418579E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.9544430221025137E+00      0.3110546151765470E+00      0.3487462243042677E-05     -0.5278580561525450E+01      0.7906774793327348E+01      0.5380000114440918E+01      0.3449404389397532E+00     -0.4310315397775426E-01      0.3343831984061057E-03     -0.9868603914100011E+00     -0.1612400339101713E+00      0.1040293432361757E-01
+      0.1413989490580933E+01      0.8512282541324710E-01     -0.8210593916723044E-01      0.1186691847502893E+01      0.9309449520776011E+00      0.9804177913965763E+01     -0.7167694649120168E+02      0.1758169951713174E+03      0.0000000000000000E+00      0.5688773674838998E-04      0.6916090140546283E-03      0.3270455932611327E-03      0.2531372998180880E+00      0.1302185935036978E+01     -0.5252902308132262E+00      0.4195553886695635E+01      0.0000000000000000E+00      0.6000000238418579E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.8512282541324711E+00      0.3307648249269045E+00      0.6215683422598382E-05     -0.5853841519061226E+01      0.7864759630046490E+01      0.5380000114440918E+01      0.3119868697965340E+00     -0.5267951543665773E-01      0.5895517981367549E-03     -0.9868478280037166E+00     -0.1613108717500818E+00      0.1049614123261417E-01
+      0.2202547296090609E+01      0.7618587208706359E-01     -0.7212461861418192E-01      0.1123259013989752E+01      0.8672549002945393E+00      0.1018577668627565E+02     -0.8709081764946313E+02      0.1867446056990908E+03     -0.3052647747346417E+01      0.1211922503943086E-03      0.1434185492064199E-02      0.5248918664211288E-03      0.2531234029119073E+00      0.1302248283477529E+01     -0.5621701895755226E+00      0.4983412305939767E+01      0.8729437489573754E-02      0.6031871710834774E+00     -0.1659654657887331E-02     -0.2093157060441559E-01      0.1243217138265460E-02      0.5817803300671424E-03      0.0000000000000000E+00      0.0000000000000000E+00      0.8729437489573754E-02     -0.2093157060441559E-01      0.7618587208706360E+00      0.3446981324457559E+00      0.9736818745896582E-05     -0.6589405818151940E+01      0.7767224579370799E+01      0.5380000114440918E+01      0.2826266464770896E+00     -0.6424055312616123E-01      0.9114173178542002E-03     -0.9868381617440266E+00     -0.1613625055141113E+00      0.1061059679064288E-01
+      0.3159714137942274E+01      0.7244847991802263E-01     -0.5768461801395235E-01      0.1046476301807585E+01      0.7902196064635221E+00      0.1065644168991263E+02     -0.9704221890990036E+02      0.2108159577496505E+03     -0.1983284375338223E+02      0.2310848807542953E-03      0.2685607256491807E-02      0.6035832625901350E-03      0.2530590665449170E+00      0.1302334760779682E+01     -0.6067319601781450E+00      0.5942742414372173E+01      0.5983400495757734E-01      0.6178494846664621E+00     -0.9851217364913621E-02     -0.1195925466502769E+00      0.7383434492783303E-02      0.3575655133414743E-02      0.0000000000000000E+00      0.0000000000000000E+00      0.5983400495757734E-01     -0.1195925466502769E+00      0.7244847991802262E+00      0.3283705505774683E+00      0.1462921652103148E-04     -0.7498823998714179E+01      0.7571485199537562E+01      0.5380000114440918E+01      0.2701260014963940E+00     -0.7197626411169020E-01      0.1296186147142286E-02     -0.9868114921892358E+00     -0.1614868982433050E+00      0.1118307927472663E-01
+      0.4281556097659065E+01      0.7168456314979099E-01     -0.4477743113024017E-01      0.9633259657712655E+00      0.7067137432193410E+00      0.1125265248771576E+02     -0.1046327087728763E+03      0.2465281439639043E+03     -0.4597675361594133E+02      0.4042284485075154E-03      0.4610520343440450E-02      0.9218796363414938E-03      0.2529714115859868E+00      0.1301086306798629E+01     -0.6584039542177887E+00      0.7063624479933019E+01      0.1339899293548465E+00      0.6282814255819062E+00     -0.2048131448895719E-01     -0.1914706930029549E+00      0.8642596901912826E-01      0.1223344706432824E-01      0.0000000000000000E+00      0.0000000000000000E+00      0.1339899293548465E+00     -0.1914706930029549E+00      0.7168456314979099E+00      0.3025067570241465E+00      0.2446838334535769E-04     -0.8557640757778211E+01      0.7306775805381523E+01      0.5380000114440918E+01      0.2675651374210599E+00     -0.7794544610169891E-01      0.1742096541640582E-02     -0.9866844777655756E+00     -0.1620504910181992E+00      0.1390609813489397E-01
+      0.5563466155436991E+01      0.7956222984761437E-01     -0.2862646409146703E-01      0.8713729469117291E+00      0.6145852512953798E+00      0.1198178063353085E+02     -0.9085917667368103E+02      0.3183428202665132E+03     -0.1144338955772943E+03      0.6552693157408918E-03      0.7412030872776976E-02      0.1310846976965152E-02      0.2528603764758595E+00      0.1297757430237919E+01     -0.7169104736912293E+00      0.8344452418577809E+01      0.2891170075969695E+00      0.6377670751637012E+00     -0.4493652041030010E-01     -0.5919676566063786E-01      0.2118040600688957E+00      0.3673507944334066E-01      0.0000000000000000E+00      0.0000000000000000E+00      0.2891170075969695E+00     -0.5919676566063786E-01      0.7956222984761436E+00      0.2282067804132909E+00      0.3678998473043509E-04     -0.9789266580098865E+01      0.6908930957377876E+01      0.5381498336791992E+01      0.2938619003277445E+00     -0.6831295050943591E-01      0.2239293297826514E-02     -0.9865845240711945E+00     -0.1624405089074774E+00      0.1624986018031450E-01
+      0.7000271419019271E+01      0.9840729927752281E-01     -0.8315764202652504E-02      0.7733164468419328E+00      0.5162927475978381E+00      0.1287997633090203E+02     -0.3357295389092943E+02      0.4484385038956869E+03     -0.2354067456342694E+03      0.1003104972281177E-02      0.1134079742573224E-01      0.1553933243434003E-02      0.2523908360297000E+00      0.1291040442994690E+01     -0.7809794302811472E+00      0.9781780905140684E+01      0.5447098347772406E+00      0.6117717868416308E+00     -0.7922784857392209E-01      0.1398813198017427E+00      0.8588023655287064E+00     -0.1134570490397302E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.5447098347772406E+00      0.1398813198017427E+00      0.9840729927752281E+00      0.7745234404742729E-01      0.7256594273142409E-04     -0.1120113931963035E+02      0.6358322752646916E+01      0.5407573223114014E+01      0.3542996946325975E+00     -0.2654208024841073E-01      0.2811639693579313E-02     -0.9863989819816903E+00     -0.1623653513534703E+00      0.2558399798045811E-01
+      0.8585867624706793E+01      0.1212821108548889E+00      0.1376954777458056E-01      0.6769849670787391E+00      0.4215981435606198E+00      0.1402471718021685E+02      0.8084066145648060E+02      0.6210169996611372E+03     -0.3858360715769096E+03      0.1494822019578512E-02      0.1672813587037292E-01      0.2121143171059714E-02      0.2504502425185715E+00      0.1275867069892797E+01     -0.8473016323750230E+00      0.1136627005144817E+02      0.8140407903588536E+00      0.4908597831737178E+00     -0.1069133720815629E+00      0.1017807469358554E+01      0.1274233937416244E+01     -0.2516420676753769E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.8140407903588536E+00      0.1017807469358554E+01      0.1212821108548889E+01     -0.1485058558646609E+00      0.1444341101186365E-03     -0.1279665845514695E+02      0.5739183249155403E+01      0.5473161220550537E+01      0.4232553859921488E+00      0.5753597342402542E-01      0.3510729847234554E-02     -0.9867090243145938E+00     -0.1572738762863299E+00      0.4086843862870119E-01
+      0.1031374156369502E+02      0.1462403273642520E+00      0.2872904747358300E-01      0.5914904101723487E+00      0.3409909899561144E+00      0.1533938979145422E+02      0.2115998669052056E+03      0.8315520171840027E+03     -0.5566070159088247E+03      0.2218696986720836E-02      0.2387896389590094E-01      0.2610276013989221E-02      0.2451042971595926E+00      0.1230744314563427E+01     -0.9068225133969476E+00      0.1307849823505121E+02      0.1008334577583942E+01      0.3530810644119083E+00     -0.1240968512956049E+00      0.3027455319111807E+01      0.2759925287656759E+00     -0.4290740127474835E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.1008334577583942E+01      0.3027455319111807E+01      0.1462403273642520E+01     -0.3549526051626752E+00      0.2648835114641632E-03     -0.1445620479442991E+02      0.5129816967073172E+01      0.5578697681427002E+01      0.4934612599351104E+00      0.1537429977015270E+00      0.4336863498828508E-02     -0.9886543957350901E+00     -0.1373605610340068E+00      0.6078290926047284E-01
+      0.1217700505475479E+02      0.1680247695234160E+00      0.3424989413363309E-01      0.5177697900749996E+00      0.2786079189585583E+00      0.1685418394498388E+02      0.3192537381797317E+03      0.1060830853724328E+04     -0.7355308829413185E+03      0.3424230777278492E-02      0.3363392372561147E-01      0.3173118967525923E-02      0.2339109874185802E+00      0.1168141132327518E+01     -0.9636762240263640E+00      0.1496665043418371E+02      0.1088294737893350E+01      0.2432861422346810E+00     -0.1293534784708495E+00      0.4974791273041764E+01      0.3540727377052068E+00     -0.6897615935115597E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.1088294737893350E+01      0.4974791273041764E+01      0.1680247695234160E+01     -0.4836946871957233E+00      0.4034262200658615E-03     -0.1620427340573431E+02      0.4635195771870317E+01      0.5716768741607666E+01      0.5508570664648622E+00      0.2332597416720730E+00      0.5398173200968660E-02     -0.9914157993590164E+00     -0.1074821853804008E+00      0.7444657572776373E-01
+      0.1416788256623218E+02      0.1847175185199121E+00      0.3860361816448529E-01      0.4559886137656369E+00      0.2339366807907649E+00      0.1856572282933067E+02      0.4494659030864897E+03      0.1290823198143850E+04     -0.9058275191493153E+03      0.5262591375879033E-02      0.4640365611174557E-01      0.3729517702737439E-02      0.2168427562685489E+00      0.1089006669156235E+01     -0.1013977486065274E+01      0.1694495742960291E+02      0.1096783586720262E+01      0.1272471004093164E+00     -0.1244354725041244E+00      0.6618474108932140E+01      0.1984384562149918E+00     -0.9517909494924343E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.1096783586720262E+01      0.6618474108932140E+01      0.1847175185199121E+01     -0.6178468454636623E+00      0.4876339622331319E-03     -0.1806001812153491E+02      0.4303697204190899E+01      0.5871995925903320E+01      0.5926078253600380E+00      0.3297108292598091E+00      0.6865705861992869E-02     -0.9950534020344803E+00     -0.6969877836411219E-01      0.7078705673935826E-01
+      0.1627818782303772E+02      0.1838810051776029E+00      0.3065798038834721E-01      0.4138069966951395E+00      0.2135450316648075E+00      0.2034853001042115E+02      0.4506855441358115E+03      0.1445946355851340E+04     -0.1278310750163415E+04      0.8080684291928097E-02      0.6374778509880108E-01      0.4529381303864710E-02      0.1950954359776230E+00      0.1010057823687294E+01     -0.1067391489988387E+01      0.1905973139027153E+02      0.9877625128493266E+00      0.1055006480622321E+00     -0.1390787880915682E+00      0.5105655197043410E+01      0.2479289496638172E+00     -0.7883522287895566E+00      0.0000000000000000E+00      0.0000000000000000E+00      0.9877625128493266E+00      0.5105655197043410E+01      0.1838810051776029E+01     -0.5527837444245339E+00      0.5435682111326657E-03     -0.1988632889597835E+02      0.4312377143291945E+01      0.6020071983337402E+01      0.5905577887578578E+00      0.3311825106101295E+00      0.8864489812953796E-02     -0.9976586537579645E+00     -0.3055411016275870E-01      0.6118543081669855E-01
+      0.1849932302183170E+02      0.2159685667248375E+00      0.2893343042192328E-01      0.3614635656927834E+00      0.1849527818675479E+00      0.2221939189966493E+02      0.5077170178502143E+03      0.1819451811340761E+04     -0.1662181296056298E+04      0.1212517548316561E-01      0.8676991468927508E-01      0.5456607917231793E-02      0.1714999825643501E+00      0.9301494876369705E+00     -0.1123720632844517E+01      0.2126989489689247E+02      0.1016654320705987E+01      0.8597390449638941E-01     -0.1462436003141344E+00      0.2250217723976491E+01      0.2398850620627255E+00     -0.5342608119729475E+00      0.9999999999999982E+00     -0.6850206324268134E-15      0.6482858892538667E+00      0.1535930511105923E+01      0.2159685667248375E+01     -0.5831348551582072E+00      0.5566398282572054E-03     -0.2184043872980545E+02      0.4086148856871169E+01      0.6130777359008789E+01      0.6661867445164582E+00      0.3736218830474684E+00      0.1121522099301422E-01     -0.9987570946138217E+00      0.4288337727278713E-02      0.4965758876094863E-01
+      0.2082203662489295E+02      0.3296065533111509E+00      0.3656557639962781E-01      0.2810124127064507E+00      0.1248826266227958E+00      0.2421032421163166E+02      0.6735352525087632E+03      0.2706324150308471E+04     -0.1947954899335009E+04      0.1765536967909220E-01      0.1174196253383517E+00      0.7050398385015200E-02      0.1516641509080557E+00      0.8598673374482201E+00     -0.1189567756829849E+01      0.2359232598468220E+02      0.1255714560963416E+01      0.4128913290728085E-01     -0.1416090765462079E+00      0.1994519424637940E+01      0.4144629265023773E+00     -0.2160315278832673E+00      0.9999999999999978E+00      0.0000000000000000E+00      0.5253695984874741E+00      0.2153973190994964E+01      0.3296065533111508E+01     -0.8192815256385100E+00      0.3833810668005641E-03     -0.2402178132182657E+02      0.3015596219433566E+01      0.6189994335174561E+01      0.8936269996988271E+00      0.4964087145224377E+00      0.1432908971033493E-01     -0.9992195139648914E+00      0.2886795044553666E-01      0.2696301816108511E-01
+      0.2323691183339661E+02      0.3795024294656860E+00      0.3442553351853764E-01      0.2380370152799622E+00      0.9699022425284119E-01      0.2633977184434181E+02      0.7116072723652735E+03      0.3264146012683297E+04     -0.2446671871260287E+04      0.2484515017364319E-01      0.1570479266880154E+00      0.8932640743374520E-02      0.1368783505333089E+00      0.7986162397617826E+00     -0.1262830380373109E+01      0.2599400531489899E+02      0.1269570217938609E+01      0.2510783771335801E-01     -0.1499213581441461E+00      0.7513775827784488E+01      0.8255465289996393E-01     -0.4418641136508543E+00      0.9999999999999982E+00     -0.1439580121266767E-14      0.6169704669987854E+00      0.3860398912699973E+01      0.3795024294656860E+01     -0.8510676984717893E+00      0.1592860248755833E-04     -0.2621597845349727E+02      0.2550696872964059E+01      0.6197136402130127E+01      0.9784224363994352E+00      0.5250577393139627E+00      0.1810128713945091E-01     -0.9990382152904632E+00      0.4382938928844175E-01      0.1276331976202316E-02
+      0.2573393481743558E+02      0.3941782002385824E+00      0.2969060411992817E-01      0.2133980528227496E+00      0.8393055197336198E-01      0.2861436138062509E+02      0.7201606239931846E+03      0.3666419493756219E+04     -0.2903349542116442E+04      0.3421628468830418E-01      0.2089262520304354E+00      0.1144433138376044E-01      0.1256451096153635E+00      0.7501475718357380E+00     -0.1340827239718462E+01      0.2851402056925721E+02      0.1211192959556668E+01      0.1984472537578315E-01     -0.1527946483997893E+00      0.7442493668939435E+01      0.4766479528804820E-01     -0.2999534664687576E+00      0.9099066711870009E+00     -0.2256971313650133E+01      0.6270296424655400E+00      0.4415626545105138E+01      0.3941782002385824E+01     -0.8061260868845757E+00     -0.3165224380594702E-03     -0.2851363591989930E+02      0.2398800502008757E+01      0.6155431270599365E+01      0.1002000728870355E+01      0.5318935010796018E+00      0.2252902271856112E-01     -0.9985016369271135E+00      0.5304213754071534E-01     -0.1345409603983352E-01
+      0.2830282373740730E+02      0.3720265217922004E+00      0.2433061737249556E-01      0.2041811977175851E+00      0.8506701686010021E-01      0.3096026656264970E+02      0.7251196874600694E+03      0.3851032599411464E+04     -0.2884772960554475E+04      0.4577530208526226E-01      0.2738158127811516E+00      0.1452515182393199E-01      0.1157541725352403E+00      0.7118771170888236E+00     -0.1415385109435866E+01      0.3106430314315819E+02      0.1100288217997779E+01      0.1708854925517548E-01     -0.1333842434517316E+00      0.7234094061470384E+01      0.4322686823995253E-01     -0.2337806131977468E+00      0.9109707001537657E+00     -0.1819740759558607E+01      0.5693738690337923E+00      0.4155139549456357E+01      0.3720265217922004E+01     -0.7203496976414496E+00     -0.5828902806656929E-03     -0.3084831370279488E+02      0.2630522253143460E+01      0.6069400787353516E+01      0.9661310156591972E+00      0.5361339213803639E+00      0.2762268449209817E-01     -0.9980151389710279E+00      0.5961874568971435E-01     -0.2028269079953618E-01
+      0.3093310669284160E+02      0.3508134178489662E+00      0.2007620286329528E-01      0.1955425935859804E+00      0.8564067661450799E-01      0.3338828008703164E+02      0.7270157163185872E+03      0.4022795719973079E+04     -0.2834357558393435E+04      0.5985944823737188E-01      0.3548853911427714E+00      0.1853833980126041E-01      0.1065810241322976E+00      0.6837540187095908E+00     -0.1486360881592475E+01      0.3369454835140718E+02      0.1007561966409794E+01      0.1483742311476143E-01     -0.1174756439981189E+00      0.7113525907351925E+01      0.3579968948267905E-01     -0.1866609591667970E+00      0.9088082313845195E+00     -0.1355880021493009E+01      0.5218386521348475E+00      0.3965783256204929E+01      0.3508134178489662E+01     -0.6450469668909523E+00     -0.1278556255607084E-02     -0.3326591464659206E+02      0.2855900890389137E+01      0.5944376468658447E+01      0.9304935776796762E+00      0.5380300635030186E+00      0.3345933029010152E-01     -0.9972307729985088E+00      0.6442892926241933E-01     -0.3714429240709399E-01
+      0.3361392744049002E+02      0.3313059983086316E+00      0.1671408389108583E-01      0.1873237878647162E+00      0.8593033260616249E-01      0.3586852187999462E+02      0.7259760075987620E+03      0.4183749954409868E+04     -0.2758798211555315E+04      0.7665129025692063E-01      0.4539970204805854E+00      0.2298669861696112E-01      0.9786626049434513E-01      0.6637283952428490E+00     -0.1549938541943604E+01      0.3637250137441881E+02      0.9314473643877020E+00      0.1299887898337568E-01     -0.1045515712688838E+00      0.6895775960374072E+01      0.3150291352535950E-01     -0.1344889860784811E+00      0.9089426033437940E+00     -0.1171873234836242E+01      0.4823914233869683E+00      0.3796194230769561E+01      0.3313059983086316E+01     -0.5799571720310729E+00     -0.2267510137696680E-02     -0.3573617636847496E+02      0.3078402250665902E+01      0.5786662578582764E+01      0.8965091471458965E+00      0.5376724793870551E+00      0.4018056759834689E-01     -0.9961669994548636E+00      0.6794577336854934E-01     -0.5508793950112746E-01
+      0.3633431290211937E+02      0.3328078927891775E+00      0.1452321394063707E-01      0.1744894237727010E+00      0.8161069223404417E-01      0.3838306370648926E+02      0.7268680277126477E+03      0.4510322386366538E+04     -0.2914520932180279E+04      0.9644493317850200E-01      0.5744069049113798E+00      0.2823539021795796E-01      0.8916452472885060E-01      0.6584224905055722E+00     -0.1603351568794637E+01      0.3909689941916020E+02      0.9036454056797191E+00      0.1229130506139835E-01     -0.1028687709510826E+00      0.6780102630933503E+01      0.3567151100078186E-01     -0.1248520160464169E+00      0.9288237373504888E+00     -0.1333416318787343E+01      0.4643302040579098E+00      0.3726968308083597E+01      0.3328078927891775E+01     -0.5418048402974127E+00     -0.3255026559607077E-02     -0.3825531317767134E+02      0.3128992357724526E+01      0.5603367805480957E+01      0.8991624917351559E+00      0.5386715646195340E+00      0.4815842733787630E-01     -0.9953588538261608E+00      0.7009485835613551E-01     -0.6593529360104151E-01
+      0.3908300715810285E+02      0.3349453841069853E+00      0.1273471704586858E-01      0.1629977982645791E+00      0.7860387674077637E-01      0.4092931162128840E+02      0.7276702374643710E+03      0.4847587012227068E+04     -0.3043855354428603E+04      0.1192391642209768E+00      0.7179355904733771E+00      0.3451112043755700E-01      0.8040950448568986E-01      0.6582830567946640E+00     -0.1643635657680311E+01      0.4184578356415263E+02      0.8844803298048476E+00      0.1173436703725434E-01     -0.1016749284628805E+00      0.6813827566560236E+01      0.3037486509524965E-01     -0.1026135460485704E+00      0.9438982448022389E+00     -0.1172238508191243E+01      0.4518139278885137E+00      0.3686540745631711E+01      0.3349453841069852E+01     -0.5085089262107035E+00     -0.4205361425314089E-02     -0.4080293441362640E+02      0.3213890637503954E+01      0.5401539802551270E+01      0.9029313589705859E+00      0.5395791882146852E+00      0.5594997085216672E-01     -0.9945973434848092E+00      0.7365457427131532E-01     -0.7315140478457642E-01
+      0.4184880047842645E+02      0.3383723882738905E+00      0.1129369641274474E-01      0.1525025790428025E+00      0.7688837564341634E-01      0.4349885965508211E+02      0.7290173477226627E+03      0.5202131814950984E+04     -0.3134465228685669E+04      0.1448449627893341E+00      0.8845601550202054E+00      0.4114901398168058E-01      0.7116557385254865E-01      0.6628151126473404E+00     -0.1669240374156738E+01      0.4461047105349293E+02      0.8743160344976925E+00      0.1125928550848735E-01     -0.1006430837689627E+00      0.6797471375122905E+01      0.3085247473401945E-01     -0.1061357663578696E+00      0.9565854848994252E+00     -0.1107338960017186E+01      0.4444336619196291E+00      0.3645023847304255E+01      0.3383723882738905E+01     -0.4807392327816331E+00     -0.5311921308972877E-02     -0.4337034422270376E+02      0.3341262231061314E+01      0.5183926582336426E+01      0.9089315393775561E+00      0.5409310477026190E+00      0.6524856104040659E-01     -0.9939771722836823E+00      0.7594633838956649E-01     -0.7900338387948078E-01
+      0.4462025479717411E+02      0.3433434739621418E+00      0.1012138458180276E-01      0.1428174598026153E+00      0.7645262820490685E-01      0.4608203102638075E+02      0.7305351318327305E+03      0.5577807878156828E+04     -0.3192873362101904E+04      0.1734139003870070E+00      0.1079291702249377E+01      0.4895106582844022E-01      0.6128156532529078E-01      0.6686011149041255E+00     -0.1676496388196663E+01      0.4738246973959082E+02      0.8726537063331844E+00      0.1089187854851705E-01     -0.9995035076025444E-01      0.6778971465575266E+01      0.3081835960285015E-01     -0.1014468486196860E+00      0.9674001053643529E+00     -0.1048337573549797E+01      0.4417495657541416E+00      0.3608898288662009E+01      0.3433434739621418E+01     -0.4575682243139833E+00     -0.6524700442198235E-02     -0.4594742177539796E+02      0.3519661306149100E+01      0.4955802917480469E+01      0.9175657466768891E+00      0.5424378832347321E+00      0.7507890530857533E-01     -0.9933150056058180E+00      0.7914532288354018E-01     -0.8403164584824845E-01
+      0.4738604190113266E+02      0.3487298943431738E+00      0.9131112120774942E-02      0.1340821235737913E+00      0.7701233616058975E-01      0.4866565477796846E+02      0.7314605855783356E+03      0.5962967935132297E+04     -0.3215546390055320E+04      0.2045449197576739E+00      0.1299658374890566E+01      0.5708177869892950E-01      0.5127191747546145E-01      0.6766836174339187E+00     -0.1666408010867733E+01      0.5014894091488852E+02      0.8770441048846181E+00      0.1067182301362452E-01     -0.9942491721424704E-01      0.6766379239434980E+01      0.2926618665473914E-01     -0.9870092926173218E-01      0.9741860137043907E+00     -0.9313541834716927E+00      0.4428226824620477E+00      0.3573571078164140E+01      0.3487298943431738E+01     -0.4368699417530206E+00     -0.7823552914699433E-02     -0.4852141052659596E+02      0.3744152170778868E+01      0.4721762657165527E+01      0.9268208129897839E+00      0.5435584150061827E+00      0.8514983079740061E-01     -0.9926375662507637E+00      0.8270473457053361E-01     -0.8849061502487356E-01
+      0.5013474639148518E+02      0.3544485353179714E+00      0.8301169285641685E-02      0.1261997001939303E+00      0.7833203376899027E-01      0.5123897876550652E+02      0.7325622728887288E+03      0.6355640486777474E+04     -0.3209340545084116E+04      0.2381278538831165E+00      0.1550608134406031E+01      0.6611074864177624E-01      0.4123087565167051E-01      0.6870528977720243E+00     -0.1633928647260559E+01      0.5289804752356971E+02      0.8869361333212034E+00      0.1048042773645610E-01     -0.9918588519991509E-01      0.6712661316535584E+01      0.3073481219975595E-01     -0.9007974389492124E-01      0.9771454127716389E+00     -0.9857143914043164E+00      0.4473128162438123E+00      0.3553176820085898E+01      0.3544485353179714E+01     -0.4188964998436331E+00     -0.9249806788321309E-02     -0.5108186031143360E+02      0.4009550106335178E+01      0.4485692024230957E+01      0.9365214044082236E+00      0.5449150705635921E+00      0.9731166978991609E-01     -0.9922288235031366E+00      0.8474598993517918E-01     -0.9110476935723076E-01
+      0.5285511266613818E+02      0.3597116020460446E+00      0.7578521983859073E-02      0.1192123787068352E+00      0.8030854376547197E-01      0.5378947219946156E+02      0.7326061806526775E+03      0.6745081730977377E+04     -0.3173393756985235E+04      0.2737433748084033E+00      0.1829579053321136E+01      0.7554902649158635E-01      0.3132328900871002E-01      0.6992623560346432E+00     -0.1581152829209596E+01      0.5561848815207055E+02      0.9006787120033084E+00      0.1038280918567895E-01     -0.9908005926886941E-01      0.6684346336415644E+01      0.3115496201274125E-01     -0.7957527230980563E-01      0.9768522514350370E+00     -0.9980492265538154E+00      0.4542943482374192E+00      0.3544054905802804E+01      0.3597116020460446E+01     -0.4020638772797475E+00     -0.1065214797203009E-01     -0.5361610882066152E+02      0.4315112330824034E+01      0.4251268386840820E+01      0.9452972841174566E+00      0.5454254435211183E+00      0.1077871256047741E+00     -0.9915738325052944E+00      0.8886364768206058E-01     -0.9425808618586841E-01
+      0.5553594456934771E+02      0.3639777512871580E+00      0.6950402837444844E-02      0.1131058111800688E+00      0.8272366841170005E-01      0.5630763127855309E+02      0.7323290750650262E+03      0.7121936482659905E+04     -0.3111013317334726E+04      0.3109378473052663E+00      0.2136941827533620E+01      0.8499540950129614E-01      0.2186683722225164E-01      0.7133512101835293E+00     -0.1507620024176854E+01      0.5829914747692152E+02      0.9170762895762135E+00      0.1035571318510253E-01     -0.9905223681960539E-01      0.6703603243044967E+01      0.2874116922314734E-01     -0.7818632168762454E-01      0.9756583030142802E+00     -0.9234725130775097E+00      0.4627754206501957E+00      0.3545517202350368E+01      0.3639777512871580E+01     -0.3864836438476927E+00     -0.1216110570515532E-01     -0.5611507878165654E+02      0.4652663057859576E+01      0.4021596431732178E+01      0.9522217896439283E+00      0.5459015051029252E+00      0.1217739723611594E+00     -0.9914378865546716E+00      0.8993615545192701E-01     -0.9466997964797932E-01
+      0.5816620905446771E+02      0.3667746546774345E+00      0.6389500589028451E-02      0.1078587544813880E+00      0.8536210257089989E-01      0.5878040731225899E+02      0.7312020293313253E+03      0.7476194377597791E+04     -0.3027735332317018E+04      0.3493449776455281E+00      0.2472963996280439E+01      0.9466669125821170E-01      0.1296745483792817E-01      0.7295578898503383E+00     -0.1411802766851979E+01      0.6092809078845875E+02      0.9349809599276278E+00      0.1036652330871800E-01     -0.9913366856247983E-01      0.6706578754239533E+01      0.2997924124566737E-01     -0.8235544580523199E-01      0.9730083389050640E+00     -0.9020726922780216E+00      0.4722872431009188E+00      0.3550209452961041E+01      0.3667746546774345E+01     -0.3712909165784668E+00     -0.1363743599034532E-01     -0.5856638006149593E+02      0.5011527739869534E+01      0.3798942565917969E+01      0.9564596175632260E+00      0.5456877978812084E+00      0.1337890886413589E+00     -0.9910524733137064E+00      0.9265258183411168E-01     -0.9607546106235160E-01
+      0.6073516474323289E+02      0.3683534891816639E+00      0.5891909730650288E-02      0.1033309029902950E+00      0.8823119383721788E-01      0.6119836729575329E+02      0.7294437697302316E+03      0.7806360016725889E+04     -0.2928939166991908E+04      0.3883738089537040E+00      0.2831130333117354E+01      0.1040357048976119E+00      0.4590983915462292E-02      0.7474428130746417E+00     -0.1297806981918692E+01      0.6349522195904152E+02      0.9543628972110786E+00      0.1042865900571786E-01     -0.9933925513404167E-01      0.6760751134062100E+01      0.2816515025693382E-01     -0.9071909309777261E-01      0.9716125252411432E+00     -0.7599229779191212E+00      0.4823345064006829E+00      0.3556821485689704E+01      0.3683534891816639E+01     -0.3567782883052407E+00     -0.1506423898677914E-01     -0.6096031498920325E+02      0.5392601977065143E+01      0.3585104703903198E+01      0.9583236997368959E+00      0.5450958677588955E+00      0.1467913713650803E+00     -0.9908765123651189E+00      0.9449495115302640E-01     -0.9609600121626506E-01
+      0.6323214841038892E+02      0.3683460910598184E+00      0.5444175168147423E-02      0.9950363549925351E-01      0.9111028175671122E-01      0.6354982537179368E+02      0.7269512413170457E+03      0.8101449665996425E+04     -0.2818306295770226E+04      0.4276388650755830E+00      0.3214089201043716E+01      0.1130207300480919E+00     -0.3074993466853244E-02      0.7664296270109755E+00     -0.1162459417635753E+01      0.6598885568696662E+02      0.9738443594738230E+00      0.1051011985828799E-01     -0.9961595288268413E-01      0.6773903030486810E+01      0.2864789445229435E-01     -0.9979376374331639E-01      0.9709608327693902E+00     -0.6760636160086159E+00      0.4923029282969428E+00      0.3551503708199744E+01      0.3683460910598184E+01     -0.3425918757831400E+00     -0.1643080596270059E-01     -0.6328624158185628E+02      0.5782035215077554E+01      0.3381911516189575E+01      0.9569685468825669E+00      0.5439941409561946E+00      0.1601037840951608E+00     -0.9908037663251269E+00      0.9592573264829858E-01     -0.9542615182349543E-01
+      0.6564699277333663E+02      0.3665446929931087E+00      0.5033292657361512E-02      0.9633539004181095E-01      0.9379428521997391E-01      0.6582441355744930E+02      0.7232902305083920E+03      0.8350622063653451E+04     -0.2697756898863313E+04      0.4666264159281822E+00      0.3612937602184764E+01      0.1215731010839107E+00     -0.9931330834218962E-02      0.7861293041468663E+00     -0.1012337749616003E+01      0.6839937736348510E+02      0.9920326318861438E+00      0.1058701090621313E-01     -0.9988665126488755E-01      0.6776997912846093E+01      0.2864789445229435E-01     -0.1010378811731250E+00      0.9691955321612593E+00     -0.6440320476889473E+00      0.5018360053664974E+00      0.3551841987811450E+01      0.3665446929931087E+01     -0.3282878123964539E+00     -0.1771923416872836E-01     -0.6553508496887281E+02      0.6164905376786906E+01      0.3190124511718750E+01      0.9516403092686386E+00      0.5418686967663853E+00      0.1705110577366567E+00     -0.9905064282393687E+00      0.9831025076587947E-01     -0.9608387071146043E-01
+      0.6796974862496995E+02      0.3639601464628474E+00      0.4666991480929000E-02      0.9361390316911757E-01      0.9640049318688328E-01      0.6801328872281945E+02      0.7185985352062763E+03      0.8559018820162173E+04     -0.2571814868445195E+04      0.5048681840013305E+00      0.4024317338204787E+01      0.1291997992355647E+00     -0.1612836937227981E-01      0.8061722828697511E+00     -0.8487915762741949E+00      0.7071664648255516E+02      0.1009685114950589E+01      0.1066167327696988E-01     -0.1001460436151694E+00      0.6767425023146103E+01      0.2864789445229435E-01     -0.9718897859754910E-01      0.9675292508320475E+00     -0.6387462863861331E+00      0.5110915218436187E+00      0.3550562401307545E+01      0.3639601464628473E+01     -0.3146928814483602E+00     -0.1895840364381462E-01     -0.6769750776461417E+02      0.6546364285128343E+01      0.3010621309280396E+01      0.9434284440938556E+00      0.5392198080614847E+00      0.1846958131057218E+00     -0.9906758085195838E+00      0.9844561592521006E-01     -0.9418016308755235E-01
+      0.7019081212164362E+02      0.3613517232994207E+00      0.4333337452985719E-02      0.9119176762354024E-01      0.9884982644446641E-01      0.7010427311829598E+02      0.7116817552495723E+03      0.8727462621913768E+04     -0.2443637628581757E+04      0.5420272713870162E+00      0.4446421100778617E+01      0.1360750212089670E+00     -0.2190248107912885E-01      0.8264437684673811E+00     -0.6728999363133850E+00      0.7293085720745037E+02      0.1026238175859320E+01      0.1073184151761161E-01     -0.1003749980455246E+00      0.6747131761965736E+01      0.2864789445229435E-01     -0.8903000520908773E-01      0.9659485877733573E+00     -0.6552897719592763E+00      0.5197850697192242E+00      0.3547908186367183E+01      0.3613517232994207E+01     -0.3013310395082658E+00     -0.2015446031383766E-01     -0.6976204739208308E+02      0.6918515238791514E+01      0.2843859195709229E+01      0.9327895622536413E+00      0.5346726704093869E+00      0.1959471471318870E+00     -0.9905867890651427E+00      0.9970890953948389E-01     -0.9378670848295766E-01
+      0.7230117793318738E+02      0.3593056414432578E+00      0.4027762680128538E-02      0.8896077425081847E-01      0.1010244910769124E+00      0.7209004613290085E+02      0.7018900169654148E+03      0.8852899239224842E+04     -0.2316077465412675E+04      0.5776908752206387E+00      0.4867867496572750E+01      0.1427172030295054E+00     -0.2721759629645356E-01      0.8469467238544818E+00     -0.4952854546902897E+00      0.7503493827236795E+02      0.1040882922502877E+01      0.1079414108047106E-01     -0.1005573501465165E+00      0.6719940549474317E+01      0.2864789445229435E-01     -0.7809775640567428E-01      0.9644925413547826E+00     -0.6862809606267740E+00      0.5274969321620487E+00      0.3544367006648890E+01      0.3593056414432578E+01     -0.2881522609927281E+00     -0.2129135655929457E-01     -0.7172248527762699E+02      0.7270478460483360E+01      0.2689931869506836E+01      0.9196640875993366E+00      0.5277276970315951E+00      0.2040733721022290E+00     -0.9902918733204601E+00      0.1017381348950306E+00     -0.9471725050676286E-01
+      0.7429211810231635E+02      0.3592485457525474E+00      0.3759758258237770E-02      0.8671594302265222E-01      0.1031684191157556E+00      0.7396207021737359E+02      0.6890885789947952E+03      0.8944849649014142E+04     -0.2192011126693797E+04      0.6114803754486422E+00      0.5285608827338921E+01      0.1489412659183813E+00     -0.3214342644345791E-01      0.8668981531869682E+00     -0.3145856168791282E+00      0.7701791714586690E+02      0.1055253699283905E+01      0.1085556010464116E-01     -0.1007101948528296E+00      0.6684687010698526E+01      0.2864789445229435E-01     -0.6392408490600904E-01      0.9629757792902950E+00     -0.7309166072486437E+00      0.5350910775048899E+00      0.3539779719340258E+01      0.3592485457525474E+01     -0.2760766115787279E+00     -0.2207914197130639E-01     -0.7356880333876114E+02      0.7617020818035702E+01      0.2548722505569458E+01      0.9052919985621202E+00      0.5190202099236902E+00      0.2165900777988564E+00     -0.9905431220273079E+00      0.1020341067754660E+00     -0.9172439402327916E-01
+      0.7615536938293197E+02      0.3616105180210625E+00      0.3512206176405420E-02      0.8439954389888558E-01      0.1049098380241544E+00      0.7570913737168298E+02      0.6717314877037968E+03      0.8994917818968293E+04     -0.2073383501913782E+04      0.6432139461628748E+00      0.5696241700570035E+01      0.1538268164598406E+00     -0.3674526721266760E-01      0.8860772032770203E+00     -0.1310497591670811E+00      0.7887212468785961E+02      0.1066864657803267E+01      0.1090550712711497E-01     -0.1008098064961834E+00      0.6645941298112028E+01      0.2926708348872922E-01     -0.5156622068630042E-01      0.9616634546925539E+00     -0.7840614013157340E+00      0.5412514279821690E+00      0.3534741744366861E+01      0.3616105180210625E+01     -0.2641005903372469E+00     -0.2285817280799433E-01     -0.7529288916489672E+02      0.7928071818982371E+01      0.2420399665832520E+01      0.8889578905747026E+00      0.5065940583101683E+00      0.2253596609999700E+00     -0.9904890089575935E+00      0.1034985758739232E+00     -0.9066183279800362E-01
+      0.7788332807234244E+02      0.3662721054157091E+00      0.3275762895257651E-02      0.8202818382701332E-01      0.1062647801979695E+00      0.7732489303534656E+02      0.6488069035814399E+03      0.8981466059288221E+04     -0.1950389895808248E+04      0.6726673071974918E+00      0.6089352745581213E+01      0.1584094118599211E+00     -0.4099941383526007E-01      0.9031384671095788E+00      0.4590658144216464E-01      0.8059104953786597E+02      0.1075832699046035E+01      0.1094800950589424E-01     -0.1008796757433356E+00      0.6592701425377895E+01      0.3338340505179582E-01     -0.5156622068630042E-01      0.9605442788183295E+00     -0.8655282478627624E+00      0.5460360247337410E+00      0.3527836094202654E+01      0.3662721054157092E+01     -0.2516839881341333E+00     -0.2361722170293854E-01     -0.7688871949959486E+02      0.8201456982781078E+01      0.2297663927078247E+01      0.8686965595241846E+00      0.4897110887363266E+00      0.2309457466085740E+00     -0.9902292352513863E+00      0.1056576648219451E+00     -0.9100834861609149E-01
+      0.7946893149115428E+02      0.3728509738516675E+00      0.3040932643614318E-02      0.7964809854158195E-01      0.1072946999533557E+00      0.7880179527766407E+02      0.6192281777234266E+03      0.8874472424988160E+04     -0.1811237009183772E+04      0.6996403769605168E+00      0.6456763148996660E+01      0.1630640915339541E+00     -0.4488588510004962E-01      0.9164355384081762E+00      0.2094891511694499E+00      0.8216771968341708E+02      0.1082603788300900E+01      0.1098385024861574E-01     -0.1009327848127310E+00      0.6556714213005105E+01      0.3616581394822391E-01     -0.5156622068630042E-01      0.9596251613329794E+00     -0.9179612970808336E+00      0.5496669594022487E+00      0.3523153429331543E+01      0.3728509738516675E+01     -0.2382116866028596E+00     -0.2463110245718534E-01     -0.7834864111197800E+02      0.8438801744877674E+01      0.2172112703323364E+01      0.8418781804029787E+00      0.4676662099676877E+00      0.2347513819480205E+00     -0.9897717304090992E+00      0.1079591367334491E+00     -0.9325634819542709E-01
+      0.8090563578013443E+02      0.3818138297177147E+00      0.2803208893823722E-02      0.7719459627908523E-01      0.1079513434326892E+00      0.8013652717480734E+02      0.5819741935926720E+03      0.8656480147047645E+04     -0.1653792589869380E+04      0.7240193090214300E+00      0.6795946801471291E+01      0.1678947019072865E+00     -0.4837282978150227E-01      0.9277184886860532E+00      0.3590474627951318E+00      0.8359839517707766E+02      0.1086902256153358E+01      0.1100813609231148E-01     -0.1009666454352985E+00      0.6535790582870424E+01      0.3778355938304338E-01     -0.5156622068630042E-01      0.9590126044849279E+00     -0.9472259497308313E+00      0.5519795080115552E+00      0.3520423775884234E+01      0.3818138297177147E+01     -0.2234125636111708E+00     -0.2566002264166419E-01     -0.7967004523970355E+02      0.8634053459541740E+01      0.2040647506713867E+01      0.8071451281897857E+00      0.4398796399801200E+00      0.2389801843108749E+00     -0.9893784761875554E+00      0.1097426502201628E+00     -0.9532461161437798E-01
+      0.8218754750015825E+02      0.3940231781056741E+00      0.2558592531897867E-02      0.7456105207431442E-01      0.1080134683764803E+00      0.8131966459996856E+02      0.5363227636085090E+03      0.8316475557005804E+04     -0.1480994595838373E+04      0.7456817984304170E+00      0.7103155918594940E+01      0.1725038694215328E+00     -0.5135779238836610E-01      0.9352425761237564E+00      0.4939420131579114E+00      0.8487428094627161E+02      0.1087308232743093E+01      0.1101048795804032E-01     -0.1009698489838602E+00      0.6533892474335813E+01      0.3793031488303938E-01     -0.5156622068630042E-01      0.9589536771111700E+00     -0.9498293425601860E+00      0.5521982064303944E+00      0.3520175852661182E+01      0.3940231781056741E+01     -0.2070278584614569E+00     -0.2659503685645396E-01     -0.8084575105008426E+02      0.8766549366722314E+01      0.1902971386909485E+01      0.7637862094393141E+00      0.4056738372597947E+00      0.2420400153880869E+00     -0.9889748287256891E+00      0.1114477668836829E+00     -0.9750991438645336E-01
+      0.8330936814845488E+02      0.4104660797863499E+00      0.2303044497262573E-02      0.7162427904809848E-01      0.1072878196218804E+00      0.8234139698325363E+02      0.4816980999945271E+03      0.7842161211196578E+04     -0.1294837743077769E+04      0.7645379226842328E+00      0.7374684994023200E+01      0.1770172743060954E+00     -0.5380141729000063E-01      0.9406178396943244E+00      0.6116744486948670E+00      0.8598995105634954E+02      0.1082558675150952E+01      0.1098360147634907E-01     -0.1009324300200397E+00      0.6556941781088509E+01      0.3614821914827673E-01     -0.5156622068630042E-01      0.9596314760977832E+00     -0.9176376484621007E+00      0.5496427188368098E+00      0.3523183086174325E+01      0.4104660797863499E+01     -0.1888024143380790E+00     -0.2805144649868983E-01     -0.8186794880625794E+02      0.8817290706883723E+01      0.1757604002952576E+01      0.7108812452986172E+00      0.3646589484847417E+00      0.2443465931310787E+00     -0.9883397686367283E+00      0.1128643433849854E+00     -0.1022063683113080E+00
+      0.8426660795264756E+02      0.4319059763514471E+00      0.2030104739935534E-02      0.6829218368470988E-01      0.1057173793222418E+00      0.8318851925536093E+02      0.4178735391935363E+03      0.7212606850208811E+04     -0.1092625032123518E+04      0.7805185629893447E+00      0.7607462915332446E+01      0.1813658082820950E+00     -0.5574954066134918E-01      0.9405924660695042E+00      0.7109604292845306E+00      0.8693964256372415E+02      0.1072218232100902E+01      0.1093016964228931E-01     -0.1008514483489739E+00      0.6613403954247229E+01      0.3178275708026734E-01     -0.5156622068630042E-01      0.9610096417140964E+00     -0.8343477091568159E+00      0.5441041547523806E+00      0.3530524131022510E+01      0.4319059763514471E+01     -0.1682713725368307E+00     -0.3039948940744963E-01     -0.8272408776491392E+02      0.8778099985895379E+01      0.1598740816116333E+01      0.6466718596074940E+00      0.3166459411402722E+00      0.2459093284772075E+00     -0.9872660180875890E+00      0.1140432791137510E+00     -0.1109050946461184E+00
+      0.8505514063806186E+02      0.4585771195489509E+00      0.1727313879741980E-02      0.6453289696246862E-01      0.1033283962135655E+00      0.8386184792287983E+02      0.3445210643925852E+03      0.6383630702249899E+04     -0.8665403617919920E+03      0.7936792487512431E+00      0.7800718252010011E+01      0.1852455049584023E+00     -0.5727117305874933E-01      0.9354655608363777E+00      0.7927599425194776E+00      0.8772401778713406E+02      0.1056322859422813E+01      0.1086014311165400E-01     -0.1007203260818604E+00      0.6681720194129382E+01      0.2864789445229435E-01     -0.6273127873586529E-01      0.9628585409405296E+00     -0.7347847457251656E+00      0.5356573303897207E+00      0.3539393629283917E+01      0.4585771195489508E+01     -0.1444684220967524E+00     -0.3290670803651712E-01     -0.8341455979560936E+02      0.8649898909521056E+01      0.1413247942924500E+01      0.5672304184628556E+00      0.2614447277256032E+00      0.2466316717004368E+00     -0.9859834974271339E+00      0.1152528684907265E+00     -0.1206371381706954E+00
+      0.8567163115082751E+02      0.4912670898185449E+00      0.1397977099077987E-02      0.6024265624885809E-01      0.1001684764421893E+00      0.8414616926766045E+02      0.2650970657625754E+03      0.5361749755352977E+04     -0.6308045855641579E+03      0.8037008764392439E+00      0.7948400411460677E+01      0.1883472301400388E+00     -0.5841345193276071E-01      0.9309875592301252E+00      0.8546856795860388E+00      0.8832254834214447E+02      0.1035125437835575E+01      0.1076961806356590E-01     -0.1004884399473782E+00      0.6731673619369787E+01      0.2864789445229435E-01     -0.8281504144573219E-01      0.9650738701256120E+00     -0.6723163865507475E+00      0.5244622360956169E+00      0.3545894254943076E+01      0.4912670898185450E+01     -0.1177476909957764E+00     -0.4372924274649787E-01     -0.8372437242214043E+02      0.8414705279479167E+01      0.1203100681304932E+01      0.4732011397241254E+00      0.2015816978534570E+00      0.2471255868697532E+00     -0.9795415792131172E+00      0.1158248383000441E+00     -0.1645688349155303E+00
+      0.8611408017890743E+02      0.5604294460236836E+00      0.1055234974813463E-02      0.5182787615999311E-01      0.9248087521028676E-01      0.8431201262581682E+02      0.1739175242872323E+03      0.4285331761883224E+04     -0.4413297027990286E+03      0.8110695706688540E+00      0.8057274866255090E+01      0.1907272418031738E+00     -0.5920811963339375E-01      0.9323009381121626E+00      0.8996873517901850E+00      0.8876362670954597E+02      0.9831312265819954E+00      0.1054938447488302E-01     -0.9975377480633370E-01      0.6777125696083408E+01      0.2864789445229435E-01     -0.1010893376583533E+00      0.9700486845500681E+00     -0.6562051779209904E+00      0.4971709077553493E+00      0.3551885849686129E+01      0.5604294460236837E+01     -0.8932361468653180E-01     -0.4900915583692367E-01     -0.8395172133179356E+02      0.7786138866265549E+01      0.1008032202720642E+01      0.3763226979168864E+00      0.1328994373701169E+00      0.2472873995264553E+00     -0.9756434191428702E+00      0.1163161232015547E+00     -0.1859851557694220E+00
+      0.8638044245352900E+02      0.7202982163717873E+00      0.6498020710184087E-03      0.3291291842778159E-01      0.7393127228732765E-01      0.8437144037989033E+02      0.6741236047222321E+02      0.3263579201598783E+04     -0.3293238203571833E+03      0.8155014176857743E+00      0.8122823417029629E+01      0.1921958521911193E+00     -0.5967523910576052E-01      0.9335376782470501E+00      0.9266051281852498E+00      0.8902915092843043E+02      0.8584277655116725E+00      0.1001797740821412E-01     -0.9815526179360118E-01      0.6797092227796790E+01      0.2864789445229435E-01     -0.9712087675678691E-01      0.9864590809502878E+00     -0.8522755499206365E+00      0.4314082378427289E+00      0.3554979146212995E+01      0.7202982163717873E+01     -0.5516575865259567E-01     -0.5079469407219348E-01     -0.8414096528431321E+02      0.6232007124625898E+01      0.8772154450416565E+00      0.2857412697652233E+00      0.5283827405894347E-01      0.2472918520260787E+00     -0.9741876382559544E+00      0.1166885748096253E+00     -0.1932413568007283E+00
diff --git a/wetb/prepost/tests/data/dtu10mw_nogradient_v2.pwr b/wetb/prepost/tests/data/dtu10mw_nogradient_v2.pwr
new file mode 100644
index 0000000000000000000000000000000000000000..18414e39c409645fdbbe56620e4e9bc8cddb510d
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_nogradient_v2.pwr
@@ -0,0 +1,22 @@
+ #        V [m/s]  1           P [kW]  2           T [kN]  3           Cp [-]  4           Ct [-]  5     Pitch Q [Nm]  6     Flap M [kNm]  7     Edge M [kNm]  8      Pitch [deg]  9      Speed [rpm] 10        Tip x [m] 11        Tip y [m] 12        Tip z [m] 13   J_rot [kg*m^2] 14    J_DT [kg*m^2] 15
+    0.5000000000E+01    0.7970164013E+03    0.3544311249E+03    0.4169257765E+00    0.9270290530E+00    0.9593137616E+04   -0.7285178091E+04    0.4266130258E+03    0.1520000000E+01    0.6000000000E+01    0.1058203520E+00   -0.4570793811E+01    0.8914991938E+02    0.1571481470E+09    0.1608991475E+09
+    0.6000000000E+01    0.1538219709E+04    0.5028097774E+03    0.4652843408E+00    0.9125465540E+00    0.5381154104E+05   -0.1012311164E+05    0.8194469682E+03    0.4600000000E+00    0.6000000000E+01    0.2331471676E+00   -0.3772022879E+01    0.8918537014E+02    0.1571992308E+09    0.1609502313E+09
+    0.7000000000E+01    0.2506968250E+04    0.6601011592E+03    0.4772733569E+00    0.8796844048E+00    0.9494301666E+05   -0.1317256657E+05    0.1255759006E+04    0.0000000000E+00    0.6370000000E+01    0.3464089832E+00   -0.2878930752E+01    0.8920978613E+02    0.1572452212E+09    0.1609962217E+09
+    0.8000000000E+01    0.3761073184E+04    0.8583238617E+03    0.4795985857E+00    0.8756030845E+00    0.1290599401E+06   -0.1709642729E+05    0.1646678063E+04    0.0000000000E+00    0.7280000000E+01    0.4680573570E+00   -0.1686889666E+01    0.8921707881E+02    0.1572877418E+09    0.1610387423E+09
+    0.9000000000E+01    0.5381725790E+04    0.1080307716E+04    0.4822398939E+00    0.8712274625E+00    0.1701250704E+06   -0.2147771394E+05    0.2092028650E+04    0.0000000000E+00    0.8190000000E+01    0.6022479265E+00   -0.4072028243E+00    0.8919234085E+02    0.1573090566E+09    0.1610600571E+09
+    0.1000000000E+02    0.7416703191E+04    0.1324850630E+04    0.4851497784E+00    0.8666262802E+00    0.2187106354E+06   -0.2629113938E+05    0.2591674158E+04    0.0000000000E+00    0.9100000000E+01    0.7474438528E+00    0.9381776879E+00    0.8913007496E+02    0.1573041843E+09    0.1610551848E+09
+    0.1100000000E+02    0.9907489855E+04    0.1546833046E+04    0.4877563114E+00    0.8376746793E+00    0.2812500156E+06   -0.3054220181E+05    0.3279348532E+04    0.0000000000E+00    0.9600000000E+01    0.8928368271E+00    0.2040468370E+01    0.8905155874E+02    0.1572781985E+09    0.1610291990E+09
+    0.1200000000E+02    0.1061009458E+05    0.1249708664E+04    0.4011761897E+00    0.5670298486E+00    0.2254602867E+06   -0.2399070932E+05    0.3517854363E+04    0.4100000000E+01    0.9600000000E+01    0.8502202733E+00   -0.4907227681E-01    0.8918102493E+02    0.1573179472E+09    0.1610689477E+09
+    0.1300000000E+02    0.1061210798E+05    0.1077414875E+04    0.3153521956E+00    0.4162176744E+00    0.1829527984E+06   -0.2005522253E+05    0.3521845895E+04    0.6690000000E+01    0.9600000000E+01    0.7105233446E+00   -0.1322709454E+01    0.8921669091E+02    0.1573104544E+09    0.1610614549E+09
+    0.1400000000E+02    0.1061408289E+05    0.9708623175E+03    0.2525114546E+00    0.3233585057E+00    0.1559026021E+06   -0.1748248961E+05    0.3524751234E+04    0.8620000000E+01    0.9600000000E+01    0.5668062119E+00   -0.2186351338E+01    0.8922198680E+02    0.1572919434E+09    0.1610429439E+09
+    0.1500000000E+02    0.1061339581E+05    0.8933094446E+03    0.2053234529E+00    0.2592252984E+00    0.1363988108E+06   -0.1551096512E+05    0.3526307335E+04    0.1026000000E+02    0.9600000000E+01    0.4200504649E+00   -0.2868223450E+01    0.8921506776E+02    0.1572697184E+09    0.1610207189E+09
+    0.1600000000E+02    0.1060168606E+05    0.8319703358E+03    0.1690492188E+00    0.2122589701E+00    0.1211353723E+06   -0.1387757376E+05    0.3523953686E+04    0.1174000000E+02    0.9600000000E+01    0.2690498697E+00   -0.3446369068E+01    0.8920125147E+02    0.1572456021E+09    0.1609966026E+09
+    0.1700000000E+02    0.1060199870E+05    0.7833490971E+03    0.1409997563E+00    0.1771066564E+00    0.1097315539E+06   -0.1250605460E+05    0.3525398165E+04    0.1310000000E+02    0.9600000000E+01    0.1163116774E+00   -0.3946330182E+01    0.8918317960E+02    0.1572208982E+09    0.1609718987E+09
+    0.1800000000E+02    0.1059699385E+05    0.7428200279E+03    0.1187819243E+00    0.1498731325E+00    0.1008861380E+06   -0.1130036820E+05    0.3524955829E+04    0.1438000000E+02    0.9600000000E+01   -0.4031146691E-01   -0.4394688733E+01    0.8916191174E+02    0.1571956213E+09    0.1609466218E+09
+    0.1900000000E+02    0.1061301360E+05    0.7098108720E+03    0.1012013928E+00    0.1286009026E+00    0.9464589093E+05   -0.1025233215E+05    0.3531373380E+04    0.1559000000E+02    0.9600000000E+01   -0.1970142882E+00   -0.4793352129E+01    0.8913877564E+02    0.1571706451E+09    0.1609216456E+09
+    0.2000000000E+02    0.1060032842E+05    0.6800559869E+03    0.8671236208E-01    0.1112593094E+00    0.8942555227E+05   -0.9275572778E+04    0.3528218038E+04    0.1676000000E+02    0.9600000000E+01   -0.3599092827E+00   -0.5166607540E+01    0.8911332074E+02    0.1571450248E+09    0.1608960253E+09
+    0.2100000000E+02    0.1061037601E+05    0.6555310158E+03    0.7501947555E-01    0.9733203156E-01    0.8621293330E+05   -0.8410161825E+04    0.3532528121E+04    0.1788000000E+02    0.9600000000E+01   -0.5224848197E+00   -0.5504327052E+01    0.8908692639E+02    0.1571200057E+09    0.1608710062E+09
+    0.2200000000E+02    0.1060089637E+05    0.6333157929E+03    0.6522851242E-01    0.8573099891E-01    0.8387051357E+05   -0.7596008959E+04    0.3530327481E+04    0.1897000000E+02    0.9600000000E+01   -0.6898353229E+00   -0.5822876284E+01    0.8905893950E+02    0.1570946936E+09    0.1608456941E+09
+    0.2300000000E+02    0.1058585219E+05    0.6136002561E+03    0.5703937371E-01    0.7604353387E-01    0.8251045411E+05   -0.6836951008E+04    0.3526252354E+04    0.2003000000E+02    0.9600000000E+01   -0.8600819689E+00   -0.6121248953E+01    0.8902982728E+02    0.1570694299E+09    0.1608204304E+09
+    0.2400000000E+02    0.1061174995E+05    0.5981779253E+03    0.5035601369E-01    0.6812491272E-01    0.8292118103E+05   -0.6168793380E+04    0.3535706326E+04    0.2105000000E+02    0.9600000000E+01   -0.1027596898E+01   -0.6391318830E+01    0.8900082562E+02    0.1570453133E+09    0.1607963138E+09
+    0.2500000000E+02    0.1061138296E+05    0.5837890084E+03    0.4457848443E-01    0.6131252946E-01    0.8379087418E+05   -0.5525389373E+04    0.3536426299E+04    0.2205000000E+02    0.9600000000E+01   -0.1200315943E+01   -0.6650924960E+01    0.8897045731E+02    0.1570208937E+09    0.1607718942E+09
diff --git a/wetb/prepost/tests/data/dtu10mw_v1.pwr b/wetb/prepost/tests/data/dtu10mw_v1.pwr
new file mode 100644
index 0000000000000000000000000000000000000000..c412bd21ad129a5ec8ce043223fda289432cf13a
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_v1.pwr
@@ -0,0 +1,23 @@
+ #                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CP grad:                      CP grad:                      CP grad:                      CT grad:                      CT grad:                      CT grad:                      FW grad:                      FW grad:                      FW grad:                      FW grad:                      FW grad:                      FW grad:
+ #                  V [m/s]  1                     P [kW]  2                     T [kN]  3                     Cp [-]  4                     Ct [-]  5               Pitch Q [Nm]  6               Flap M [kNm]  7               Edge M [kNm]  8                Pitch [deg]  9                Speed [rpm] 10                  Tip x [m] 11                  Tip y [m] 12                  Tip z [m] 13             J_rot [kg*m^2] 14              J_DT [kg*m^2] 15            dQ/dt [kNm/deg] 16            dQ/dV [kNm*s/m] 17            dQ/dO [kNm/rpm] 18             dT/dt [kN/deg] 19             dT/dV [kN*s/m] 20             dT/dO [kN/rpm] 21            dQ/dt [kNm/deg] 22            dQ/dV [kNm*s/m] 23            dQ/dO [kNm/rpm] 24             dT/dt [kN/deg] 25             dT/dV [kN*s/m] 26             dT/dO [kN/rpm] 27
+        0.5000000000000000E+01        0.7970169791578448E+03        0.3544331376231053E+03        0.4169253899720817E+00        0.9270327859180790E+00        0.9594040831429129E+04       -0.7285219033288880E+04        0.4266133175794696E+03        0.1520000000000000E+01        0.6000000000000000E+01        0.1058287730378880E+00       -0.4570720974965974E+01        0.8914999301491066E+02        0.1571486810714816E+09        0.1608996815674816E+09        0.5831251033395528E-01        0.1000206679638058E+04       -0.4008084840742802E+03       -0.3704847187110397E+02        0.1050165387044597E+03        0.2817433982911782E+02       -0.3344468879410391E+03        0.1152969629942774E+04       -0.1781608543546648E+03       -0.7148177238243700E+02        0.1229861785878016E+03        0.5240023830288010E+02
+        0.6000000000000000E+01        0.1538224912236643E+04        0.5028078552591091E+03        0.4652851458655674E+00        0.9125415578002156E+00        0.5381139449224927E+05       -0.1012310607930005E+05        0.8194497447377861E+03        0.4600000000000001E+00        0.6000000000000000E+01        0.2331541124624440E+00       -0.3771950370961326E+01        0.8918544380531593E+02        0.1571997657263904E+09        0.1609507662223904E+09       -0.6575852065421641E+00        0.1360685292240942E+04       -0.5295335763450456E+03       -0.3888956373630987E+02        0.1088933025432413E+03        0.5638758735773794E+02       -0.3815679435367393E+03        0.1452539116039467E+04       -0.8784683125326731E+02       -0.6879271504670193E+02        0.1181070865350491E+03        0.9247387169123199E+02
+        0.7000000000000000E+01        0.2506971009248905E+04        0.6601028022124265E+03        0.4772730920662255E+00        0.8796851380883184E+00        0.9494399539690152E+05       -0.1317261132118186E+05        0.1255760383606364E+04        0.0000000000000000E+00        0.6370000000000000E+01        0.3464163472096511E+00       -0.2878853576663426E+01        0.8920985994276425E+02        0.1572457575952859E+09        0.1609967580912859E+09       -0.2528643779328838E+02        0.1686801881376142E+04       -0.6527564920206764E+03       -0.4557642766260658E+02        0.1179995690734789E+03        0.7474061634029611E+02       -0.4676043759302305E+03        0.1735485246954009E+04       -0.3451896667135957E+02       -0.7536369924122208E+02        0.1219283766076678E+03        0.1201105853489163E+03
+        0.8000000000000000E+01        0.3761077610689366E+04        0.8583261420148028E+03        0.4795983570259911E+00        0.8756039627213232E+00        0.1290616013640559E+06       -0.1709648904765180E+05        0.1646679988112126E+04        0.0000000000000000E+00        0.7279999999999999E+01        0.4680668290015476E+00       -0.1686808663189807E+01        0.8921715253544735E+02        0.1572882794039066E+09        0.1610392798999066E+09       -0.4130807159359752E+02        0.1928614031344112E+04       -0.7364728833652474E+03       -0.5954008034563576E+02        0.1346345472969307E+03        0.8316171148132591E+02       -0.6175747894642805E+03        0.1986618571627411E+04       -0.3961041970741662E+02       -0.9855609798135120E+02        0.1395558940783116E+03        0.1358061967881769E+03
+        0.9000000000000000E+01        0.5381732315696529E+04        0.1080310780888448E+04        0.4822396840120912E+00        0.8712284988272722E+00        0.1701276996611903E+06       -0.2147779639777565E+05        0.2092031161012877E+04        0.0000000000000000E+00        0.8190000000000000E+01        0.6022597199520462E+00       -0.4071172529039249E+00        0.8919241427217456E+02        0.1573095953819258E+09        0.1610605958779258E+09       -0.6392415131954662E+02        0.2168770425430150E+04       -0.8173493020109321E+03       -0.7519310583714535E+02        0.1508683659965266E+03        0.9080171939772322E+02       -0.7899152995852835E+03        0.2237579877877443E+04       -0.4515854932658876E+02       -0.1247500970940785E+03        0.1571243910611799E+03        0.1508789278177841E+03
+        0.1000000000000000E+02        0.7416712472523705E+04        0.1324854638420147E+04        0.4851495915269021E+00        0.8666274835963063E+00        0.2187145886774265E+06       -0.2629124662906981E+05        0.2591677355693617E+04        0.0000000000000000E+00        0.9100000000000000E+01        0.7474581721392320E+00        0.9382686044027334E+00        0.8913014778298016E+02        0.1573047241201547E+09        0.1610557246161547E+09       -0.9428810573004743E+02        0.2406215418885532E+04       -0.8956636175853572E+03       -0.9236489094802178E+02        0.1665244149667083E+03        0.9767382283053594E+02       -0.9841216634432151E+03        0.2487347510092050E+04       -0.5114830177977089E+02       -0.1537989065684419E+03        0.1745487952355842E+03        0.1652714219466671E+03
+        0.1100000000000000E+02        0.9907484978459799E+04        0.1546838035017184E+04        0.4877552803179612E+00        0.8376760228436287E+00        0.2812549250549605E+06       -0.3054233250592176E+05        0.3279346840966920E+04        0.0000000000000000E+00        0.9599999999999998E+01        0.8928524405421021E+00        0.2040564708128432E+01        0.8905163079868974E+02        0.1572787391741392E+09        0.1610297396701392E+09       -0.1632699567734226E+03        0.2672915505748699E+04       -0.9742706282546466E+03       -0.1037200892704274E+03        0.1738807143304963E+03        0.1094599534884759E+03       -0.1164980604679687E+04        0.2770708726685543E+04       -0.4106108112561758E+02       -0.1704169938609436E+03        0.1842330438623933E+03        0.1806326291750896E+03
+        0.1200000000000000E+02        0.1061014657108758E+05        0.1249721988766591E+04        0.4011774939027885E+00        0.5670349590398148E+00        0.2254674005676494E+06       -0.2399091342085267E+05        0.3517871550943046E+04        0.4100000000000001E+01        0.9599999999999998E+01        0.8502430701369529E+00       -0.4898551655049134E-01        0.8918109827975073E+02        0.1573184863697737E+09        0.1610694868657737E+09       -0.7784337033826857E+03        0.2546468588076439E+04       -0.1023720042029936E+04       -0.1237896067153187E+03        0.1644370489163406E+03        0.4288966852953075E+02       -0.1665745774681842E+04        0.2944636332917164E+04       -0.7246807321021743E+03       -0.1792897534881736E+03        0.1893269434325972E+03        0.7145399763822869E+02
+        0.1300000000000000E+02        0.1061208985668525E+05        0.1077410211782461E+04        0.3153511352272069E+00        0.4162151841656613E+00        0.1829537578781671E+06       -0.2005519301411685E+05        0.3521839899182678E+04        0.6690000000000001E+01        0.9599999999999998E+01        0.7105471690129758E+00       -0.1322639286687157E+01        0.8921676454114522E+02        0.1573109916241897E+09        0.1610619921201897E+09       -0.1186339036115162E+04        0.2566034130013184E+04       -0.1365347294515502E+04       -0.1341346012752836E+03        0.1603462706088321E+03       -0.5265045893191127E+01       -0.2013571619409162E+04        0.3087262412014407E+04       -0.1375099117387270E+04       -0.1845597632460034E+03        0.1916767051682129E+03        0.1991393679360004E+01
+        0.1400000000000000E+02        0.1061401889940045E+05        0.9708527455375043E+03        0.2525095152315331E+00        0.3233547837483274E+00        0.1559014425969238E+06       -0.1748238186619036E+05        0.3524730063354117E+04        0.8620000000000001E+01        0.9599999999999998E+01        0.5668305192378178E+00       -0.2186290411632646E+01        0.8922206030638033E+02        0.1572924792137012E+09        0.1610434797097012E+09       -0.1523547952554889E+04        0.2671159210619870E+04       -0.1833184228602433E+04       -0.1420876767236560E+03        0.1600668229275855E+03       -0.4513250914672739E+02       -0.2290711378766428E+04        0.3228165966333190E+04       -0.1980554172348935E+04       -0.1861831817900721E+03        0.1913946251390654E+03       -0.4605327364389421E+02
+        0.1500000000000000E+02        0.1061329710264457E+05        0.8932979867475455E+03        0.2053212055070568E+00        0.2592215469078845E+00        0.1363963164848901E+06       -0.1551083229602619E+05        0.3526274664368028E+04        0.1026000000000000E+02        0.9599999999999998E+01        0.4200757268826584E+00       -0.2868166913940989E+01        0.8921514104676571E+02        0.1572702531419329E+09        0.1610212536379329E+09       -0.1799083240054842E+04        0.2779470236572838E+04       -0.2322961288273149E+04       -0.1472603270885045E+03        0.1597141612190730E+03       -0.7859163133860916E+02       -0.2535410606543733E+04        0.3364833626079042E+04       -0.2579346240343986E+04       -0.1876735466315165E+03        0.1910954236289868E+03       -0.8583368343426189E+02
+        0.1600000000000000E+02        0.1060155692128170E+05        0.8319576204597553E+03        0.1690468823274193E+00        0.2122553779774559E+00        0.1211316053618953E+06       -0.1387742351383117E+05        0.3523910934267796E+04        0.1174000000000000E+02        0.9599999999999998E+01        0.2690761528524743E+00       -0.3446315184459102E+01        0.8920132452776888E+02        0.1572461359157421E+09        0.1609971364117420E+09       -0.2053559968445305E+04        0.2897055949448059E+04       -0.2854945362786893E+04       -0.1512013341072509E+03        0.1594501559108274E+03       -0.1088556312566996E+03       -0.2757070978921717E+04        0.3477804202007061E+04       -0.3161027551102246E+04       -0.1876161734298662E+03        0.1883412079472982E+03       -0.1176167054628406E+03
+        0.1700000000000000E+02        0.1060183963499188E+05        0.7833358202115986E+03        0.1409974106264970E+00        0.1771033654307255E+00        0.1097254204332629E+06       -0.1250589079254378E+05        0.3525345535114981E+04        0.1310000000000000E+02        0.9599999999999998E+01        0.1163384787611592E+00       -0.3946279752224537E+01        0.8918325237589035E+02        0.1572214311738325E+09        0.1609724316698325E+09       -0.2312718941165063E+04        0.3040570343953353E+04       -0.3454901155758230E+04       -0.1554536047068252E+03        0.1603861397195578E+03       -0.1384300948287989E+03       -0.2991458505575221E+04        0.3620111503858904E+04       -0.3797217105058340E+04       -0.1886179730251877E+03        0.1874261191595918E+03       -0.1480814315425732E+03
+        0.1800000000000000E+02        0.1059682774409639E+05        0.7428073022970189E+03        0.1187798691986428E+00        0.1498703210122704E+00        0.1008807108347629E+06       -0.1130020855305979E+05        0.3524900845735160E+04        0.1438000000000000E+02        0.9599999999999998E+01       -0.4028360451736025E-01       -0.4394639668368468E+01        0.8916198430045489E+02        0.1571961535432153E+09        0.1609471540392153E+09       -0.2550870636231400E+04        0.3174751915609408E+04       -0.4066267413519080E+04       -0.1587224168720899E+03        0.1607329045824980E+03       -0.1652858350820199E+03       -0.3214120554485696E+04        0.3753682804651501E+04       -0.4442471599628647E+04       -0.1894794023616749E+03        0.1862309776543432E+03       -0.1757299242336659E+03
+        0.1900000000000000E+02        0.1061289335441474E+05        0.7098016173736669E+03        0.1012000817235990E+00        0.1285990169176314E+00        0.9464525489133733E+05       -0.1025221596297727E+05        0.3531333518711257E+04        0.1559000000000000E+02        0.9599999999999998E+01       -0.1969844320530114E+00       -0.4793302156631236E+01        0.8913884812140398E+02        0.1571711770000217E+09        0.1609221774960217E+09       -0.2773501417338688E+04        0.3299479004516611E+04       -0.4681385873644156E+04       -0.1611851718695422E+03        0.1604122735938942E+03       -0.1891630830963916E+03       -0.3429636394406001E+04        0.3880849995175178E+04       -0.5094820770405060E+04       -0.1902019266380649E+03        0.1847853633739625E+03       -0.2007716616750795E+03
+        0.2000000000000000E+02        0.1060030266827369E+05        0.6800543290753695E+03        0.8671201044635370E-01        0.1112588572840720E+00        0.8942778021483211E+05       -0.9275547526844854E+04        0.3528209495967019E+04        0.1676000000000000E+02        0.9599999999999998E+01       -0.3598763549410885E+00       -0.5166554397385442E+01        0.8911339331284624E+02        0.1571455566375209E+09        0.1608965571335209E+09       -0.2988780484741401E+04        0.3416674769421788E+04       -0.5314361651603244E+04       -0.1631787816604811E+03        0.1596135846526839E+03       -0.2114659597343998E+03       -0.3644951268055576E+04        0.4005546882406962E+04       -0.5771755782803293E+04       -0.1909054676388775E+03        0.1832493568852528E+03       -0.2244389960354568E+03
+        0.2100000000000000E+02        0.1061048922554726E+05        0.6555390117784526E+03        0.7502015372940181E-01        0.9733306017006643E-01        0.8621809447266402E+05       -0.8410251218309510E+04        0.3532565660171932E+04        0.1788000000000000E+02        0.9599999999999998E+01       -0.5224480720785591E+00       -0.5504269565763194E+01        0.8908699920362002E+02        0.1571205377751834E+09        0.1608715382711833E+09       -0.3200183591920711E+04        0.3534074745060522E+04       -0.5966469827391012E+04       -0.1650632068236866E+03        0.1589705001507711E+03       -0.2325897087039496E+03       -0.3859800584117250E+04        0.4129465526065580E+04       -0.6464694908382153E+04       -0.1917482748815677E+03        0.1818593841144073E+03       -0.2467357332832948E+03
+        0.2200000000000000E+02        0.1060110308578692E+05        0.6333292287585914E+03        0.6522967791689528E-01        0.8573267781714662E-01        0.8387755890787989E+05       -0.7596163931537479E+04        0.3530396023248682E+04        0.1897000000000000E+02        0.9599999999999998E+01       -0.6897955512604874E+00       -0.5822816349005327E+01        0.8905901247150452E+02        0.1570952257186909E+09        0.1608462262146908E+09       -0.3409275004805229E+04        0.3650241416574474E+04       -0.6643221468439130E+04       -0.1668967288111609E+03        0.1584121301822236E+03       -0.2531798565346049E+03       -0.4076174042601909E+04        0.4252786083709098E+04       -0.7183420190939370E+04       -0.1927371928567228E+03        0.1805938525498019E+03       -0.2683592198012838E+03
+        0.2300000000000000E+02        0.1058612079687397E+05        0.6136154737425885E+03        0.5704072800083193E-01        0.7604529573659602E-01        0.8251906317545590E+05       -0.6837127934996724E+04        0.3526341412461991E+04        0.2003000000000000E+02        0.9599999999999998E+01       -0.8600401258454597E+00       -0.6121188446982691E+01        0.8902990031045036E+02        0.1570699616978906E+09        0.1608209621938906E+09       -0.3617073394121032E+04        0.3764141021789480E+04       -0.7338829986478593E+04       -0.1686131602138874E+03        0.1577470247341442E+03       -0.2729006801358930E+03       -0.4295561693166425E+04        0.4376752935387794E+04       -0.7928033716250638E+04       -0.1938234758979231E+03        0.1793832212528510E+03       -0.2891956592399760E+03
+        0.2400000000000000E+02        0.1061205678332627E+05        0.5981919524558181E+03        0.5035738769763526E-01        0.6812639928143560E-01        0.8293079727758301E+05       -0.6168957697994681E+04        0.3535808055464818E+04        0.2105000000000000E+02        0.9599999999999998E+01       -0.1027553825139650E+01       -0.6391259215359025E+01        0.8900089859581524E+02        0.1570458446168525E+09        0.1607968451128525E+09       -0.3832475291937131E+04        0.3881501541414112E+04       -0.8062719511987725E+04       -0.1702830623861665E+03        0.1570170033335488E+03       -0.2914412601070531E+03       -0.4524554580752829E+04        0.4503502828910561E+04       -0.8696161300433720E+04       -0.1948804644110930E+03        0.1780968464265360E+03       -0.3085913581709253E+03
+        0.2500000000000000E+02        0.1061168880733778E+05        0.5837999848031249E+03        0.4457969688339745E-01        0.6131358268124843E-01        0.8380042886389370E+05       -0.5525518996295825E+04        0.3536527702270825E+04        0.2205000000000000E+02        0.9599999999999998E+01       -0.1200272290169282E+01       -0.6650867142082967E+01        0.8897053016152849E+02        0.1570214244053549E+09        0.1607724249013548E+09       -0.4049791545132425E+04        0.3997403343676068E+04       -0.8807753434411381E+04       -0.1718856848425099E+03        0.1562926259428839E+03       -0.3092850643221685E+03       -0.4758220938503094E+04        0.4628101476046289E+04       -0.9490578775769865E+04       -0.1959931077029209E+03        0.1768109719123891E+03       -0.3274385175590618E+03
diff --git a/wetb/prepost/tests/data/dtu10mw_v1_defl_u10000.ind b/wetb/prepost/tests/data/dtu10mw_v1_defl_u10000.ind
new file mode 100755
index 0000000000000000000000000000000000000000..1f759fa8382779dba3ba08b329bedc96ee775c0c
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_v1_defl_u10000.ind
@@ -0,0 +1,28 @@
+ #             s [m] 1      Element no [-] 2          pos_xR [m] 3          pos_yR [m] 4          pos_zR [m] 5    Elem angle [rad] 6        Elem v_1 [-] 7        Elem v_2 [-] 8        Elem v_3 [-] 9 Node 1 angle [rad] 10     Node 1 v_1 [-] 11     Node 1 v_2 [-] 12     Node 1 v_3 [-] 13 Node 2 angle [rad] 14     Node 2 v_1 [-] 15     Node 2 v_2 [-] 16     Node 2 v_3 [-] 17     Elongation [m] 18
+          0.100000E-01                     1          0.000000E+00          0.000000E+00          0.000000E+00          0.180551E-03         -0.906250E+00          0.161513E+00          0.390672E+00          0.166203E-03          0.984481E+00         -0.175491E+00         -0.110425E-03          0.162571E-03          0.984283E+00         -0.176601E+00          0.141697E-03          0.465692E-06
+          0.300003E+01                     2          0.291569E-06          0.163633E-05          0.100005E-01          0.137092E+00          0.309030E-01         -0.142463E-01         -0.999421E+00          0.696015E-03          0.999890E+00          0.892819E-02         -0.118121E-01          0.356428E-03         -0.999481E+00         -0.224869E-01          0.230666E-01          0.137658E-03
+          0.600004E+01                     3         -0.668788E-02         -0.122273E-01          0.300014E+01          0.253119E+00          0.120696E-01         -0.882080E-02         -0.999888E+00          0.679888E-03          0.990868E+00          0.134197E+00         -0.130890E-01          0.327950E-03         -0.990599E+00         -0.134079E+00          0.271230E-01          0.135711E-03
+          0.700027E+01                     4         -0.144687E-01         -0.204521E-01          0.600026E+01          0.252665E+00          0.159897E-01          0.224978E-01         -0.999619E+00          0.363632E-03          0.990337E+00          0.138681E+00          0.379259E-03          0.146951E-04          0.970285E+00          0.241771E+00         -0.972861E-02          0.461916E-04
+          0.870176E+01                     5         -0.935065E-02         -0.251647E-01          0.700051E+01          0.534719E+00         -0.210992E-02         -0.826643E-02         -0.999964E+00          0.533634E-03          0.918687E+00          0.394755E+00         -0.135491E-01          0.111734E-03         -0.926966E+00         -0.369548E+00          0.645632E-01          0.809131E-04
+          0.104085E+02                     6         -0.160175E-01         -0.213718E-01          0.870206E+01          0.943930E+00         -0.255426E-02          0.734472E-02         -0.999970E+00          0.597675E-03          0.722325E+00          0.691536E+00          0.504627E-02          0.115240E-03         -0.807329E+00         -0.589510E+00         -0.264255E-01          0.844976E-04
+          0.122171E+02                     7         -0.406268E-02         -0.230232E-01          0.104088E+02          0.799950E+00          0.411750E-02         -0.168557E-01         -0.999849E+00          0.740331E-03          0.844436E+00          0.535001E+00         -0.265055E-01          0.165070E-03         -0.823621E+00         -0.554590E+00          0.118651E+00          0.942836E-04
+          0.132226E+02                     8         -0.281902E-01         -0.191212E-01          0.122174E+02          0.657885E+00         -0.167295E-03         -0.846026E-02         -0.999964E+00          0.634601E-03          0.917830E+00          0.396918E+00         -0.669769E-02          0.387405E-04          0.950090E+00          0.292442E+00          0.108662E+00          0.541906E-04
+          0.150319E+02                     9         -0.333567E-01         -0.172429E-01          0.132229E+02          0.550931E+00         -0.187306E-02         -0.686577E-02         -0.999975E+00          0.101924E-02          0.956564E+00          0.291521E+00         -0.630634E-03          0.237827E-03         -0.946541E+00         -0.322573E+00          0.252893E-02          0.990068E-04
+          0.182408E+02                    10         -0.393582E-01         -0.136308E-01          0.150323E+02          0.413883E+00          0.150835E-02         -0.200023E-01         -0.999799E+00          0.194854E-02          0.985534E+00          0.169420E+00         -0.439122E-02          0.934698E-03         -0.983219E+00         -0.182204E+00          0.911144E-02          0.182512E-03
+          0.214384E+02                    11         -0.655817E-01         -0.101588E-01          0.182413E+02          0.312112E+00         -0.104333E-01          0.583039E-02         -0.999929E+00          0.246584E-02          0.994426E+00          0.102608E+00          0.242437E-01          0.124712E-02         -0.994517E+00         -0.929295E-01         -0.479686E-01          0.195867E-03
+          0.246337E+02                    12         -0.582446E-01         -0.814315E-03          0.214391E+02          0.257237E+00         -0.102545E-01          0.644339E-01         -0.997869E+00          0.296549E-02          0.994004E+00          0.746658E-01          0.798774E-01          0.157111E-02         -0.987442E+00         -0.470795E-01         -0.150802E+00          0.207203E-03
+          0.278269E+02                    13         -0.478645E-02          0.761867E-03          0.246341E+02          0.214456E+00         -0.113811E-01         -0.616473E-01         -0.998033E+00          0.347589E-02          0.998949E+00          0.420130E-01         -0.183268E-01          0.192399E-02         -0.998821E+00         -0.355126E-01          0.330938E-01          0.212652E-03
+          0.310224E+02                    14         -0.458509E-01          0.129973E-01          0.278272E+02          0.188432E+00         -0.264487E-01          0.523940E-01         -0.998276E+00          0.392487E-02          0.997015E+00          0.334868E-01          0.695648E-01          0.230155E-02         -0.992820E+00         -0.152356E-01         -0.118647E+00          0.207725E-03
+          0.342166E+02                    15         -0.129934E-01          0.258712E-01          0.310227E+02          0.172917E+00         -0.657074E-01          0.836291E-01         -0.994328E+00          0.434330E-02          0.995663E+00          0.265124E-01          0.891714E-01          0.263394E-02         -0.989073E+00         -0.104139E-01         -0.147056E+00          0.201431E-03
+          0.402160E+02                    16          0.360842E-01          0.580247E-01          0.342167E+02          0.147715E+00         -0.136130E+00          0.583324E-01         -0.988972E+00          0.871705E-02          0.997369E+00          0.129858E-01          0.713243E-01          0.641770E-02         -0.995243E+00         -0.102100E-01         -0.968827E-01          0.359113E-03
+          0.466211E+02                    17          0.963895E-01          0.174462E+00          0.402149E+02          0.117071E+00         -0.267504E+00          0.100865E+00         -0.958263E+00          0.113003E-01          0.996497E+00          0.225618E-02          0.836029E-01          0.845420E-02         -0.993733E+00         -0.250706E-02         -0.111748E+00          0.353683E-03
+          0.530293E+02                    18          0.183095E+00          0.370367E+00          0.466169E+02          0.916302E-01         -0.490523E+00          0.131938E+00         -0.861382E+00          0.135153E-01          0.996737E+00         -0.674629E-02          0.804365E-01          0.101019E-01         -0.994185E+00          0.408678E-02         -0.107612E+00          0.320386E-03
+          0.594400E+02                    19          0.271821E+00          0.654949E+00          0.530184E+02          0.791948E-01         -0.766288E+00          0.150187E+00         -0.624697E+00          0.153876E-01          0.997326E+00         -0.142174E-01          0.716835E-01          0.113516E-01         -0.995219E+00          0.998785E-02         -0.971604E-01          0.282878E-03
+          0.658540E+02                    20          0.357613E+00          0.104171E+01          0.594171E+02          0.832594E-01         -0.944125E+00          0.142278E+00         -0.297298E+00          0.165987E-01          0.997947E+00         -0.204621E-01          0.606868E-01          0.118546E-01         -0.996266E+00          0.153465E-01         -0.849571E-01          0.244339E-03
+          0.722716E+02                    21          0.439745E+00          0.154440E+01          0.658112E+02          0.977202E-01         -0.990648E+00          0.127085E+00         -0.496656E-01          0.170809E-01          0.998283E+00         -0.245105E-01          0.531945E-01          0.114618E-01         -0.996676E+00          0.188919E-01         -0.792480E-01          0.204394E-03
+          0.790961E+02                    22          0.520826E+00          0.216450E+01          0.721984E+02          0.113987E+00         -0.990400E+00          0.803087E-01          0.112508E+00          0.165617E-01          0.999149E+00         -0.256641E-01          0.322779E-01          0.926689E-02         -0.998137E+00          0.200219E-01         -0.576392E-01          0.166584E-03
+          0.806018E+02                    23          0.578229E+00          0.293368E+01          0.789793E+02          0.119461E+00         -0.977664E+00          0.918467E-01          0.189045E+00          0.282297E-02          0.998949E+00         -0.282967E-01          0.360693E-01          0.120361E-02         -0.996406E+00          0.476164E-02         -0.845724E-01          0.246312E-04
+          0.821087E+02                    24          0.592728E+00          0.310932E+01          0.804747E+02          0.120371E+00         -0.975849E+00          0.419656E-01          0.214376E+00          0.240969E-02          0.999308E+00         -0.264324E-01          0.261817E-01          0.903176E-03         -0.997558E+00          0.138805E-02         -0.698272E-01          0.205858E-04
+          0.836161E+02                    25          0.598041E+00          0.328600E+01          0.819712E+02          0.120103E+00         -0.972299E+00          0.120645E-01          0.233429E+00          0.192509E-02          0.999426E+00         -0.228191E-01          0.250409E-01          0.600034E-03         -0.996757E+00         -0.502320E-02         -0.803126E-01          0.160097E-04
+          0.851232E+02                    26          0.597755E+00          0.346163E+01          0.834684E+02          0.119412E+00         -0.966731E+00          0.801482E-01          0.242914E+00          0.138722E-02          0.999074E+00         -0.179981E-01          0.390736E-01          0.290175E-03         -0.982257E+00         -0.170006E-01         -0.186769E+00          0.114338E-04
+          0.864694E+02                    27          0.609625E+00          0.363541E+01          0.849654E+02          0.135036E+00         -0.842446E+00          0.503154E+00          0.192668E+00          0.542075E-03          0.995652E+00         -0.110606E-01          0.924882E-01          0.529588E-04          0.319545E+00         -0.413808E-01         -0.946667E+00          0.476688E-05
diff --git a/wetb/prepost/tests/data/dtu10mw_v1_fext_u10000.ind b/wetb/prepost/tests/data/dtu10mw_v1_fext_u10000.ind
new file mode 100755
index 0000000000000000000000000000000000000000..1fb04c5b13a4a1727f88a1f64acb02dab220dc9f
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_v1_fext_u10000.ind
@@ -0,0 +1,28 @@
+ #     s [m] 1    Node [-] 2   Fx_e [N]  3   Fy_e [N]  4   Fz_e [N]  5  Mx_e [Nm]  6  My_e [Nm]  7  Mz_e [Nm]  8   Fx_r [N]  9   Fy_r [N] 10   Fz_r [N] 11  Mx_r [Nm] 12  My_r [Nm] 13  Mz_r [Nm] 14
+  0.100000E-01             2  0.903877E+03  0.409876E+06 -0.280874E+05 -0.229853E+08 -0.358646E+06  0.149981E+06  0.569427E+05  0.406022E+06 -0.262998E+05 -0.228191E+08  0.278383E+07  0.110327E+06
+  0.300003E+01             3 -0.464463E+05  0.407028E+06 -0.275609E+05 -0.215719E+08 -0.287957E+07  0.160881E+06  0.570258E+05  0.405765E+06 -0.263008E+05 -0.216060E+08  0.261354E+07  0.112012E+06
+  0.600004E+01             4 -0.456356E+05  0.406506E+06 -0.279176E+05 -0.203543E+08 -0.273101E+07 -0.183132E+04  0.572605E+05  0.405140E+06 -0.263025E+05 -0.203907E+08  0.244197E+07  0.114007E+06
+  0.700027E+01             5 -0.156882E+06  0.377330E+06 -0.256259E+05 -0.184109E+08 -0.813331E+07  0.194751E+06  0.574017E+05  0.404549E+06 -0.263030E+05 -0.199863E+08  0.238436E+07  0.111130E+06
+  0.870176E+01             6 -0.293335E+06  0.283585E+06 -0.262907E+05 -0.131734E+08 -0.142881E+08 -0.237971E+05  0.574033E+05  0.403943E+06 -0.263025E+05 -0.192988E+08  0.228685E+07  0.113590E+06
+  0.104085E+02             7 -0.249388E+06  0.321575E+06 -0.261954E+05 -0.145359E+08 -0.118218E+08  0.360935E+06  0.572237E+05  0.402896E+06 -0.263037E+05 -0.186112E+08  0.218884E+07  0.107961E+06
+  0.122171E+02             8 -0.200678E+06  0.352309E+06 -0.258566E+05 -0.154274E+08 -0.928397E+07  0.212749E+06  0.567526E+05  0.401433E+06 -0.263153E+05 -0.178850E+08  0.208680E+07  0.116958E+06
+  0.132226E+02             9 -0.161598E+06  0.370210E+06 -0.257218E+05 -0.159585E+08 -0.742186E+07  0.180326E+06  0.561952E+05  0.399974E+06 -0.263341E+05 -0.174830E+08  0.203051E+07  0.118284E+06
+  0.150319E+02            10 -0.109528E+06  0.386866E+06 -0.263838E+05 -0.161220E+08 -0.497239E+07  0.259041E+06  0.554914E+05  0.398225E+06 -0.263621E+05 -0.167622E+08  0.193020E+07  0.119983E+06
+  0.182408E+02            11 -0.696519E+05  0.392301E+06 -0.251449E+05 -0.152859E+08 -0.308609E+07  0.989469E+05  0.541128E+05  0.394661E+06 -0.264225E+05 -0.154948E+08  0.175699E+07  0.129365E+06
+  0.214384E+02            12 -0.478484E+05  0.389760E+06 -0.254287E+05 -0.141867E+08 -0.208039E+07 -0.111478E+06  0.522431E+05  0.389124E+06 -0.264983E+05 -0.142499E+08  0.158971E+07  0.126147E+06
+  0.246337E+02            13 -0.325193E+05  0.382832E+06 -0.257400E+05 -0.130359E+08 -0.137220E+07  0.277105E+06  0.498788E+05  0.380903E+06 -0.265605E+05 -0.130323E+08  0.142888E+07  0.104053E+06
+  0.278269E+02            14 -0.225825E+05  0.372671E+06 -0.246024E+05 -0.118803E+08 -0.959798E+06  0.176603E+04  0.472462E+05  0.370216E+06 -0.265811E+05 -0.118495E+08  0.127911E+07  0.118455E+06
+  0.310224E+02            15 -0.170896E+05  0.361040E+06 -0.222513E+05 -0.107407E+08 -0.712756E+06 -0.472784E+05  0.445632E+05  0.358394E+06 -0.265477E+05 -0.107038E+08  0.113583E+07  0.105753E+06
+  0.342166E+02            16 -0.876547E+04  0.348809E+06 -0.193129E+05 -0.964179E+07 -0.408221E+06  0.116706E+05  0.418782E+05  0.345924E+06 -0.264535E+05 -0.959800E+07  0.100078E+07  0.887447E+05
+  0.402160E+02            17  0.144129E+04  0.329342E+06 -0.156579E+05 -0.766529E+07 -0.905687E+05 -0.773793E+04  0.380251E+05  0.326470E+06 -0.261719E+05 -0.762679E+07  0.769257E+06  0.720143E+05
+  0.466211E+02            18  0.950853E+04  0.299184E+06 -0.118128E+05 -0.574457E+07  0.102688E+06 -0.311357E+04  0.328174E+05  0.296674E+06 -0.254691E+05 -0.571824E+07  0.556517E+06  0.514013E+05
+  0.530293E+02            19  0.146367E+05  0.263202E+06 -0.801120E+04 -0.405076E+07  0.177325E+06  0.400946E+04  0.274258E+05  0.261183E+06 -0.241812E+05 -0.403677E+07  0.378715E+06  0.352516E+05
+  0.594400E+02            20  0.166984E+05  0.222301E+06 -0.442296E+04 -0.261817E+07  0.169657E+06  0.908202E+04  0.220303E+05  0.220779E+06 -0.220772E+05 -0.261295E+07  0.235768E+06  0.241408E+05
+  0.658540E+02            21  0.159376E+05  0.176925E+06 -0.163608E+04 -0.147758E+07  0.119017E+06  0.105092E+05  0.166682E+05  0.175849E+06 -0.189276E+05 -0.147681E+07  0.127535E+06  0.169261E+05
+  0.722716E+02            22  0.131162E+05  0.128069E+06 -0.554075E+02 -0.651857E+06  0.603550E+05  0.120767E+05  0.114103E+05  0.127398E+06 -0.146035E+05 -0.652478E+06  0.533279E+05  0.116296E+05
+  0.790961E+02            23  0.800823E+04  0.756986E+05 -0.122597E+03 -0.130298E+06  0.118101E+05  0.856864E+04  0.625131E+04  0.753246E+05 -0.903066E+04 -0.130448E+06  0.987508E+04  0.873303E+04
+  0.806018E+02            24  0.437733E+04  0.427307E+05 -0.135569E+03 -0.951571E+05  0.913645E+04  0.593118E+04  0.326309E+04  0.425175E+05 -0.516772E+04 -0.953411E+05  0.734538E+04  0.544378E+04
+  0.821087E+02            25  0.316984E+04  0.312152E+05 -0.144698E+03 -0.480843E+05  0.455631E+04  0.475358E+04  0.229324E+04  0.310618E+05 -0.378928E+04 -0.481941E+05  0.373704E+04  0.433862E+04
+  0.836161E+02            26  0.200922E+04  0.202398E+05 -0.116104E+03 -0.176233E+05  0.160749E+04  0.315288E+04  0.141069E+04  0.201402E+05 -0.246599E+04 -0.176377E+05  0.145956E+04  0.314459E+04
+  0.851232E+02            27  0.966244E+03  0.102371E+05 -0.404929E+02 -0.237827E+04  0.179734E+03  0.150986E+04  0.656069E+03  0.101842E+05 -0.125902E+04 -0.227729E+04  0.298596E+03  0.164101E+04
+  0.864694E+02            28  0.213423E+03  0.253176E+04 -0.927171E+01  0.606266E+03 -0.554806E+02  0.339521E+03  0.134694E+03  0.251758E+04 -0.314797E+03  0.645185E+03 -0.718036E+01  0.263809E+03
diff --git a/wetb/prepost/tests/data/dtu10mw_v1_u10000.ind b/wetb/prepost/tests/data/dtu10mw_v1_u10000.ind
new file mode 100755
index 0000000000000000000000000000000000000000..6f4000aac5c919b8ab30cbf920e12e09dfe714d7
--- /dev/null
+++ b/wetb/prepost/tests/data/dtu10mw_v1_u10000.ind
@@ -0,0 +1,99 @@
+ #     s [m] 1       A [-] 2      AP [-] 3  PHI0 [rad] 4ALPHA0 [rad] 5    U0 [m/s] 6   FX0 [N/m] 7   FY0 [N/m] 8   M0 [Nm/m] 9    UX0 [m] 10    UY0 [m] 11    UZ0 [m] 12 Twist[rad] 13  X_AC0 [m] 14  Y_AC0 [m] 15  Z_AC0 [m] 16    CL0 [-] 17    CD0 [-] 18    CM0 [-] 19 CLp0[1/rad]20 CDp0[1/rad]21 CMp0[1/rad]22     F0 [-] 23  F'[1/rad] 24 CL_FS0 [-] 25CLFS'[1/rad]26  V_a [m/s] 27  V_t [m/s] 28Tors. [rad] 29   vx [m/s] 30   vy [m/s] 31  chord [m] 32     CT [-] 33     CP [-] 34angle [rad] 35    v_1 [-] 36    v_2 [-] 37    v_3 [-] 38
+  0.217666E-01  0.112928E+00 -0.942450E-01  0.133288E+01  0.133225E+01  0.912346E+01 -0.388046E+02  0.159931E+03  0.000000E+00  0.576285E-06  0.377889E-05  0.244343E-06  0.515156E-03  0.134499E+01 -0.750383E-03  0.282489E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.112928E+01  0.223837E+00  0.949046E-07 -0.215579E+01  0.886510E+01  0.538000E+01  0.398474E+00 -0.231398E-01  0.789497E-05 -0.992211E+00  0.124044E+00  0.120214E-01
+  0.870449E-01  0.111150E+00 -0.934355E-01  0.132785E+01  0.132414E+01  0.915305E+01 -0.398660E+02  0.160772E+03  0.000000E+00  0.226046E-05  0.161860E-04  0.254364E-05  0.359878E-02  0.134499E+01 -0.514269E-02  0.289015E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.111150E+01  0.227044E+00  0.401679E-06 -0.223486E+01  0.887602E+01  0.538000E+01  0.393149E+00 -0.238627E-01  0.315005E-04 -0.992657E+00  0.120289E+00  0.127534E-01
+  0.195769E+00  0.108309E+00 -0.920736E-01  0.131949E+01  0.130964E+01  0.920176E+01 -0.416487E+02  0.162145E+03  0.000000E+00  0.549474E-05  0.402392E-04  0.691744E-05  0.973143E-02  0.134493E+01 -0.137965E-01  0.299884E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.108309E+01  0.232155E+00  0.912595E-06 -0.237585E+01  0.888975E+01  0.538000E+01  0.384583E+00 -0.250756E-01  0.707538E-04 -0.993391E+00  0.114056E+00  0.129022E-01
+  0.347829E+00  0.104572E+00 -0.901604E-01  0.130784E+01  0.128750E+01  0.926877E+01 -0.441728E+02  0.164012E+03  0.000000E+00  0.109197E-04  0.809664E-04  0.144714E-04  0.202143E-01  0.134473E+01 -0.284569E-01  0.315084E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.104572E+01  0.238862E+00  0.162716E-05 -0.259082E+01  0.889931E+01  0.538000E+01  0.373206E+00 -0.267900E-01  0.125521E-03 -0.994538E+00  0.103568E+00  0.129697E-01
+  0.543072E+00  0.100147E+00 -0.877254E-01  0.129294E+01  0.125632E+01  0.935323E+01 -0.474650E+02  0.166325E+03  0.000000E+00  0.194299E-04  0.145340E-03  0.272243E-04  0.364943E-01  0.134412E+01 -0.510586E-01  0.334599E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.100147E+01  0.246818E+00  0.254483E-05 -0.289312E+01  0.889453E+01  0.538000E+01  0.359571E+00 -0.290214E-01  0.195616E-03 -0.996096E+00  0.873125E-01  0.130178E-01
+  0.781302E+00  0.952578E-01 -0.848352E-01  0.127488E+01  0.121496E+01  0.945441E+01 -0.515585E+02  0.169040E+03  0.000000E+00  0.321683E-04  0.242213E-03  0.483112E-04  0.597955E-01  0.134262E+01 -0.832203E-01  0.358408E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.952578E+00  0.255687E+00  0.366529E-05 -0.329366E+01  0.886215E+01  0.538000E+01  0.344296E+00 -0.317900E-01  0.280801E-03 -0.997862E+00  0.640320E-01  0.130620E-01
+  0.106228E+01  0.901216E-01 -0.815884E-01  0.125378E+01  0.116300E+01  0.957194E+01 -0.564925E+02  0.172115E+03  0.000000E+00  0.505141E-04  0.382232E-03  0.818705E-04  0.906540E-01  0.133952E+01 -0.125601E+00  0.386489E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.901216E+00  0.265185E+00  0.498872E-05 -0.379608E+01  0.878702E+01  0.538000E+01  0.328008E+00 -0.351199E-01  0.380786E-03 -0.999364E+00  0.331627E-01  0.131074E-01
+  0.138572E+01  0.849298E-01 -0.781001E-01  0.122979E+01  0.110130E+01  0.970592E+01 -0.623140E+02  0.175523E+03  0.000000E+00  0.760612E-04  0.577750E-03  0.132343E-03  0.128363E+00  0.133400E+01 -0.177132E+00  0.418812E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.849298E+00  0.275096E+00  0.651606E-05 -0.439129E+01  0.865571E+01  0.538000E+01  0.311291E+00 -0.390403E-01  0.495232E-03 -0.999903E+00 -0.459282E-02  0.131565E-01
+  0.175130E+01  0.798364E-01 -0.744825E-01  0.120310E+01  0.103264E+01  0.985703E+01 -0.690788E+02  0.179251E+03  0.000000E+00  0.110583E-03  0.842715E-03  0.202888E-03  0.170335E+00  0.132563E+01 -0.234186E+00  0.455348E+01  0.000000E+00  0.600000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.000000E+00  0.798364E+00  0.285258E+00  0.824890E-05 -0.505229E+01  0.846377E+01  0.538000E+01  0.294637E+00 -0.435853E-01  0.623750E-03 -0.998826E+00 -0.466065E-01  0.132102E-01
+  0.215864E+01  0.755294E-01 -0.697391E-01  0.117329E+01  0.961764E+00  0.100230E+02 -0.756194E+02  0.184572E+03 -0.223097E+01  0.155979E-03  0.119257E-02  0.292654E-03  0.211394E+00  0.131520E+01 -0.289735E+00  0.496063E+01  0.530751E-02  0.602511E+00 -0.125265E-02 -0.119415E-01  0.394695E-03  0.454161E-03  0.000000E+00  0.000000E+00  0.530751E-02 -0.119415E-01  0.755294E+00  0.290986E+00  0.101886E-04 -0.573388E+01  0.822085E+01  0.538000E+01  0.280358E+00 -0.480119E-01  0.765907E-03 -0.996064E+00 -0.876339E-01  0.132692E-01
+  0.260735E+01  0.727600E-01 -0.627121E-01  0.113973E+01  0.896604E+00  0.102027E+02 -0.797556E+02  0.193505E+03 -0.916193E+01  0.214208E-03  0.164417E-02  0.392683E-03  0.242998E+00  0.130568E+01 -0.332561E+00  0.540922E+01  0.245593E-01  0.609668E+00 -0.496461E-02 -0.619867E-01  0.826453E-03  0.176038E-02  0.000000E+00  0.000000E+00  0.245593E-01 -0.619867E-01  0.727600E+00  0.285331E+00  0.123337E-04 -0.636921E+01  0.797048E+01  0.538000E+01  0.271079E+00 -0.509107E-01  0.921220E-03 -0.992788E+00 -0.119138E+00  0.133339E-01
+  0.309697E+01  0.706581E-01 -0.557103E-01  0.110384E+01  0.850592E+00  0.104046E+02 -0.833490E+02  0.204593E+03 -0.175206E+02  0.287285E-03  0.221769E-02  0.343627E-03  0.253105E+00  0.130240E+01 -0.347217E+00  0.589944E+01  0.496485E-01  0.617303E+00 -0.912913E-02 -0.114506E+00  0.698387E-02  0.318153E-02  0.000000E+00  0.000000E+00  0.496485E-01 -0.114506E+00  0.706581E+00  0.276414E+00  0.148986E-04 -0.686221E+01  0.782082E+01  0.538000E+01  0.263987E+00 -0.534321E-01  0.108955E-02 -0.991504E+00 -0.129365E+00  0.136042E-01
+  0.362700E+01  0.692738E-01 -0.491222E-01  0.106625E+01  0.812828E+00  0.106297E+02 -0.864896E+02  0.218203E+03 -0.274995E+02  0.375566E-03  0.293260E-02  0.426597E-03  0.253193E+00  0.130210E+01 -0.348862E+00  0.642955E+01  0.801080E-01  0.625291E+00 -0.137281E-01 -0.169954E+00  0.103648E-01  0.472205E-02  0.000000E+00  0.000000E+00  0.801080E-01 -0.169954E+00  0.692738E+00  0.265516E+00  0.187984E-04 -0.730738E+01  0.771968E+01  0.538000E+01  0.259291E+00 -0.556313E-01  0.127164E-02 -0.991396E+00 -0.130069E+00  0.147008E-01
+  0.419691E+01  0.686351E-01 -0.429238E-01  0.102709E+01  0.773580E+00  0.108814E+02 -0.888257E+02  0.234826E+03 -0.396124E+02  0.483190E-03  0.380762E-02  0.515760E-03  0.253217E+00  0.130127E+01 -0.350457E+00  0.699955E+01  0.116714E+00  0.632795E+00 -0.188708E-01 -0.176830E+00  0.832156E-01  0.128573E-01  0.000000E+00  0.000000E+00  0.116714E+00 -0.176830E+00  0.686351E+00  0.252493E+00  0.232493E-04 -0.778471E+01  0.760284E+01  0.538000E+01  0.257118E+00 -0.572950E-01  0.146534E-02 -0.991308E+00 -0.130610E+00  0.157712E-01
+  0.480613E+01  0.690185E-01 -0.365299E-01  0.986330E+00  0.732816E+00  0.111620E+02 -0.886155E+02  0.255895E+03 -0.566104E+02  0.612598E-03  0.486350E-02  0.610954E-03  0.253164E+00  0.129987E+01 -0.351939E+00  0.760885E+01  0.164125E+00  0.638855E+00 -0.256294E-01 -0.243621E+00  0.109964E+00  0.169902E-01  0.000000E+00  0.000000E+00  0.164125E+00 -0.243621E+00  0.690185E+00  0.233522E+00  0.282326E-04 -0.829667E+01  0.746702E+01  0.538000E+01  0.258423E+00 -0.572959E-01  0.167000E-02 -0.991240E+00 -0.131002E+00  0.167974E-01
+  0.545404E+01  0.734467E-01 -0.267895E-01  0.941211E+00  0.687810E+00  0.114636E+02 -0.756644E+02  0.293129E+03 -0.910561E+02  0.766277E-03  0.612141E-02  0.711983E-03  0.253017E+00  0.129799E+01 -0.353265E+00  0.825686E+01  0.257584E+00  0.649840E+00 -0.390766E-01 -0.289671E+00  0.183760E+00  0.424266E-01  0.000000E+00  0.000000E+00  0.257584E+00 -0.289671E+00  0.734467E+00  0.185800E+00  0.337055E-04 -0.885723E+01  0.727765E+01  0.538048E+01  0.273387E+00 -0.490309E-01  0.188492E-02 -0.991190E+00 -0.131249E+00  0.177591E-01
+  0.614000E+01  0.803895E-01 -0.163732E-01  0.895067E+00  0.641740E+00  0.117899E+02 -0.534621E+02  0.343241E+03 -0.142080E+03  0.944348E-03  0.758247E-02  0.683953E-03  0.252765E+00  0.129661E+01 -0.354553E+00  0.893189E+01  0.377537E+00  0.656635E+00 -0.575092E-01 -0.220044E+00  0.244472E+00  0.594650E-01  0.000000E+00  0.000000E+00  0.377537E+00 -0.220044E+00  0.803895E+00  0.122709E+00  0.454957E-04 -0.944435E+01  0.705731E+01  0.538686E+01  0.296458E+00 -0.346803E-01  0.211312E-02 -0.991105E+00 -0.131353E+00  0.213925E-01
+  0.686330E+01  0.898143E-01 -0.630672E-02  0.847571E+00  0.594241E+00  0.121515E+02 -0.237870E+02  0.408666E+03 -0.209781E+03  0.115492E-02  0.932513E-02  0.800229E-03  0.252470E+00  0.129200E+01 -0.355048E+00  0.965535E+01  0.517498E+00  0.658632E+00 -0.794355E-01 -0.266911E+00  0.416441E+00 -0.177421E-01  0.000000E+00  0.000000E+00  0.517498E+00 -0.266911E+00  0.898143E+00  0.509963E-01  0.657542E-04 -0.100684E+02  0.680338E+01  0.540372E+01  0.327026E+00 -0.154021E-01  0.236550E-02 -0.990948E+00 -0.131370E+00  0.276432E-01
+  0.762323E+01  0.100491E+00  0.377561E-02  0.798542E+00  0.545731E+00  0.125708E+02  0.162727E+02  0.486151E+03 -0.287608E+03  0.140891E-02  0.114113E-01  0.876088E-03  0.251862E+00  0.128649E+01 -0.355263E+00  0.104293E+02  0.668508E+00  0.640613E+00 -0.100862E+00  0.758113E-02  0.862527E+00 -0.126515E+00  0.000000E+00  0.000000E+00  0.668508E+00  0.758113E-02  0.100491E+01 -0.329563E-01  0.836193E-04 -0.107448E+02  0.652477E+01  0.542777E+01  0.360638E+00  0.106039E-01  0.265176E-02 -0.991068E+00 -0.129618E+00  0.313632E-01
+  0.841902E+01  0.113298E+00  0.156800E-01  0.749649E+00  0.497885E+00  0.130352E+02  0.770066E+02  0.579110E+03 -0.370560E+03  0.170305E-02  0.137984E-01  0.100105E-02  0.250736E+00  0.127869E+01 -0.353929E+00  0.112252E+02  0.838110E+00  0.593709E+00 -0.119203E+00  0.713993E-01  0.131028E+01 -0.162031E+00  0.000000E+00  0.000000E+00  0.838110E+00  0.713993E-01  0.113298E+01 -0.147043E+00  0.119471E-03 -0.114527E+02  0.622522E+01  0.546530E+01  0.399580E+00  0.501780E-01  0.295242E-02 -0.991048E+00 -0.127286E+00  0.402794E-01
+  0.924989E+01  0.126168E+00  0.269168E-01  0.703449E+00  0.453207E+00  0.135416E+02  0.149657E+03  0.679125E+03 -0.458769E+03  0.204773E-02  0.165097E-01  0.102828E-02  0.249038E+00  0.126243E+01 -0.348897E+00  0.120410E+02  0.993893E+00  0.523931E+00 -0.134498E+00  0.103563E+01  0.153332E+01 -0.269343E+00  0.000000E+00  0.000000E+00  0.993893E+00  0.103563E+01  0.126168E+01 -0.270033E+00  0.173798E-03 -0.121745E+02  0.592920E+01  0.551083E+01  0.437270E+00  0.974817E-01  0.328891E-02 -0.991418E+00 -0.119662E+00  0.526487E-01
+  0.101150E+02  0.138751E+00  0.379078E-01  0.658034E+00  0.410759E+00  0.141229E+02  0.238363E+03  0.786372E+03 -0.555837E+03  0.247465E-02  0.196846E-01  0.112745E-02  0.245997E+00  0.123774E+01 -0.341145E+00  0.129063E+02  0.113010E+01  0.428005E+00 -0.146860E+00  0.183111E+01  0.156568E+01 -0.378253E+00  0.000000E+00  0.000000E+00  0.113010E+01  0.183111E+01  0.138751E+01 -0.406950E+00  0.224592E-03 -0.129482E+02  0.563937E+01  0.556602E+01  0.472795E+00  0.155182E+00  0.364791E-02 -0.992103E+00 -0.109382E+00  0.613696E-01
+  0.110134E+02  0.152006E+00  0.460137E-01  0.613879E+00  0.371243E+00  0.147651E+02  0.326507E+03  0.906311E+03 -0.656549E+03  0.302575E-02  0.234583E-01  0.113440E-02  0.241484E+00  0.121004E+01 -0.331093E+00  0.138307E+02  0.123638E+01  0.337411E+00 -0.155152E+00  0.312218E+01  0.307839E+00 -0.478442E+00  0.000000E+00  0.000000E+00  0.123638E+01  0.312218E+01  0.152006E+01 -0.529338E+00  0.267039E-03 -0.137593E+02  0.535640E+01  0.562944E+01  0.508876E+00  0.212659E+00  0.407379E-02 -0.993249E+00 -0.958414E-01  0.653567E-01
+  0.119442E+02  0.165895E+00  0.501016E-01  0.574525E+00  0.337870E+00  0.153984E+02  0.397688E+03  0.103585E+04 -0.760939E+03  0.369081E-02  0.276998E-01  0.121728E-02  0.235563E+00  0.117780E+01 -0.318373E+00  0.147613E+02  0.131223E+01  0.274437E+00 -0.161305E+00  0.395992E+01  0.338215E+00 -0.562341E+00  0.000000E+00  0.000000E+00  0.131223E+01  0.395992E+01  0.165895E+01 -0.614734E+00  0.334028E-03 -0.145278E+02  0.510424E+01  0.569930E+01  0.545292E+00  0.259107E+00  0.453608E-02 -0.993986E+00 -0.812162E-01  0.734552E-01
+  0.129066E+02  0.179111E+00  0.526272E-01  0.538340E+00  0.309009E+00  0.160654E+02  0.465044E+03  0.116958E+04 -0.868890E+03  0.449117E-02  0.325221E-01  0.119518E-02  0.228389E+00  0.113841E+01 -0.302761E+00  0.157135E+02  0.136197E+01  0.217191E+00 -0.164894E+00  0.532218E+01  0.320288E+00 -0.725278E+00  0.000000E+00  0.000000E+00  0.136197E+01  0.532218E+01  0.179111E+01 -0.687256E+00  0.393517E-03 -0.153044E+02  0.488572E+01  0.577345E+01  0.578704E+00  0.303190E+00  0.507881E-02 -0.994894E+00 -0.648673E-01  0.773185E-01
+  0.138995E+02  0.190339E+00  0.539496E-01  0.505039E+00  0.284581E+00  0.167904E+02  0.530704E+03  0.130180E+04 -0.975168E+03  0.547905E-02  0.381492E-01  0.119743E-02  0.219425E+00  0.109973E+01 -0.285143E+00  0.167042E+02  0.138225E+01  0.161249E+00 -0.164963E+00  0.602959E+01  0.364467E+00 -0.824634E+00  0.000000E+00  0.000000E+00  0.138225E+01  0.602959E+01  0.190339E+01 -0.749641E+00  0.423309E-03 -0.161151E+02  0.471400E+01  0.585103E+01  0.606197E+00  0.346117E+00  0.573925E-02 -0.996214E+00 -0.462259E-01  0.736251E-01
+  0.149219E+02  0.192487E+00  0.507105E-01  0.480187E+00  0.269678E+00  0.175393E+02  0.559614E+03  0.139273E+04 -0.110281E+04  0.667826E-02  0.446588E-01  0.125407E-02  0.209417E+00  0.105986E+01 -0.267848E+00  0.177266E+02  0.133828E+01  0.129268E+00 -0.166688E+00  0.639396E+01  0.431288E+00 -0.872968E+00  0.000000E+00  0.000000E+00  0.133828E+01  0.639396E+01  0.192487E+01 -0.748261E+00  0.457097E-03 -0.169054E+02  0.467286E+01  0.592558E+01  0.611367E+00  0.365131E+00  0.644283E-02 -0.997095E+00 -0.279265E-01  0.708575E-01
+  0.159729E+02  0.188391E+00  0.444110E-01  0.460845E+00  0.261333E+00  0.183095E+02  0.552318E+03  0.145137E+04 -0.127619E+04  0.814524E-02  0.523085E-01  0.120955E-02  0.198430E+00  0.102114E+01 -0.249471E+00  0.187824E+02  0.125514E+01  0.120256E+00 -0.172714E+00  0.608638E+01  0.368981E+00 -0.805260E+00  0.000000E+00  0.000000E+00  0.125514E+01  0.608638E+01  0.188391E+01 -0.695097E+00  0.480479E-03 -0.176878E+02  0.473059E+01  0.599880E+01  0.601483E+00  0.360597E+00  0.738617E-02 -0.997840E+00 -0.939353E-02  0.650171E-01
+  0.170512E+02  0.185785E+00  0.391513E-01  0.441802E+00  0.254086E+00  0.191017E+02  0.545618E+03  0.151812E+04 -0.147142E+04  0.989525E-02  0.611531E-01  0.125414E-02  0.186628E+00  0.982190E+00 -0.230532E+00  0.198605E+02  0.118557E+01  0.113172E+00 -0.179190E+00  0.595820E+01  0.310810E+00 -0.744862E+00  0.000000E+00  0.000000E+00  0.118557E+01  0.595820E+01  0.185785E+01 -0.648576E+00  0.500025E-03 -0.184884E+02  0.480143E+01  0.606158E+01  0.595140E+00  0.356394E+00  0.835700E-02 -0.998172E+00  0.825330E-02  0.598682E-01
+  0.181560E+02  0.186551E+00  0.351561E-01  0.422035E+00  0.246004E+00  0.199173E+02  0.545017E+03  0.160724E+04 -0.166109E+04  0.119421E-01  0.712555E-01  0.130316E-02  0.174924E+00  0.942662E+00 -0.212429E+00  0.209651E+02  0.113747E+01  0.106728E+00 -0.182862E+00  0.539740E+01  0.256743E+00 -0.672502E+00  0.100000E+01  0.000000E+00  0.746648E+00  0.150725E+01  0.186551E+01 -0.615268E+00  0.518753E-03 -0.193176E+02  0.485046E+01  0.611437E+01  0.597008E+00  0.356127E+00  0.932412E-02 -0.998144E+00  0.245069E-01  0.557504E-01
+  0.192861E+02  0.218380E+00  0.374221E-01  0.387462E+00  0.222401E+00  0.207404E+02  0.617985E+03  0.190416E+04 -0.165050E+04  0.142890E-01  0.828068E-01  0.120680E-02  0.164133E+00  0.904769E+00 -0.195826E+00  0.220850E+02  0.123092E+01  0.893220E-01 -0.165247E+00  0.276429E+01  0.473572E+00 -0.496273E+00  0.100000E+01  0.000000E+00  0.701626E+00  0.154405E+01  0.218380E+01 -0.690894E+00  0.460026E-03 -0.202295E+02  0.457474E+01  0.615704E+01  0.671549E+00  0.404063E+00  0.106441E-01 -0.998370E+00  0.370332E-01  0.434166E-01
+  0.204402E+02  0.258586E+00  0.402893E-01  0.351237E+00  0.195945E+00  0.215974E+02  0.698269E+03  0.226123E+04 -0.170183E+04  0.170307E-01  0.962231E-01  0.130495E-02  0.154519E+00  0.870191E+00 -0.180483E+00  0.232393E+02  0.133831E+01  0.680543E-01 -0.155875E+00  0.169061E+01  0.246620E+00 -0.213613E+00  0.100000E+01  0.000000E+00  0.635696E+00  0.196094E+01  0.258586E+01 -0.783618E+00  0.391125E-03 -0.211841E+02  0.420489E+01  0.618180E+01  0.757972E+00  0.456779E+00  0.119825E-01 -0.998313E+00  0.478211E-01  0.329281E-01
+  0.216173E+02  0.305865E+00  0.428146E-01  0.314806E+00  0.167833E+00  0.224618E+02  0.765592E+03  0.266363E+04 -0.184733E+04  0.201175E-01  0.111275E+00  0.123770E-02  0.146305E+00  0.839185E+00 -0.167079E+00  0.244031E+02  0.144539E+01  0.494934E-01 -0.155443E+00  0.287953E+01  0.274374E+00 -0.176793E+00  0.100000E+01  0.000000E+00  0.701856E+00  0.255003E+01  0.305865E+01 -0.875182E+00  0.311035E-03 -0.221462E+02  0.375217E+01  0.620138E+01  0.850371E+00  0.501002E+00  0.133703E-01 -0.998120E+00  0.565454E-01  0.236410E-01
+  0.228162E+02  0.337233E+00  0.426132E-01  0.287949E+00  0.148180E+00  0.233765E+02  0.800361E+03  0.298054E+04 -0.203125E+04  0.236426E-01  0.128653E+00  0.141756E-02  0.139161E+00  0.808199E+00 -0.154199E+00  0.256028E+02  0.148714E+01  0.374279E-01 -0.157966E+00  0.369338E+01  0.215087E+00 -0.931142E-01  0.898717E+00 -0.402557E+01  0.773330E+00  0.316781E+01  0.337233E+01 -0.914590E+00  0.137007E-03 -0.231203E+02  0.345126E+01  0.619824E+01  0.907043E+00  0.523979E+00  0.151015E-01 -0.998019E+00  0.621817E-01  0.954136E-02
+  0.240355E+02  0.363528E+00  0.416374E-01  0.265139E+00  0.131615E+00  0.243200E+02  0.823891E+03  0.327741E+04 -0.225637E+04  0.276286E-01  0.148398E+00  0.160880E-02  0.132924E+00  0.782980E+00 -0.141962E+00  0.268229E+02  0.150552E+01  0.280213E-01 -0.162289E+00  0.590276E+01  0.148673E+00 -0.199959E+00  0.901485E+00 -0.247884E+01  0.782022E+00  0.384128E+01  0.363528E+01 -0.936971E+00 -0.708867E-04 -0.241097E+02  0.319165E+01  0.619504E+01  0.952086E+00  0.539567E+00  0.168101E-01 -0.997733E+00  0.671918E-01 -0.365362E-02
+  0.252743E+02  0.377438E+00  0.393896E-01  0.248789E+00  0.120686E+00  0.253082E+02  0.835485E+03  0.351433E+04 -0.246601E+04  0.321912E-01  0.171139E+00  0.163856E-02  0.127573E+00  0.758192E+00 -0.129634E+00  0.280852E+02  0.149307E+01  0.228397E-01 -0.165320E+00  0.659225E+01  0.854726E-01 -0.175544E+00  0.844640E+00 -0.235438E+01  0.793748E+00  0.428215E+01  0.377438E+01 -0.928673E+00 -0.187642E-03 -0.251241E+02  0.304694E+01  0.616624E+01  0.975085E+00  0.547315E+00  0.187554E-01 -0.997468E+00  0.705069E-01 -0.934571E-02
+  0.265311E+02  0.368404E+00  0.357303E-01  0.242576E+00  0.119793E+00  0.263124E+02  0.838920E+03  0.361540E+04 -0.246472E+04  0.372284E-01  0.196531E+00  0.187992E-02  0.122400E+00  0.737138E+00 -0.116501E+00  0.293420E+02  0.142606E+01  0.208537E-01 -0.154338E+00  0.669763E+01  0.739509E-01 -0.121040E+00  0.843935E+00 -0.206741E+01  0.758343E+00  0.421431E+01  0.368404E+01 -0.880531E+00 -0.222120E-03 -0.261239E+02  0.314450E+01  0.613668E+01  0.960209E+00  0.549706E+00  0.209013E-01 -0.997268E+00  0.732038E-01 -0.986488E-02
+  0.278048E+02  0.358240E+00  0.323709E-01  0.237072E+00  0.119287E+00  0.273349E+02  0.840503E+03  0.370533E+04 -0.244320E+04  0.427992E-01  0.224917E+00  0.212435E-02  0.117547E+00  0.717563E+00 -0.102406E+00  0.306155E+02  0.136311E+01  0.193555E-01 -0.143946E+00  0.655339E+01  0.654872E-01 -0.101215E+00  0.852421E+00 -0.205417E+01  0.722322E+00  0.408664E+01  0.358240E+01 -0.832851E+00 -0.301903E-03 -0.271406E+02  0.325296E+01  0.608989E+01  0.943194E+00  0.550873E+00  0.229892E-01 -0.997029E+00  0.760422E-01 -0.122620E-01
+  0.290939E+02  0.347711E+00  0.293937E-01  0.232135E+00  0.118876E+00  0.283578E+02  0.841284E+03  0.378567E+04 -0.240835E+04  0.488086E-01  0.256065E+00  0.216431E-02  0.112934E+00  0.701932E+00 -0.876947E-01  0.318872E+02  0.130410E+01  0.179471E-01 -0.134167E+00  0.660076E+01  0.629839E-01 -0.999399E-01  0.846732E+00 -0.181116E+01  0.692685E+00  0.402727E+01  0.347711E+01 -0.787901E+00 -0.559073E-03 -0.281576E+02  0.336314E+01  0.603686E+01  0.925243E+00  0.551493E+00  0.255566E-01 -0.996791E+00  0.772726E-01 -0.208939E-01
+  0.303973E+02  0.337787E+00  0.267260E-01  0.227111E+00  0.118319E+00  0.294090E+02  0.841148E+03  0.386694E+04 -0.237137E+04  0.554945E-01  0.291234E+00  0.241065E-02  0.108383E+00  0.687811E+00 -0.712115E-01  0.331909E+02  0.125037E+01  0.166889E-01 -0.125427E+00  0.647055E+01  0.553951E-01 -0.842917E-01  0.863175E+00 -0.179247E+01  0.659652E+00  0.389916E+01  0.337787E+01 -0.745899E+00 -0.843455E-03 -0.292033E+02  0.347154E+01  0.597408E+01  0.908008E+00  0.551517E+00  0.280672E-01 -0.996450E+00  0.790500E-01 -0.289496E-01
+  0.317137E+02  0.328260E+00  0.243552E-01  0.222243E+00  0.117640E+00  0.304702E+02  0.840139E+03  0.394531E+04 -0.233155E+04  0.627592E-01  0.329984E+00  0.244906E-02  0.104043E+00  0.675173E+00 -0.530123E-01  0.345045E+02  0.120199E+01  0.155657E-01 -0.117739E+00  0.643785E+01  0.554751E-01 -0.844903E-01  0.867328E+00 -0.167114E+01  0.633047E+00  0.382374E+01  0.328260E+01 -0.706774E+00 -0.116602E-02 -0.302596E+02  0.357625E+01  0.590110E+01  0.891164E+00  0.550950E+00  0.307991E-01 -0.996095E+00  0.803283E-01 -0.366325E-01
+  0.330416E+02  0.318725E+00  0.222221E-01  0.217591E+00  0.117114E+00  0.315464E+02  0.838264E+03  0.401819E+04 -0.228303E+04  0.706842E-01  0.372954E+00  0.269339E-02  0.997285E-01  0.665135E+00 -0.330845E-01  0.358327E+02  0.115613E+01  0.144991E-01 -0.110406E+00  0.639913E+01  0.520807E-01 -0.585891E-01  0.870178E+00 -0.155034E+01  0.608186E+00  0.375156E+01  0.318725E+01 -0.669870E+00 -0.157568E-02 -0.313303E+02  0.368609E+01  0.582447E+01  0.873999E+00  0.549818E+00  0.337124E-01 -0.995640E+00  0.815001E-01 -0.453797E-01
+  0.343798E+02  0.315202E+00  0.205306E-01  0.211284E+00  0.114974E+00  0.326314E+02  0.837660E+03  0.413800E+04 -0.230633E+04  0.792741E-01  0.420219E+00  0.272964E-02  0.954021E-01  0.658441E+00 -0.109146E-01  0.371751E+02  0.112856E+01  0.138694E-01 -0.107477E+00  0.638318E+01  0.501577E-01 -0.439798E-01  0.882235E+00 -0.152220E+01  0.590776E+00  0.370584E+01  0.315202E+01 -0.642304E+00 -0.207043E-02 -0.324159E+02  0.374349E+01  0.573606E+01  0.867573E+00  0.549549E+00  0.366486E-01 -0.995037E+00  0.829293E-01 -0.549943E-01
+  0.357270E+02  0.315207E+00  0.191371E-01  0.204362E+00  0.112175E+00  0.337187E+02  0.838227E+03  0.428791E+04 -0.236661E+04  0.885385E-01  0.472229E+00  0.296022E-02  0.910992E-01  0.656172E+00  0.137205E-01  0.385222E+02  0.111106E+01  0.134750E-01 -0.106570E+00  0.642877E+01  0.453453E-01 -0.583265E-01  0.894741E+00 -0.145416E+01  0.578688E+00  0.368643E+01  0.315207E+01 -0.620434E+00 -0.242519E-02 -0.335067E+02  0.377446E+01  0.564706E+01  0.867574E+00  0.550029E+00  0.403032E-01 -0.994834E+00  0.829487E-01 -0.585263E-01
+  0.370816E+02  0.314818E+00  0.178584E-01  0.197945E+00  0.109858E+00  0.348151E+02  0.838492E+03  0.443494E+04 -0.241904E+04  0.985022E-01  0.529341E+00  0.316591E-02  0.868074E-01  0.653665E+00  0.411830E-01  0.398768E+02  0.109577E+01  0.131191E-01 -0.105834E+00  0.647291E+01  0.450806E-01 -0.646016E-01  0.902443E+00 -0.137125E+01  0.568964E+00  0.367276E+01  0.314818E+01 -0.599365E+00 -0.279325E-02 -0.346052E+02  0.381701E+01  0.554867E+01  0.866850E+00  0.550311E+00  0.438148E-01 -0.994561E+00  0.837353E-01 -0.619465E-01
+  0.384425E+02  0.315029E+00  0.167203E-01  0.191718E+00  0.107757E+00  0.359187E+02  0.839108E+03  0.458820E+04 -0.246472E+04  0.109133E+00  0.591343E+00  0.335244E-02  0.824780E-01  0.653064E+00  0.713750E-01  0.412375E+02  0.108335E+01  0.127617E-01 -0.105046E+00  0.662433E+01  0.419917E-01 -0.607989E-01  0.913055E+00 -0.110907E+01  0.560146E+00  0.367158E+01  0.315029E+01 -0.580346E+00 -0.317457E-02 -0.357104E+02  0.386302E+01  0.544906E+01  0.867222E+00  0.550825E+00  0.471774E-01 -0.994226E+00  0.851398E-01 -0.653172E-01
+  0.398082E+02  0.315038E+00  0.156749E-01  0.185892E+00  0.106136E+00  0.370286E+02  0.839408E+03  0.474008E+04 -0.250497E+04  0.120395E+00  0.658006E+00  0.353027E-02  0.780611E-01  0.653534E+00  0.104459E+00  0.426030E+02  0.107270E+01  0.124642E-01 -0.104427E+00  0.664400E+01  0.346251E-01 -0.596203E-01  0.921413E+00 -0.105045E+01  0.552808E+00  0.365304E+01  0.315038E+01 -0.562101E+00 -0.356896E-02 -0.368202E+02  0.392269E+01  0.534448E+01  0.867220E+00  0.551134E+00  0.503855E-01 -0.993831E+00  0.870769E-01 -0.686815E-01
+  0.411774E+02  0.315308E+00  0.147311E-01  0.180334E+00  0.104864E+00  0.381422E+02  0.839776E+03  0.489484E+04 -0.253829E+04  0.132271E+00  0.729638E+00  0.336565E-02  0.734896E-01  0.655219E+00  0.140610E+00  0.439705E+02  0.106453E+01  0.122170E-01 -0.103873E+00  0.670267E+01  0.374373E-01 -0.839342E-01  0.928629E+00 -0.916135E+00  0.547041E+00  0.364115E+01  0.315308E+01 -0.545203E+00 -0.401957E-02 -0.379326E+02  0.399242E+01  0.523675E+01  0.867689E+00  0.551506E+00  0.546031E-01 -0.993621E+00  0.873936E-01 -0.712785E-01
+  0.425486E+02  0.315989E+00  0.138805E-01  0.174972E+00  0.103947E+00  0.392604E+02  0.840342E+03  0.505446E+04 -0.256489E+04  0.144858E+00  0.807643E+00  0.348030E-02  0.687208E-01  0.657224E+00  0.180723E+00  0.453413E+02  0.105884E+01  0.119885E-01 -0.103346E+00  0.653043E+01  0.357678E-01 -0.799893E-01  0.934988E+00 -0.120148E+01  0.542762E+00  0.360248E+01  0.315989E+01 -0.529721E+00 -0.449574E-02 -0.390485E+02  0.407364E+01  0.512720E+01  0.868901E+00  0.552013E+00  0.590957E-01 -0.993416E+00  0.878411E-01 -0.735395E-01
+  0.439205E+02  0.316776E+00  0.131023E-01  0.169876E+00  0.103414E+00  0.403809E+02  0.840755E+03  0.521567E+04 -0.258374E+04  0.158102E+00  0.891648E+00  0.353422E-02  0.638196E-01  0.659026E+00  0.224508E+00  0.467128E+02  0.105543E+01  0.118107E-01 -0.102914E+00  0.668635E+01  0.296552E-01 -0.818077E-01  0.940518E+00 -0.883532E+00  0.539847E+00  0.360586E+01  0.316776E+01 -0.515134E+00 -0.497978E-02 -0.401651E+02  0.416852E+01  0.501370E+01  0.870295E+00  0.552421E+00  0.633517E-01 -0.993127E+00  0.891383E-01 -0.758514E-01
+  0.452917E+02  0.317897E+00  0.123985E-01  0.164972E+00  0.103127E+00  0.415023E+02  0.841364E+03  0.538094E+04 -0.259568E+04  0.171950E+00  0.981240E+00  0.354911E-02  0.588569E-01  0.661703E+00  0.271711E+00  0.480834E+02  0.105398E+01  0.116290E-01 -0.102463E+00  0.658124E+01  0.326285E-01 -0.102088E+00  0.955970E+00 -0.984110E+00  0.535890E+00  0.354957E+01  0.317897E+01 -0.501756E+00 -0.547198E-02 -0.412818E+02  0.427240E+01  0.490025E+01  0.872283E+00  0.552960E+00  0.673666E-01 -0.992768E+00  0.910490E-01 -0.782407E-01
+  0.466609E+02  0.318781E+00  0.117431E-01  0.160385E+00  0.103137E+00  0.426236E+02  0.841584E+03  0.554383E+04 -0.260213E+04  0.186346E+00  0.107601E+01  0.321025E-02  0.539034E-01  0.664486E+00  0.322051E+00  0.494520E+02  0.105399E+01  0.115051E-01 -0.102191E+00  0.671788E+01  0.293391E-01 -0.850235E-01  0.956224E+00 -0.712973E+00  0.535838E+00  0.356263E+01  0.318781E+01 -0.488752E+00 -0.597444E-02 -0.423971E+02  0.438830E+01  0.478360E+01  0.873821E+00  0.553246E+00  0.712004E-01 -0.992364E+00  0.932927E-01 -0.806816E-01
+  0.480266E+02  0.319761E+00  0.111475E-01  0.156022E+00  0.103348E+00  0.437439E+02  0.842077E+03  0.570783E+04 -0.260170E+04  0.201298E+00  0.117711E+01  0.317838E-02  0.489520E-01  0.668125E+00  0.376756E+00  0.508169E+02  0.105549E+01  0.113819E-01 -0.101909E+00  0.677981E+01  0.292017E-01 -0.824127E-01  0.957272E+00 -0.574105E+00  0.536385E+00  0.356407E+01  0.319761E+01 -0.476752E+00 -0.654247E-02 -0.435105E+02  0.451280E+01  0.466715E+01  0.875509E+00  0.553773E+00  0.768489E-01 -0.992299E+00  0.931387E-01 -0.816623E-01
+  0.493874E+02  0.320799E+00  0.105978E-01  0.151877E+00  0.103777E+00  0.448612E+02  0.842386E+03  0.587236E+04 -0.259587E+04  0.216817E+00  0.128526E+01  0.295859E-02  0.439777E-01  0.672138E+00  0.436111E+00  0.521767E+02  0.105857E+01  0.112873E-01 -0.101713E+00  0.677298E+01  0.290879E-01 -0.624879E-01  0.956618E+00 -0.595360E+00  0.538088E+00  0.356631E+01  0.320799E+01 -0.465357E+00 -0.710776E-02 -0.446198E+02  0.464722E+01  0.455019E+01  0.877274E+00  0.554169E+00  0.821354E-01 -0.992134E+00  0.938814E-01 -0.828041E-01
+  0.507421E+02  0.321826E+00  0.100891E-01  0.147951E+00  0.104394E+00  0.459744E+02  0.842539E+03  0.603640E+04 -0.258330E+04  0.232836E+00  0.139979E+01  0.261336E-02  0.390168E-01  0.676535E+00  0.499578E+00  0.535301E+02  0.106299E+01  0.112084E-01 -0.101529E+00  0.649125E+01  0.356228E-01 -0.562777E-01  0.955592E+00 -0.110636E+01  0.540550E+00  0.353161E+01  0.321826E+01 -0.454498E+00 -0.766881E-02 -0.457241E+02  0.479075E+01  0.443327E+01  0.878983E+00  0.554451E+00  0.870582E-01 -0.991893E+00  0.952781E-01 -0.840797E-01
+  0.520892E+02  0.322714E+00  0.961483E-02  0.144258E+00  0.105181E+00  0.470823E+02  0.842438E+03  0.619808E+04 -0.256549E+04  0.249286E+00  0.152005E+01  0.219697E-02  0.341045E-01  0.681389E+00  0.566618E+00  0.548758E+02  0.106832E+01  0.111489E-01 -0.101382E+00  0.667885E+01  0.303813E-01 -0.707372E-01  0.958308E+00 -0.730429E+00  0.542689E+00  0.354539E+01  0.322714E+01 -0.444006E+00 -0.822410E-02 -0.468221E+02  0.494303E+01  0.431712E+01  0.880396E+00  0.554555E+00  0.916173E-01 -0.991593E+00  0.971479E-01 -0.854714E-01
+  0.534275E+02  0.323446E+00  0.917252E-02  0.140788E+00  0.106106E+00  0.481842E+02  0.842118E+03  0.635681E+04 -0.254354E+04  0.266101E+00  0.164554E+01  0.147027E-02  0.292770E-01  0.686625E+00  0.636691E+00  0.562127E+02  0.107447E+01  0.111154E-01 -0.101298E+00  0.657019E+01  0.331119E-01 -0.662415E-01  0.956527E+00 -0.917468E+00  0.546190E+00  0.353303E+01  0.323446E+01 -0.433887E+00 -0.878846E-02 -0.479132E+02  0.510306E+01  0.420205E+01  0.881470E+00  0.554533E+00  0.965716E-01 -0.991373E+00  0.985458E-01 -0.864203E-01
+  0.547554E+02  0.323926E+00  0.875992E-02  0.137548E+00  0.107142E+00  0.492786E+02  0.841659E+03  0.651082E+04 -0.251491E+04  0.283275E+00  0.177787E+01  0.893847E-03  0.245855E-01  0.692271E+00  0.711327E+00  0.575389E+02  0.108136E+01  0.111014E-01 -0.101183E+00  0.654045E+01  0.394891E-01 -0.521493E-01  0.956708E+00 -0.962434E+00  0.549651E+00  0.352841E+01  0.323926E+01 -0.424133E+00 -0.938442E-02 -0.489960E+02  0.526973E+01  0.408787E+01  0.882020E+00  0.554475E+00  0.102846E+00 -0.991367E+00  0.986493E-01 -0.863691E-01
+  0.560717E+02  0.324264E+00  0.837387E-02  0.134502E+00  0.108216E+00  0.503639E+02  0.840961E+03  0.666108E+04 -0.248457E+04  0.300772E+00  0.191694E+01  0.733300E-04  0.200356E-01  0.698650E+00  0.790325E+00  0.588530E+02  0.108874E+01  0.110921E-01 -0.101153E+00  0.655895E+01  0.384800E-01 -0.519568E-01  0.955695E+00 -0.921136E+00  0.553618E+00  0.353191E+01  0.324264E+01 -0.414690E+00 -0.997241E-02 -0.500692E+02  0.543956E+01  0.397615E+01  0.882228E+00  0.554248E+00  0.108608E+00 -0.991271E+00  0.993755E-01 -0.866395E-01
+  0.573751E+02  0.324109E+00  0.800464E-02  0.131708E+00  0.109397E+00  0.514391E+02  0.839670E+03  0.680219E+04 -0.245032E+04  0.318521E+00  0.206179E+01 -0.915038E-03  0.156189E-01  0.705349E+00  0.873097E+00  0.601539E+02  0.109615E+01  0.111161E-01 -0.101180E+00  0.648889E+01  0.416427E-01 -0.544771E-01  0.956947E+00 -0.100527E+01  0.557117E+00  0.351384E+01  0.324109E+01 -0.405157E+00 -0.105510E-01 -0.511316E+02  0.561606E+01  0.386560E+01  0.881434E+00  0.553616E+00  0.113865E+00 -0.991104E+00  0.100568E+00 -0.871744E-01
+  0.586643E+02  0.323870E+00  0.765753E-02  0.129073E+00  0.110603E+00  0.525029E+02  0.837966E+03  0.693911E+04 -0.241114E+04  0.336452E+00  0.221150E+01 -0.201626E-02  0.113269E-01  0.712598E+00  0.959041E+00  0.614404E+02  0.110411E+01  0.111716E-01 -0.101148E+00  0.646733E+01  0.429917E-01 -0.516653E-01  0.955551E+00 -0.102915E+01  0.561468E+00  0.351170E+01  0.323870E+01 -0.395867E+00 -0.111186E-01 -0.521821E+02  0.579517E+01  0.375748E+01  0.880350E+00  0.552699E+00  0.118625E+00 -0.990879E+00  0.102115E+00 -0.879331E-01
+  0.599380E+02  0.323437E+00  0.733378E-02  0.126609E+00  0.111883E+00  0.535550E+02  0.836259E+03  0.706971E+04 -0.237012E+04  0.354497E+00  0.236545E+01 -0.343754E-02  0.715625E-02  0.720191E+00  0.104767E+01  0.627114E+02  0.111248E+01  0.111980E-01 -0.101188E+00  0.643833E+01  0.439569E-01 -0.516085E-01  0.955509E+00 -0.106593E+01  0.565732E+00  0.350674E+01  0.323437E+01 -0.386963E+00 -0.116733E-01 -0.532201E+02  0.597940E+01  0.365146E+01  0.878742E+00  0.551810E+00  0.124021E+00 -0.990773E+00  0.103068E+00 -0.880154E-01
+  0.611948E+02  0.322695E+00  0.702801E-02  0.124329E+00  0.113218E+00  0.545936E+02  0.834234E+03  0.719145E+04 -0.232577E+04  0.372634E+00  0.252526E+01 -0.486213E-02  0.314932E-02  0.727968E+00  0.114053E+01  0.639651E+02  0.112099E+01  0.112332E-01 -0.101238E+00  0.642489E+01  0.463584E-01 -0.515662E-01  0.953612E+00 -0.107159E+01  0.570477E+00  0.350578E+01  0.322695E+01 -0.378231E+00 -0.122136E-01 -0.542440E+02  0.616780E+01  0.354745E+01  0.876357E+00  0.550758E+00  0.130542E+00 -0.990840E+00  0.103169E+00 -0.871350E-01
+  0.624335E+02  0.321758E+00  0.673682E-02  0.122202E+00  0.114512E+00  0.556171E+02  0.831599E+03  0.730516E+04 -0.228027E+04  0.390818E+00  0.269041E+01 -0.659015E-02 -0.673229E-03  0.736160E+00  0.123705E+01  0.652001E+02  0.112929E+01  0.112938E-01 -0.101305E+00  0.641313E+01  0.472672E-01 -0.515662E-01  0.952223E+00 -0.107396E+01  0.575012E+00  0.350417E+01  0.321758E+01 -0.369551E+00 -0.127400E-01 -0.552529E+02  0.635492E+01  0.344680E+01  0.873351E+00  0.549280E+00  0.136402E+00 -0.990822E+00  0.103735E+00 -0.866590E-01
+  0.636529E+02  0.320451E+00  0.645786E-02  0.120253E+00  0.115781E+00  0.566248E+02  0.828400E+03  0.740715E+04 -0.223116E+04  0.408985E+00  0.285971E+01 -0.851295E-02 -0.430220E-02  0.744266E+00  0.133638E+01  0.664156E+02  0.113743E+01  0.113541E-01 -0.101370E+00  0.640754E+01  0.476999E-01 -0.515662E-01  0.950865E+00 -0.106621E+01  0.579458E+00  0.350336E+01  0.320451E+01 -0.360843E+00 -0.132514E-01 -0.562457E+02  0.654144E+01  0.334772E+01  0.869339E+00  0.547402E+00  0.141621E+00 -0.990741E+00  0.104628E+00 -0.865186E-01
+  0.648518E+02  0.319049E+00  0.619348E-02  0.118423E+00  0.116965E+00  0.576156E+02  0.824700E+03  0.750064E+04 -0.218215E+04  0.427074E+00  0.303203E+01 -0.105556E-01 -0.772995E-02  0.752890E+00  0.143766E+01  0.676103E+02  0.114501E+01  0.114106E-01 -0.101431E+00  0.640761E+01  0.476941E-01 -0.515662E-01  0.949611E+00 -0.105028E+01  0.583604E+00  0.350329E+01  0.319049E+01 -0.352287E+00 -0.137463E-01 -0.572219E+02  0.672363E+01  0.325284E+01  0.864756E+00  0.545169E+00  0.146219E+00 -0.990610E+00  0.105743E+00 -0.866631E-01
+  0.660289E+02  0.317389E+00  0.594071E-02  0.116735E+00  0.118094E+00  0.585885E+02  0.820398E+03  0.758186E+04 -0.213073E+04  0.445020E+00  0.320630E+01 -0.128596E-01 -0.109517E-01  0.761428E+00  0.154004E+01  0.687830E+02  0.115225E+01  0.114642E-01 -0.101490E+00  0.641245E+01  0.473200E-01 -0.515662E-01  0.948437E+00 -0.102749E+01  0.587560E+00  0.350384E+01  0.317389E+01 -0.343762E+00 -0.142247E-01 -0.581805E+02  0.690287E+01  0.316001E+01  0.859218E+00  0.542537E+00  0.150714E+00 -0.990498E+00  0.106715E+00 -0.867459E-01
+  0.671830E+02  0.315808E+00  0.570430E-02  0.115126E+00  0.119222E+00  0.595429E+02  0.815715E+03  0.765515E+04 -0.207910E+04  0.462788E+00  0.338374E+01 -0.151609E-01 -0.140365E-01  0.770137E+00  0.164500E+01  0.699326E+02  0.115949E+01  0.115173E-01 -0.101548E+00  0.642193E+01  0.465869E-01 -0.515662E-01  0.947294E+00 -0.997524E+00  0.591515E+00  0.350500E+01  0.315808E+01 -0.335591E+00 -0.146960E-01 -0.591202E+02  0.708203E+01  0.307057E+01  0.853263E+00  0.539752E+00  0.157298E+00 -0.990639E+00  0.106423E+00 -0.854910E-01
+  0.683130E+02  0.314365E+00  0.548011E-02  0.113584E+00  0.120308E+00  0.604766E+02  0.810374E+03  0.772037E+04 -0.202732E+04  0.480351E+00  0.356443E+01 -0.178054E-01 -0.170220E-01  0.778966E+00  0.175243E+01  0.710575E+02  0.116647E+01  0.115673E-01 -0.101604E+00  0.643544E+01  0.455422E-01 -0.515662E-01  0.946230E+00 -0.962088E+00  0.595322E+00  0.350670E+01  0.314365E+01 -0.327581E+00 -0.151599E-01 -0.600395E+02  0.725829E+01  0.298446E+01  0.846910E+00  0.536484E+00  0.163077E+00 -0.990686E+00  0.106597E+00 -0.847288E-01
+  0.694178E+02  0.313013E+00  0.526622E-02  0.112112E+00  0.121355E+00  0.613889E+02  0.804280E+03  0.777555E+04 -0.197441E+04  0.497657E+00  0.374702E+01 -0.206179E-01 -0.199025E-01  0.787687E+00  0.186105E+01  0.721570E+02  0.117321E+01  0.116143E-01 -0.101658E+00  0.645254E+01  0.442204E-01 -0.515662E-01  0.945243E+00 -0.921972E+00  0.598993E+00  0.350887E+01  0.313013E+01 -0.319661E+00 -0.156153E-01 -0.609375E+02  0.743157E+01  0.290072E+01  0.839966E+00  0.532670E+00  0.168090E+00 -0.990658E+00  0.107125E+00 -0.843806E-01
+  0.704961E+02  0.312037E+00  0.506454E-02  0.110663E+00  0.122313E+00  0.622789E+02  0.797507E+03  0.782443E+04 -0.192340E+04  0.514656E+00  0.393024E+01 -0.234608E-01 -0.226733E-01  0.796822E+00  0.196968E+01  0.732299E+02  0.117941E+01  0.116560E-01 -0.101707E+00  0.647595E+01  0.428584E-01 -0.520201E-01  0.944380E+00 -0.873338E+00  0.602356E+00  0.351187E+01  0.312037E+01 -0.311984E+00 -0.160615E-01 -0.618137E+02  0.759854E+01  0.282140E+01  0.832863E+00  0.528367E+00  0.172374E+00 -0.990572E+00  0.107918E+00 -0.843870E-01
+  0.715471E+02  0.311236E+00  0.487139E-02  0.109266E+00  0.123211E+00  0.631459E+02  0.789859E+03  0.786219E+04 -0.187134E+04  0.531302E+00  0.411293E+01 -0.262009E-01 -0.253303E-01  0.805770E+00  0.207725E+01  0.742754E+02  0.118524E+01  0.116942E-01 -0.101755E+00  0.651837E+01  0.421956E-01 -0.546712E-01  0.943631E+00 -0.795556E+00  0.605514E+00  0.351737E+01  0.311236E+01 -0.304365E+00 -0.164973E-01 -0.626672E+02  0.776062E+01  0.274410E+01  0.825103E+00  0.523441E+00  0.175971E+00 -0.990436E+00  0.108911E+00 -0.847011E-01
+  0.725696E+02  0.310950E+00  0.469003E-02  0.107865E+00  0.124039E+00  0.639899E+02  0.781489E+03  0.789360E+04 -0.182130E+04  0.547563E+00  0.429431E+01 -0.289428E-01 -0.278725E-01  0.814990E+00  0.218301E+01  0.752936E+02  0.119065E+01  0.117289E-01 -0.101801E+00  0.655098E+01  0.416861E-01 -0.567094E-01  0.942998E+00 -0.735397E+00  0.608426E+00  0.352160E+01  0.310950E+01 -0.297046E+00 -0.168824E-01 -0.634983E+02  0.791690E+01  0.267085E+01  0.817198E+00  0.518079E+00  0.179942E+00 -0.990376E+00  0.109605E+00 -0.845167E-01
+  0.735625E+02  0.311167E+00  0.452040E-02  0.106466E+00  0.124885E+00  0.648086E+02  0.772377E+03  0.791700E+04 -0.177159E+04  0.563374E+00  0.447527E+01 -0.316910E-01 -0.303295E-01  0.823905E+00  0.228918E+01  0.762809E+02  0.119620E+01  0.117640E-01 -0.101850E+00  0.657793E+01  0.412650E-01 -0.583937E-01  0.942398E+00 -0.685020E+00  0.611407E+00  0.352509E+01  0.311167E+01 -0.290051E+00 -0.171688E-01 -0.643039E+02  0.807258E+01  0.260025E+01  0.809011E+00  0.512360E+00  0.185558E+00 -0.990513E+00  0.109566E+00 -0.829395E-01
+  0.745249E+02  0.311953E+00  0.435875E-02  0.105057E+00  0.125643E+00  0.656009E+02  0.762266E+03  0.793210E+04 -0.172283E+04  0.578738E+00  0.465564E+01 -0.347302E-01 -0.327096E-01  0.832580E+00  0.239579E+01  0.772374E+02  0.120120E+01  0.117952E-01 -0.101895E+00  0.659661E+01  0.409732E-01 -0.595608E-01  0.941893E+00 -0.649218E+00  0.614082E+00  0.352751E+01  0.311953E+01 -0.283181E+00 -0.174555E-01 -0.650838E+02  0.822064E+01  0.253269E+01  0.800517E+00  0.505928E+00  0.190324E+00 -0.990566E+00  0.109901E+00 -0.818575E-01
+  0.754557E+02  0.313443E+00  0.420510E-02  0.103617E+00  0.126294E+00  0.663661E+02  0.751129E+03  0.793985E+04 -0.167576E+04  0.593626E+00  0.483415E+01 -0.379048E-01 -0.350094E-01  0.841195E+00  0.250162E+01  0.781623E+02  0.120550E+01  0.118218E-01 -0.101934E+00  0.660848E+01  0.407876E-01 -0.603031E-01  0.941479E+00 -0.625450E+00  0.616377E+00  0.352904E+01  0.313443E+01 -0.276466E+00 -0.177419E-01 -0.658375E+02  0.835936E+01  0.246858E+01  0.791818E+00  0.498768E+00  0.194301E+00 -0.990551E+00  0.110526E+00 -0.811959E-01
+  0.763541E+02  0.315568E+00  0.405739E-02  0.102157E+00  0.126846E+00  0.671035E+02  0.738805E+03  0.793709E+04 -0.162884E+04  0.608012E+00  0.500966E+01 -0.410769E-01 -0.372261E-01  0.849496E+00  0.260561E+01  0.790546E+02  0.120915E+01  0.118443E-01 -0.101967E+00  0.661557E+01  0.406769E-01 -0.607459E-01  0.941138E+00 -0.610217E+00  0.618327E+00  0.352996E+01  0.315568E+01 -0.269797E+00 -0.180269E-01 -0.665644E+02  0.848901E+01  0.240664E+01  0.782608E+00  0.490776E+00  0.197547E+00 -0.990480E+00  0.111378E+00 -0.808942E-01
+  0.772192E+02  0.318169E+00  0.391292E-02  0.100700E+00  0.127322E+00  0.678125E+02  0.725075E+03  0.791880E+04 -0.157976E+04  0.621871E+00  0.518118E+01 -0.441298E-01 -0.393569E-01  0.857061E+00  0.270686E+01  0.799137E+02  0.121230E+01  0.118636E-01 -0.101996E+00  0.661946E+01  0.406161E-01 -0.609893E-01  0.940850E+00 -0.600695E+00  0.620005E+00  0.353045E+01  0.318169E+01 -0.263015E+00 -0.183092E-01 -0.672635E+02  0.861069E+01  0.234499E+01  0.772410E+00  0.481806E+00  0.200122E+00 -0.990363E+00  0.112407E+00 -0.809021E-01
+  0.780500E+02  0.321623E+00  0.377383E-02  0.991906E-01  0.127665E+00  0.684922E+02  0.710022E+03  0.788992E+04 -0.153155E+04  0.635184E+00  0.534779E+01 -0.469924E-01 -0.413996E-01  0.864458E+00  0.280458E+01  0.807388E+02  0.121457E+01  0.118775E-01 -0.102017E+00  0.662100E+01  0.405920E-01 -0.610855E-01  0.940645E+00 -0.595869E+00  0.621216E+00  0.353065E+01  0.321623E+01 -0.256283E+00 -0.185872E-01 -0.679348E+02  0.872030E+01  0.228578E+01  0.761730E+00  0.471923E+00  0.202089E+00 -0.990208E+00  0.113571E+00 -0.811764E-01
+  0.788458E+02  0.325249E+00  0.363303E-02  0.977280E-01  0.127970E+00  0.691422E+02  0.693136E+03  0.783517E+04 -0.147696E+04  0.647928E+00  0.550873E+01 -0.495717E-01 -0.433518E-01  0.870296E+00  0.289813E+01  0.815291E+02  0.121659E+01  0.118899E-01 -0.102036E+00  0.662148E+01  0.405846E-01 -0.611154E-01  0.940463E+00 -0.592999E+00  0.622294E+00  0.353070E+01  0.325249E+01 -0.249134E+00 -0.188593E-01 -0.685768E+02  0.882400E+01  0.222337E+01  0.749111E+00  0.460776E+00  0.203506E+00 -0.990021E+00  0.114836E+00 -0.816793E-01
+  0.796057E+02  0.329511E+00  0.349431E-02  0.962420E-01  0.128184E+00  0.697608E+02  0.674571E+03  0.776113E+04 -0.142033E+04  0.660070E+00  0.566337E+01 -0.520731E-01 -0.452105E-01  0.875772E+00  0.298715E+01  0.822833E+02  0.121801E+01  0.118986E-01 -0.102049E+00  0.662132E+01  0.405872E-01 -0.611050E-01  0.940337E+00 -0.591783E+00  0.623049E+00  0.353068E+01  0.329511E+01 -0.241841E+00 -0.194520E-01 -0.691884E+02  0.891774E+01  0.216086E+01  0.735231E+00  0.448568E+00  0.205432E+00 -0.989756E+00  0.115797E+00 -0.835150E-01
+  0.803290E+02  0.334531E+00  0.335649E-02  0.947171E-01  0.128269E+00  0.703486E+02  0.654215E+03  0.766718E+04 -0.136161E+04  0.671615E+00  0.581208E+01 -0.542711E-01 -0.469712E-01  0.881467E+00  0.307231E+01  0.830016E+02  0.121857E+01  0.119020E-01 -0.102054E+00  0.662114E+01  0.405900E-01 -0.610938E-01  0.940286E+00 -0.591482E+00  0.623348E+00  0.353065E+01  0.334531E+01 -0.234330E+00 -0.198701E-01 -0.697707E+02  0.899880E+01  0.209799E+01  0.720046E+00  0.435148E+00  0.207285E+00 -0.989569E+00  0.116670E+00 -0.845096E-01
+  0.810150E+02  0.339660E+00  0.321360E-02  0.932423E-01  0.128319E+00  0.709063E+02  0.631606E+03  0.753824E+04 -0.129483E+04  0.682569E+00  0.595463E+01 -0.562441E-01 -0.486238E-01  0.885154E+00  0.315322E+01  0.836845E+02  0.121890E+01  0.119041E-01 -0.102057E+00  0.662100E+01  0.405922E-01 -0.610851E-01  0.940256E+00 -0.591350E+00  0.623527E+00  0.353063E+01  0.339660E+01 -0.226199E+00 -0.202444E-01 -0.703234E+02  0.907370E+01  0.202977E+01  0.702160E+00  0.420243E+00  0.208981E+00 -0.989393E+00  0.117547E+00 -0.853524E-01
+  0.816629E+02  0.346343E+00  0.307558E-02  0.916165E-01  0.128103E+00  0.714295E+02  0.607395E+03  0.739893E+04 -0.123176E+04  0.692876E+00  0.608997E+01 -0.581224E-01 -0.501424E-01  0.889477E+00  0.323002E+01  0.843279E+02  0.121747E+01  0.118953E-01 -0.102044E+00  0.662143E+01  0.405854E-01 -0.611120E-01  0.940384E+00 -0.592166E+00  0.622764E+00  0.353069E+01  0.346343E+01 -0.218148E+00 -0.206033E-01 -0.708442E+02  0.912533E+01  0.196534E+01  0.683926E+00  0.404269E+00  0.210409E+00 -0.989214E+00  0.118396E+00 -0.862464E-01
+  0.822721E+02  0.352883E+00  0.292822E-02  0.900742E-01  0.127853E+00  0.719198E+02  0.580652E+03  0.721484E+04 -0.115792E+04  0.702564E+00  0.621821E+01 -0.597471E-01 -0.515401E-01  0.890995E+00  0.330208E+01  0.849339E+02  0.121581E+01  0.118852E-01 -0.102029E+00  0.662140E+01  0.405859E-01 -0.611102E-01  0.940533E+00 -0.593940E+00  0.621882E+00  0.353069E+01  0.352883E+01 -0.209189E+00 -0.211053E-01 -0.713328E+02  0.917015E+01  0.189268E+01  0.662150E+00  0.386544E+00  0.211548E+00 -0.988966E+00  0.119199E+00 -0.879639E-01
+  0.828420E+02  0.361227E+00  0.278443E-02  0.883444E-01  0.127293E+00  0.723732E+02  0.552114E+03  0.701766E+04 -0.108786E+04  0.711593E+00  0.633858E+01 -0.611961E-01 -0.527983E-01  0.893914E+00  0.336930E+01  0.854999E+02  0.121211E+01  0.118624E-01 -0.101994E+00  0.661929E+01  0.406189E-01 -0.609783E-01  0.940867E+00 -0.601173E+00  0.619905E+00  0.353043E+01  0.361227E+01 -0.200246E+00 -0.219289E-01 -0.717876E+02  0.918776E+01  0.182334E+01  0.639791E+00  0.367674E+00  0.212673E+00 -0.988589E+00  0.119887E+00 -0.912052E-01
+  0.833721E+02  0.369971E+00  0.263297E-02  0.866248E-01  0.126610E+00  0.727949E+02  0.521167E+03  0.677924E+04 -0.101022E+04  0.719974E+00  0.645104E+01 -0.624214E-01 -0.539231E-01  0.894816E+00  0.343159E+01  0.860262E+02  0.120759E+01  0.118346E-01 -0.101953E+00  0.661287E+01  0.407191E-01 -0.605774E-01  0.941283E+00 -0.616187E+00  0.617492E+00  0.352961E+01  0.369971E+01 -0.190517E+00 -0.221721E-01 -0.722123E+02  0.919194E+01  0.174725E+01  0.614273E+00  0.347150E+00  0.213426E+00 -0.988441E+00  0.120599E+00 -0.918725E-01
+  0.838617E+02  0.379468E+00  0.247623E-02  0.848628E-01  0.125777E+00  0.731764E+02  0.488077E+03  0.650468E+04 -0.928069E+03  0.727664E+00  0.655475E+01 -0.634068E-01 -0.549300E-01  0.893371E+00  0.348843E+01  0.865102E+02  0.120208E+01  0.118006E-01 -0.101903E+00  0.659936E+01  0.409302E-01 -0.597327E-01  0.941807E+00 -0.643818E+00  0.614553E+00  0.352786E+01  0.379468E+01 -0.180185E+00 -0.229353E-01 -0.725984E+02  0.917965E+01  0.166638E+01  0.586099E+00  0.325190E+00  0.214120E+00 -0.988069E+00  0.121203E+00 -0.950272E-01
+  0.843105E+02  0.391778E+00  0.232118E-02  0.827727E-01  0.124522E+00  0.735172E+02  0.452854E+03  0.621584E+04 -0.850529E+03  0.734734E+00  0.665054E+01 -0.642700E-01 -0.558267E-01  0.893555E+00  0.354064E+01  0.869559E+02  0.119382E+01  0.117490E-01 -0.101829E+00  0.656717E+01  0.414332E-01 -0.577208E-01  0.942651E+00 -0.705261E+00  0.610128E+00  0.352369E+01  0.391778E+01 -0.169779E+00 -0.243274E-01 -0.729480E+02  0.913087E+01  0.158843E+01  0.557203E+00  0.301868E+00  0.214756E+00 -0.987393E+00  0.121747E+00 -0.101153E+00
+  0.847178E+02  0.402945E+00  0.214721E-02  0.808978E-01  0.123376E+00  0.738225E+02  0.414880E+03  0.585270E+04 -0.756774E+03  0.741143E+00  0.673775E+01 -0.649319E-01 -0.566198E-01  0.889783E+00  0.358787E+01  0.873605E+02  0.118632E+01  0.117011E-01 -0.101764E+00  0.652534E+01  0.420867E-01 -0.551069E-01  0.943501E+00 -0.782736E+00  0.606093E+00  0.351827E+01  0.402945E+01 -0.157787E+00 -0.254855E-01 -0.732613E+02  0.908482E+01  0.149260E+01  0.522221E+00  0.276673E+00  0.215142E+00 -0.986780E+00  0.122338E+00 -0.106295E+00
+  0.850834E+02  0.419541E+00  0.198187E-02  0.783468E-01  0.121468E+00  0.740894E+02  0.375129E+03  0.549794E+04 -0.676289E+03  0.746894E+00  0.681610E+01 -0.655859E-01 -0.573150E-01  0.888134E+00  0.363044E+01  0.877236E+02  0.117394E+01  0.116193E-01 -0.101664E+00  0.645463E+01  0.440592E-01 -0.515662E-01  0.945139E+00 -0.917299E+00  0.599389E+00  0.350913E+01  0.419541E+01 -0.146243E+00 -0.264365E-01 -0.735435E+02  0.897736E+01  0.140661E+01  0.488536E+00  0.250338E+00  0.215333E+00 -0.986235E+00  0.122946E+00 -0.110569E+00
+  0.854067E+02  0.432289E+00  0.179771E-02  0.763705E-01  0.120120E+00  0.742266E+02  0.334915E+03  0.506188E+04 -0.579354E+03  0.751731E+00  0.688216E+01 -0.660238E-01 -0.579179E-01  0.883170E+00  0.366601E+01  0.880295E+02  0.116526E+01  0.115587E-01 -0.101594E+00  0.643279E+01  0.457474E-01 -0.515662E-01  0.946412E+00 -0.968697E+00  0.594661E+00  0.350636E+01  0.432289E+01 -0.133136E+00 -0.318517E-01 -0.736917E+02  0.889464E+01  0.129995E+01  0.448226E+00  0.223640E+00  0.215586E+00 -0.983052E+00  0.123245E+00 -0.135720E+00
+  0.856876E+02  0.452686E+00  0.161160E-02  0.734120E-01  0.117701E+00  0.743224E+02  0.291011E+03  0.461219E+04 -0.492107E+03  0.756149E+00  0.694254E+01 -0.664500E-01 -0.584332E-01  0.883304E+00  0.369834E+01  0.883092E+02  0.114973E+01  0.114456E-01 -0.101469E+00  0.641024E+01  0.474909E-01 -0.515662E-01  0.948843E+00 -0.103625E+01  0.586184E+00  0.350358E+01  0.452686E+01 -0.119742E+00 -0.360462E-01 -0.738082E+02  0.872764E+01  0.119726E+01  0.407113E+00  0.194515E+00  0.215756E+00 -0.980135E+00  0.123504E+00 -0.155182E+00
+  0.859259E+02  0.482185E+00  0.142784E-02  0.692942E-01  0.114015E+00  0.743957E+02  0.244891E+03  0.416130E+04 -0.415795E+03  0.759893E+00  0.699374E+01 -0.668031E-01 -0.588635E-01  0.884850E+00  0.372561E+01  0.885463E+02  0.112611E+01  0.112704E-01 -0.101279E+00  0.641692E+01  0.469740E-01 -0.515662E-01  0.952757E+00 -0.107429E+01  0.573270E+00  0.350469E+01  0.482185E+01 -0.106376E+00 -0.387994E-01 -0.739127E+02  0.846388E+01  0.110047E+01  0.366330E+00  0.163923E+00  0.215847E+00 -0.977996E+00  0.123761E+00 -0.167951E+00
+  0.861212E+02  0.523055E+00  0.123774E-02  0.637142E-01  0.108762E+00  0.744508E+02  0.195968E+03  0.369084E+04 -0.346042E+03  0.762960E+00  0.703579E+01 -0.670135E-01 -0.592114E-01  0.884047E+00  0.374779E+01  0.887409E+02  0.109219E+01  0.110395E-01 -0.101008E+00  0.651213E+01  0.396131E-01 -0.515662E-01  0.958231E+00 -0.978982E+00  0.554832E+00  0.351733E+01  0.523055E+01 -0.924135E-01 -0.405073E-01 -0.740109E+02  0.808147E+01  0.100453E+01  0.324202E+00  0.131459E+00  0.215886E+00 -0.976571E+00  0.124003E+00 -0.175876E+00
+  0.862734E+02  0.588069E+00  0.104468E-02  0.549666E-01  0.100256E+00  0.744777E+02  0.142696E+03  0.324368E+04 -0.295171E+03  0.765349E+00  0.706853E+01 -0.671926E-01 -0.594792E-01  0.884399E+00  0.376505E+01  0.888924E+02  0.103571E+01  0.107721E-01 -0.100496E+00  0.673054E+01  0.286479E-01 -0.823584E-01  0.965015E+00 -0.673637E+00  0.524772E+00  0.354575E+01  0.588069E+01 -0.781299E-01 -0.414962E-01 -0.741037E+02  0.745432E+01  0.929789E+00  0.284437E+00  0.961572E-01  0.215893E+00 -0.975706E+00  0.124214E+00 -0.180470E+00
+  0.863822E+02  0.686463E+00  0.821539E-03  0.418146E-01  0.872682E-01  0.744691E+02  0.846097E+02  0.279923E+04 -0.258900E+03  0.767057E+00  0.709193E+01 -0.673271E-01 -0.596690E-01  0.885047E+00  0.377740E+01  0.890008E+02  0.947862E+00  0.104001E-01 -0.992502E-01  0.674660E+01  0.286479E-01 -0.888161E-01  0.973725E+00 -0.773322E+00  0.478663E+00  0.354811E+01  0.686463E+01 -0.615147E-01 -0.420204E-01 -0.741857E+02  0.649053E+01  0.876338E+00  0.245165E+00  0.576964E-01  0.215886E+00 -0.975230E+00  0.124377E+00 -0.182910E+00
+  0.864476E+02  0.820922E+00  0.479948E-03  0.238832E-01  0.694281E-01  0.744244E+02  0.265955E+02  0.235284E+04 -0.236129E+03  0.768082E+00  0.710598E+01 -0.674100E-01 -0.597822E-01  0.885557E+00  0.378481E+01  0.890658E+02  0.827415E+00  0.988921E-02 -0.976515E-01  0.697290E+01  0.274048E-01 -0.126051E+00  0.989481E+00 -0.490879E+00  0.415348E+00  0.357724E+01  0.820922E+01 -0.359628E-01 -0.422619E-01 -0.742451E+02  0.516299E+01  0.844243E+00  0.205918E+00  0.192799E-01  0.215877E+00 -0.975005E+00  0.124480E+00 -0.184037E+00
diff --git a/wetb/prepost/tests/test_Simulations.py b/wetb/prepost/tests/test_Simulations.py
index f4da4ea23c6525a0c67d265a92e495b2fd63cd54..4f18d65ccc4d3a2263610fade66b1fa395ab2570 100644
--- a/wetb/prepost/tests/test_Simulations.py
+++ b/wetb/prepost/tests/test_Simulations.py
@@ -1,155 +1,223 @@
-'''
-Created on 05/11/2015
-
-@author: MMPE
-'''
-from __future__ import unicode_literals
-from __future__ import print_function
-from __future__ import division
-from __future__ import absolute_import
-from future import standard_library
-standard_library.install_aliases()
-
-import unittest
-import os
-import filecmp
-import shutil
-
-import numpy as np
-import pandas as pd
-
-from wetb.prepost import dlctemplate as tmpl
-from wetb.prepost import Simulations as sim
-from wetb.fatigue_tools.fatigue import eq_load
-
-
-class Template(unittest.TestCase):
-    def setUp(self):
-        self.basepath = os.path.dirname(__file__)
-
-
-class TestGenerateInputs(Template):
-
-    def test_launch_dlcs_excel(self):
-        # manually configure paths, HAWC2 model root path is then constructed as
-        # p_root_remote/PROJECT/sim_id, and p_root_local/PROJECT/sim_id
-        # adopt accordingly when you have configured your directories differently
-        p_root = os.path.join(self.basepath, 'data/')
-        # project name, sim_id, master file name
-        tmpl.PROJECT = 'demo_dlc'
-        tmpl.MASTERFILE = 'demo_dlc_master_A0001.htc'
-        # MODEL SOURCES, exchanche file sources
-        tmpl.P_RUN = os.path.join(p_root, tmpl.PROJECT, 'remote/')
-        tmpl.P_SOURCE = os.path.join(p_root, tmpl.PROJECT, 'source/')
-        # location of the master file
-        tmpl.P_MASTERFILE = os.path.join(p_root, tmpl.PROJECT,
-                                         'source', 'htc', '_master/')
-        # location of the pre and post processing data
-        tmpl.POST_DIR = os.path.join(p_root, tmpl.PROJECT, 'remote',
-                                     'prepost/')
-
-        # make sure the remote dir is empty so a test does not pass on data
-        # generated during a previous cycle
-        if os.path.exists(os.path.join(p_root, tmpl.PROJECT, 'remote')):
-            shutil.rmtree(os.path.join(p_root, tmpl.PROJECT, 'remote'))
-
-        tmpl.force_dir = tmpl.P_RUN
-        tmpl.launch_dlcs_excel('remote', silent=True, runmethod='gorm',
-                               pbs_turb=True)
-
-        # we can not check-in empty dirs so we can not compare the complete
-        # directory structure withouth manually creating the empty dirs here
-        for subdir in ['control', 'data', 'htc', 'pbs_in', 'pbs_in_turb',
-                       'htc/_master', 'htc/dlc01_demos', 'pbs_in/dlc01_demos']:
-            remote = os.path.join(p_root, tmpl.PROJECT, 'remote', subdir)
-            ref = os.path.join(p_root, tmpl.PROJECT, 'ref', subdir)
-            cmp = filecmp.dircmp(remote, ref)
-            self.assertEqual(len(cmp.diff_files), 0, cmp.diff_files)
-            self.assertEqual(len(cmp.right_only), 0, cmp.right_only)
-            self.assertEqual(len(cmp.left_only), 0, cmp.left_only)
-
-        # for the pickled file we can just read it
-        remote = os.path.join(p_root, tmpl.PROJECT, 'remote', 'prepost')
-        ref = os.path.join(p_root, tmpl.PROJECT, 'ref', 'prepost')
-        cmp = filecmp.cmp(os.path.join(remote, 'remote_tags.txt'),
-                          os.path.join(ref, 'remote_tags.txt'), shallow=False)
-        self.assertTrue(cmp)
-#        with open(os.path.join(remote, 'remote.pkl'), 'rb') as FILE:
-#            pkl_remote = pickle.load(FILE)
-#        with open(os.path.join(ref, 'remote.pkl'), 'rb') as FILE:
-#            pkl_ref = pickle.load(FILE)
-#        self.assertTrue(pkl_remote == pkl_ref)
-
-
-class TestFatigueLifetime(Template):
-
-    def test_leq_life(self):
-        """Verify if prepost.Simulation.Cases.fatigue_lifetime() returns
-        the expected life time equivalent load.
-        """
-        # ---------------------------------------------------------------------
-        # very simple case
-        cases = {'case1':{'[post_dir]':'no-path', '[sim_id]':'A0'},
-                 'case2':{'[post_dir]':'no-path', '[sim_id]':'A0'}}
-        cc = sim.Cases(cases)
-
-        fh_list = [('case1', 10/3600), ('case2', 20/3600)]
-        dfs = pd.DataFrame({'m=1.0' : [2, 3],
-                            'channel' : ['channel1', 'channel1'],
-                            '[case_id]' : ['case1', 'case2']})
-        neq_life = 1.0
-        df_Leq = cc.fatigue_lifetime(dfs, neq_life, fh_lst=fh_list,
-                                     save=False, update=False, csv=False,
-                                     xlsx=False, silent=False)
-        np.testing.assert_allclose(df_Leq['m=1.0'].values, 2*10 + 3*20)
-        self.assertTrue(df_Leq['channel'].values[0]=='channel1')
-
-        # ---------------------------------------------------------------------
-        # slightly more complicated
-        neq_life = 3.0
-        df_Leq = cc.fatigue_lifetime(dfs, neq_life, fh_lst=fh_list,
-                                     save=False, update=False, csv=False,
-                                     xlsx=False, silent=False)
-        np.testing.assert_allclose(df_Leq['m=1.0'].values,
-                                   (2*10 + 3*20)/neq_life)
-
-        # ---------------------------------------------------------------------
-        # a bit more complex and also test the sorting of fh_lst and dfs
-        cases = {'case1':{'[post_dir]':'no-path', '[sim_id]':'A0'},
-                 'case2':{'[post_dir]':'no-path', '[sim_id]':'A0'},
-                 'case3':{'[post_dir]':'no-path', '[sim_id]':'A0'},
-                 'case4':{'[post_dir]':'no-path', '[sim_id]':'A0'}}
-        cc = sim.Cases(cases)
-
-        fh_list = [('case3', 10/3600), ('case2', 20/3600),
-                   ('case1', 50/3600), ('case4', 40/3600)]
-        dfs = pd.DataFrame({'m=3.0' : [2, 3, 4, 5],
-                            'channel' : ['channel1']*4,
-                            '[case_id]' : ['case4', 'case2', 'case3', 'case1']})
-        neq_life = 5.0
-        df_Leq = cc.fatigue_lifetime(dfs, neq_life, fh_lst=fh_list,
-                                     save=False, update=False, csv=False,
-                                     xlsx=False, silent=False)
-        expected = ((2*2*2*40 + 3*3*3*20 + 4*4*4*10 + 5*5*5*50)/5)**(1/3)
-        np.testing.assert_allclose(df_Leq['m=3.0'].values, expected)
-
-        # ---------------------------------------------------------------------
-        # more cases and with sorting
-        base = {'[post_dir]':'no-path', '[sim_id]':'A0'}
-        cases = {'case%i' % k : base for k in range(50)}
-        cc = sim.Cases(cases)
-        # reverse the order of how they appear in dfs and fh_lst
-        fh_list = [('case%i' % k, k*10/3600) for k in range(49,-1,-1)]
-        dfs = pd.DataFrame({'m=5.2' : np.arange(1,51,1),
-                            'channel' : ['channel1']*50,
-                            '[case_id]' : ['case%i' % k for k in range(50)]})
-        df_Leq = cc.fatigue_lifetime(dfs, neq_life, fh_lst=fh_list,
-                                     save=False, update=False, csv=False,
-                                     xlsx=False, silent=False)
-        expected = np.sum(np.power(np.arange(1,51,1), 5.2)*np.arange(0,50,1)*10)
-        expected = np.power(expected/neq_life, 1/5.2)
-        np.testing.assert_allclose(df_Leq['m=5.2'].values, expected)
-
-
-if __name__ == "__main__":
-    unittest.main()
+'''
+Created on 05/11/2015
+
+@author: MMPE
+'''
+from __future__ import unicode_literals
+from __future__ import print_function
+from __future__ import division
+from __future__ import absolute_import
+from future import standard_library
+standard_library.install_aliases()
+
+import unittest
+import os
+import filecmp
+import shutil
+from zipfile import ZipFile
+
+import numpy as np
+import pandas as pd
+
+from wetb.prepost import dlctemplate as tmpl
+from wetb.prepost import Simulations as sim
+from wetb.prepost.misc import DictDiff
+
+
+class Template(unittest.TestCase):
+    def setUp(self):
+        self.basepath = os.path.dirname(__file__)
+
+
+class TestErrorLogs(Template):
+
+    def test_loganalysis(self):
+        # select a few log cases and do the analysis, save to csv and convert
+        # saved result to DataFrame
+        pass
+
+
+class TestGenerateInputs(Template):
+
+    def test_launch_dlcs_excel(self):
+        # manually configure paths, HAWC2 model root path is then constructed as
+        # p_root_remote/PROJECT/sim_id, and p_root_local/PROJECT/sim_id
+        # adopt accordingly when you have configured your directories differently
+        p_root = os.path.join(self.basepath, 'data/')
+        # project name, sim_id, master file name
+        tmpl.PROJECT = 'demo_dlc'
+        tmpl.MASTERFILE = 'demo_dlc_master_A0001.htc'
+        # MODEL SOURCES, exchanche file sources
+        tmpl.P_RUN = os.path.join(p_root, tmpl.PROJECT, 'remote/')
+        tmpl.P_SOURCE = os.path.join(p_root, tmpl.PROJECT, 'source/')
+        # location of the master file
+        tmpl.P_MASTERFILE = os.path.join(p_root, tmpl.PROJECT,
+                                         'source', 'htc', '_master/')
+        # location of the pre and post processing data
+        tmpl.POST_DIR = os.path.join(p_root, tmpl.PROJECT, 'remote',
+                                     'prepost/')
+
+        # make sure the remote dir is empty so a test does not pass on data
+        # generated during a previous cycle
+        if os.path.exists(os.path.join(p_root, tmpl.PROJECT, 'remote')):
+            shutil.rmtree(os.path.join(p_root, tmpl.PROJECT, 'remote'))
+
+        tmpl.force_dir = tmpl.P_RUN
+        tmpl.launch_dlcs_excel('remote', silent=True, runmethod='gorm',
+                               pbs_turb=True, zipchunks=True,
+                               postpro_node_zipchunks=False,
+                               postpro_node=False)
+
+        def cmp_dir(dir1, dir2):
+            lst1, lst2 = map(os.listdir, (dir1, dir2))
+            self.assertEqual(";".join(lst1), ";".join(lst2))
+            for f1, f2 in zip(lst1, lst2):
+                if f1.endswith(".zip") or f1.endswith(".xlsx"):
+                    continue
+                if os.path.isdir(os.path.join(dir1, f1)):
+                    cmp_dir(os.path.join(dir1, f1), os.path.join(dir2, f2))
+                else:
+                    try:
+                        with open(os.path.join(dir1, f1)) as fid1:
+                            l1 = fid1.readlines()
+                        with open(os.path.join(dir2, f2)) as fid2:
+                            l2 = fid2.readlines()
+
+                        self.assertEqual(len(l1), len(l2))
+                        self.assertTrue(all([l1_ == l2_ for l1_, l2_ in zip(l1, l2)]))
+                    except:
+                        print("=" * 30)
+                        print(os.path.join(dir1, f1))
+                        print(os.path.join(dir2, f2))
+                        print(dir1[[d1 != d2 for d1, d2 in zip(dir1, dir2)].index(True):])
+                        print(f1)
+                        for i in range(len(l1)):
+                            if l1[i] != l2[i]:
+                                print("%03d, rem: %s" % (i, l1[i].strip()))
+                                print("%03d, ref: %s" % (i, l2[i].strip()))
+                                print()
+                        raise
+
+
+        # we can not git check-in empty dirs so we can not compare the complete
+        # directory structure withouth manually creating the empty dirs here
+        for subdir in ['control', 'data', 'htc', 'pbs_in', 'pbs_in_turb',
+                       'htc/_master', 'htc/dlc01_demos', 'pbs_in/dlc01_demos',
+                       'zip-chunks-gorm', 'zip-chunks-jess']:
+            remote = os.path.join(p_root, tmpl.PROJECT, 'remote', subdir)
+            ref = os.path.join(p_root, tmpl.PROJECT, 'ref', subdir)
+            # the zipfiles are taken care of separately
+            ignore = ['remote_chnk_00000.zip']
+            cmp = filecmp.dircmp(remote, ref, ignore=ignore)
+            cmp_dir(remote, ref)
+            self.assertEqual(len(cmp.diff_files), 0,
+                             "{} {}".format(subdir, cmp.diff_files))
+            self.assertEqual(len(cmp.right_only), 0,
+                             "{} {}".format(subdir, cmp.right_only))
+            self.assertEqual(len(cmp.left_only), 0,
+                             "{} {}".format(subdir, cmp.left_only))
+
+        # compare the zip files
+        for fname in ['demo_dlc_remote.zip',
+                      'zip-chunks-gorm/remote_chnk_00000.zip',
+                      'zip-chunks-jess/remote_chnk_00000.zip']:
+            remote = os.path.join(p_root, tmpl.PROJECT, 'remote', fname)
+            ref = os.path.join(p_root, tmpl.PROJECT, 'ref', fname)
+
+            with ZipFile(remote) as zrem, ZipFile(ref) as zref:
+                self.assertEqual(len(zrem.infolist()), len(zref.infolist()))
+                frem = {f.filename:f.file_size for f in zrem.infolist()}
+                fref = {f.filename:f.file_size for f in zref.infolist()}
+                dd = DictDiff(frem, fref)
+                self.assertEqual(len(dd.added()), 0,
+                                 "{} {}".format(fname, dd.added()))
+                self.assertEqual(len(dd.removed()), 0,
+                                 "{} {}".format(fname, dd.removed()))
+                self.assertEqual(len(dd.changed()), 0,
+                                 "{} {}".format(fname, dd.changed()))
+
+        # for the pickled file we can just read it
+        remote = os.path.join(p_root, tmpl.PROJECT, 'remote', 'prepost')
+        ref = os.path.join(p_root, tmpl.PROJECT, 'ref', 'prepost')
+        cmp = filecmp.cmp(os.path.join(remote, 'remote_tags.txt'),
+                          os.path.join(ref, 'remote_tags.txt'), shallow=False)
+        self.assertTrue(cmp)
+#        with open(os.path.join(remote, 'remote.pkl'), 'rb') as FILE:
+#            pkl_remote = pickle.load(FILE)
+#        with open(os.path.join(ref, 'remote.pkl'), 'rb') as FILE:
+#            pkl_ref = pickle.load(FILE)
+#        self.assertTrue(pkl_remote == pkl_ref)
+
+
+class TestFatigueLifetime(Template):
+
+    def test_leq_life(self):
+        """Verify if prepost.Simulation.Cases.fatigue_lifetime() returns
+        the expected life time equivalent load.
+        """
+        # ---------------------------------------------------------------------
+        # very simple case
+        cases = {'case1':{'[post_dir]':'no-path', '[sim_id]':'A0'},
+                 'case2':{'[post_dir]':'no-path', '[sim_id]':'A0'}}
+        cc = sim.Cases(cases)
+
+        fh_list = [('case1', 10/3600), ('case2', 20/3600)]
+        dfs = pd.DataFrame({'m=1.0' : [2, 3],
+                            'channel' : ['channel1', 'channel1'],
+                            '[case_id]' : ['case1', 'case2']})
+        neq_life = 1.0
+        df_Leq = cc.fatigue_lifetime(dfs, neq_life, fh_lst=fh_list,
+                                     save=False, update=False, csv=False,
+                                     xlsx=False, silent=False)
+        np.testing.assert_allclose(df_Leq['m=1.0'].values, 2*10 + 3*20)
+        self.assertTrue(df_Leq['channel'].values[0]=='channel1')
+
+        # ---------------------------------------------------------------------
+        # slightly more complicated
+        neq_life = 3.0
+        df_Leq = cc.fatigue_lifetime(dfs, neq_life, fh_lst=fh_list,
+                                     save=False, update=False, csv=False,
+                                     xlsx=False, silent=False)
+        np.testing.assert_allclose(df_Leq['m=1.0'].values,
+                                   (2*10 + 3*20)/neq_life)
+
+        # ---------------------------------------------------------------------
+        # a bit more complex and also test the sorting of fh_lst and dfs
+        cases = {'case1':{'[post_dir]':'no-path', '[sim_id]':'A0'},
+                 'case2':{'[post_dir]':'no-path', '[sim_id]':'A0'},
+                 'case3':{'[post_dir]':'no-path', '[sim_id]':'A0'},
+                 'case4':{'[post_dir]':'no-path', '[sim_id]':'A0'}}
+        cc = sim.Cases(cases)
+
+        fh_list = [('case3', 10/3600), ('case2', 20/3600),
+                   ('case1', 50/3600), ('case4', 40/3600)]
+        dfs = pd.DataFrame({'m=3.0' : [2, 3, 4, 5],
+                            'channel' : ['channel1']*4,
+                            '[case_id]' : ['case4', 'case2', 'case3', 'case1']})
+        neq_life = 5.0
+        df_Leq = cc.fatigue_lifetime(dfs, neq_life, fh_lst=fh_list,
+                                     save=False, update=False, csv=False,
+                                     xlsx=False, silent=False)
+        expected = ((2*2*2*40 + 3*3*3*20 + 4*4*4*10 + 5*5*5*50)/5)**(1/3)
+        np.testing.assert_allclose(df_Leq['m=3.0'].values, expected)
+
+        # ---------------------------------------------------------------------
+        # more cases and with sorting
+        base = {'[post_dir]':'no-path', '[sim_id]':'A0'}
+        cases = {'case%i' % k : base for k in range(50)}
+        cc = sim.Cases(cases)
+        # reverse the order of how they appear in dfs and fh_lst
+        fh_list = [('case%i' % k, k*10/3600) for k in range(49,-1,-1)]
+        dfs = pd.DataFrame({'m=5.2' : np.arange(1,51,1),
+                            'channel' : ['channel1']*50,
+                            '[case_id]' : ['case%i' % k for k in range(50)]})
+        df_Leq = cc.fatigue_lifetime(dfs, neq_life, fh_lst=fh_list,
+                                     save=False, update=False, csv=False,
+                                     xlsx=False, silent=False)
+        expected = np.sum(np.power(np.arange(1,51,1), 5.2)*np.arange(0,50,1)*10)
+        expected = np.power(expected/neq_life, 1/5.2)
+        np.testing.assert_allclose(df_Leq['m=5.2'].values, expected)
+
+
+if __name__ == "__main__":
+    unittest.main()
diff --git a/wetb/prepost/tests/test_hawcstab2.py b/wetb/prepost/tests/test_hawcstab2.py
index 675803bf3bebe56f41f998bb0f15c48f3315c828..f1fb229cf213a3e0a2499b2bd5127bf02acd3fe8 100644
--- a/wetb/prepost/tests/test_hawcstab2.py
+++ b/wetb/prepost/tests/test_hawcstab2.py
@@ -11,7 +11,8 @@ from future import standard_library
 standard_library.install_aliases()
 
 import unittest
-import os
+from os.path import join as pjoin
+from os.path import dirname as pdirname
 
 import numpy as np
 
@@ -23,14 +24,13 @@ class Tests(unittest.TestCase):
     """
 
     def setUp(self):
-        self.fpath_linear = os.path.join(os.path.dirname(__file__),
-                                         'data/controller_input_linear.txt')
-        self.fpath_quad = os.path.join(os.path.dirname(__file__),
-                                       'data/controller_input_quadratic.txt')
+        self.fpath_linear = pjoin(pdirname(__file__),
+                                  'data/controller_input_linear.txt')
+        self.fpath_quad = pjoin(pdirname(__file__),
+                                'data/controller_input_quadratic.txt')
 
     def test_cmb_df(self):
-        fname1 = os.path.join(os.path.dirname(__file__),
-                              'data/campbell_diagram.cmb')
+        fname1 = pjoin(pdirname(__file__), 'data/campbell_diagram.cmb')
         speed, freq, damp, real_eig = results().load_cmb(fname1)
 
         self.assertIsNone(real_eig)
@@ -91,6 +91,50 @@ class Tests(unittest.TestCase):
         self.assertEqual(hs2.aero_damp.Ko1, -1.69769)
         self.assertEqual(hs2.aero_damp.Ko2, -15.02688)
 
+    def test_ind_file(self):
+        fnames = ['dtu10mw_nofull_defl_u10000.ind',
+                  'dtu10mw_nofull_fext_u10000.ind',
+                  'dtu10mw_nofull_u10000.ind',
+                  'dtu10mw_nogradient_defl_u10000.ind',
+                  'dtu10mw_nogradient_fext_u10000.ind',
+                  'dtu10mw_nogradient_u10000.ind',
+                  'dtu10mw_v1_defl_u10000.ind',
+                  'dtu10mw_v1_fext_u10000.ind',
+                  'dtu10mw_v1_u10000.ind',
+                  ]
+
+        for fname in fnames:
+            fname = pjoin(pdirname(__file__), 'data', fname)
+            res = results()
+            df_data = res.load_ind(fname)
+            data = np.loadtxt(fname)
+            np.testing.assert_almost_equal(data, df_data.values)
+
+    def test_pwr_file(self):
+        fnames = ['dtu10mw_nofull.pwr',
+                  'dtu10mw_nogradient.pwr',
+                  'dtu10mw_nogradient_v2.pwr',
+                  'dtu10mw_v1.pwr',]
+        for fname in fnames:
+            fname = pjoin(pdirname(__file__), 'data', fname)
+            res = results()
+            df_data, units = res.load_pwr_df(fname)
+            data = np.loadtxt(fname)
+            self.assertEqual(data.shape, df_data.shape)
+            print(fname)
+            print(data.dtype)
+            print(df_data.values.dtype)
+            for i in range(data.shape[0]):
+                a = data[i,:]
+                b = df_data.values[i,:]
+                if not np.allclose(a,b):
+                    print(i)
+                    print(a-b)
+                    print(a)
+                    print(b)
+                np.testing.assert_almost_equal(a, b)
+            np.testing.assert_almost_equal(data, df_data.values, decimal=6)
+
 
 if __name__ == "__main__":
     unittest.main()
diff --git a/wetb/prepost/windIO.py b/wetb/prepost/windIO.py
index eb89b67f74e12822c9deb1c481c9c2a103943095..c596e67936a9f5352f0077bec8a1455b1e8f902b 100755
--- a/wetb/prepost/windIO.py
+++ b/wetb/prepost/windIO.py
@@ -41,7 +41,7 @@ from wetb.prepost import misc
 # wind energy python toolbox, available on the dtu wind redmine server:
 # http://vind-redmine.win.dtu.dk/projects/pythontoolbox/repository/show/fatigue_tools
 from wetb.hawc2.Hawc2io import ReadHawc2
-from wetb.fatigue_tools.fatigue import eq_load
+from wetb.fatigue_tools.fatigue import (eq_load, cycle_matrix2)
 
 
 class LogFile(object):
@@ -348,6 +348,10 @@ class LogFile(object):
             tempLog.append('')
             tempLog.append('')
 
+        # FIXME: we the sim crashes at generating the turbulence box
+        # there is one element too much at the end
+        tempLog = tempLog[:len(self._header().split(';'))]
+
         # save the iterations in the results folder
         if save_iter:
             fiter = os.path.basename(fname).replace('.log', '.iter')
@@ -385,7 +389,7 @@ class LogFile(object):
         """Read a csv log file analysis and convert to a pandas.DataFrame
         """
         colnames, min_itemsize, dtypes = self.headers4df()
-        df = pd.read_csv(fname, header=header, names=colnames, sep=';', )
+        df = pd.read_csv(fname, header=header, names=colnames, sep=';')
         for col, dtype in dtypes.items():
             df[col] = df[col].astype(dtype)
             # replace nan with empty for str columns
@@ -792,8 +796,8 @@ class LoadResults(ReadHawc2):
         # some channel ID's are unique, use them
         ch_unique = set(['Omega', 'Ae rot. torque', 'Ae rot. power',
                          'Ae rot. thrust', 'Time', 'Azi  1'])
-        ch_aero = set(['Cl', 'Cd', 'Alfa', 'Vrel', 'Tors_e', 'Alfa', 'Lift',
-                       'Drag'])
+        ch_aero = set(['Cl', 'Cd', 'Cm', 'Alfa', 'Vrel', 'Tors_e', 'Alfa',
+                       'Lift', 'Drag'])
         ch_aerogrid = set(['a_grid', 'am_grid', 'CT', 'CQ'])
 
         # also safe as df
@@ -1023,7 +1027,6 @@ class LoadResults(ReadHawc2):
                 dscr_list = self.ch_details[ch, 2].split(' ')
                 dscr_list = misc.remove_items(dscr_list, '')
                 sensortype = self.ch_details[ch, 0].split(',')[0]
-
                 # Blade number is identified as the first integer in the string
                 blade_nr = re.search(r'\d+', self.ch_details[ch, 2]).group()
                 blade_nr = int(blade_nr)
@@ -1527,6 +1530,37 @@ class LoadResults(ReadHawc2):
 
         return eq_load(signal, no_bins=no_bins, m=m, neq=neq)[0]
 
+    def cycle_matrix(self, signal, no_bins=46):
+        """Cycle/Markov matrix.
+
+        Convenience function for wetb.fatigue_tools.fatigue.cycle_matrix2
+
+        Parameters
+        ----------
+
+        signal: 1D array
+            One dimentional array containing the signal.
+
+        no_bins: int
+            Number of bins for the binning of the amplitudes.
+
+        Returns
+        -------
+
+        cycles : ndarray, shape(ampl_bins, mean_bins)
+            A bi-dimensional histogram of load cycles(full cycles). Amplitudes
+            are histogrammed along the first dimension and mean values are
+            histogrammed along the second dimension.
+
+        ampl_edges : ndarray, shape(no_bins+1,n)
+            The amplitude bin edges
+
+        mean_edges : ndarray, shape(no_bins+1,n)
+            The mean bin edges
+
+        """
+        return cycle_matrix2(signal, no_bins)
+
     def blade_deflection(self):
         """
         """
diff --git a/wetb/utils/envelope.py b/wetb/utils/envelope.py
index 85ec7f18374af9d4a7c81aa9e48b14c912749561..4a3c1b3860fa775fa03c48858794221e46a897c5 100644
--- a/wetb/utils/envelope.py
+++ b/wetb/utils/envelope.py
@@ -281,8 +281,8 @@ def compute_envelope(cloud, int_env=False, Nx=300):
     vertices, ivertices = closed_contour(cloud)
 
     # interpolate to a fixed location of equally spaced vertices
-    vert_int = np.ndarray(vertices.shape)
     if int_env:
+        vert_int = np.ndarray((Nx+1, cloud.shape[1]))
         _,_,_,vert_int[:,0:2] = int_envelope(vertices[:,0], vertices[:,1], Nx)
         for i in range(2, cloud.shape[1]):
             _,_,_,extra = int_envelope(vertices[:,0], vertices[:,i], Nx)
diff --git a/wetb/utils/test_files.py b/wetb/utils/test_files.py
index 6e230c3fe903baf6e51a12f3e53971a42ea4d6f1..e4e3e88d3f428605e8b49c6094006eee6f0e83cc 100644
--- a/wetb/utils/test_files.py
+++ b/wetb/utils/test_files.py
@@ -6,7 +6,11 @@ Created on 20. jul. 2017
 import os
 import wetb
 import inspect
-wetb_rep_path = os.path.join(os.path.dirname(wetb.__file__), "../")                                   
+from urllib.request import urlretrieve
+
+wetb_rep_path = os.path.abspath(os.path.dirname(wetb.__file__) + "/../") + "/"
+local_TestFiles_path = wetb_rep_path + "TestFiles/"                                   
+remote_TestFiles_url = "https://gitlab.windenergy.dtu.dk/toolbox/TestFiles/raw/master/"
 
 
 def _absolute_filename(filename):
@@ -19,10 +23,13 @@ def _absolute_filename(filename):
 
 def get_test_file(filename):
     filename = _absolute_filename(filename) 
-    if os.path.exists(filename):
-        return filename
-    else:
-        return os.path.join(wetb_rep_path, 'TestFiles', os.path.relpath(filename, wetb_rep_path))
+    if not os.path.exists(filename):
+        rel_path = os.path.relpath(filename, wetb_rep_path).replace("\\","/")
+        filename = local_TestFiles_path + rel_path
+        if not os.path.exists(filename):
+            urlretrieve(remote_TestFiles_url + rel_path, filename)
+    return filename
+        
         
 
 
diff --git a/wetb/utils/tests/test_test_files.py b/wetb/utils/tests/test_test_files.py
index 6cbe8f67d33fbf84ef8e154cb61d65c9824f2182..1b38c2d3fdf607137f83ff8f386648350bd0f8c0 100644
--- a/wetb/utils/tests/test_test_files.py
+++ b/wetb/utils/tests/test_test_files.py
@@ -4,7 +4,8 @@ Created on 20. jul. 2017
 @author: mmpe
 '''
 import unittest
-from wetb.utils.test_files import move2test_files, get_test_file
+from wetb.utils.test_files import move2test_files, get_test_file,\
+    local_TestFiles_path
 import os
 from wetb.utils import test_files
 import wetb
@@ -24,6 +25,9 @@ class Test_test_files(unittest.TestCase):
         self.assertTrue(os.path.isfile(dst))
 
     def test_test_files(self):
+        fn = local_TestFiles_path + "wetb/utils/tests/test_files/test_file.txt"
+        if os.path.isfile(fn):
+            os.remove(fn)
         fn1 = get_test_file(tfp+'test_file.txt')
         self.assertTrue(os.path.isfile(fn1))
         fn2 = get_test_file('test_file.txt')