DLR-SC / tigl

The TiGL Geometry Library to process aircraft geometries in pre-design.
https://dlr-sc.github.io/tigl/
Apache License 2.0
236 stars 60 forks source link

Generation of spar segment geometry very slow #765

Open hardt-fa-flb opened 3 years ago

hardt-fa-flb commented 3 years ago

The generation of the geometries of the spars are very slow (about 15 minutes). The example consists of two spars with two segments each.

IEA-15-240-RWT_CPACS.zip

rainman110 commented 3 years ago

I can't reproduce it. It is slow on my laptop, but about ~ 1 minute.

It could help to reduce the number of sample points per profile. You have now about 200 points per profile. Try to reduce it to about 50.

hardt-fa-flb commented 3 weeks ago

Unfortunately, I have to reactivate this issue, as it is a critical point in a current project.

We have reduced the number of airfoil points to 20 per upper and 20 lower side . Nevertheless, the computing time for calculating the spar loft is still enormous, especially when compared with the computing time for the wing loft.

We used the following test script to compare the calculation times:

from __future__ import print_function

from time import perf_counter

from tixi3 import tixi3wrapper
from tigl3 import tigl3wrapper
import tigl3.configuration
import os

def get_lofts(configuration):

    from OCC.Display.SimpleGui import init_display
    display, start_display, add_menu, add_function_to_menu = init_display()
    display.Context.SetDeviationCoefficient(0.0001)

    uid_mgr = configuration.get_uidmanager()
    wing = uid_mgr.get_geometric_component("blade")

    # Get wing loft
    t = perf_counter()
    wing_loft = wing.get_loft().shape()
    print(f'wing.get_loft(): {perf_counter() - t:.2f} s')
    display.DisplayShape(wing_loft, color="blue", transparency=0.5)

    # Get spar lofts
    for spar_uid in ['web0', 'web1']:
        t = perf_counter()
        spar = uid_mgr.get_geometric_component(spar_uid)
        spar_loft = spar.get_loft().shape()
        print(f'{spar_uid}: spar.get_loft(): {perf_counter() - t:.2f} s')
        display.DisplayShape(spar_loft, color="red")

    display.FitAll()
    start_display()

if __name__ == '__main__':
    tixi_h = tixi3wrapper.Tixi3()
    tigl_h = tigl3wrapper.Tigl3()

    dir_path = os.path.dirname(os.path.realpath(__file__))
    tixi_h.open(dir_path + "/IEA-15-240-RWT_20_CS.xml")
    tigl_h.open(tixi_h, "")

    # get the configuration manager
    mgr = tigl3.configuration.CCPACSConfigurationManager_get_instance()

    # get the CPACS configuration, defined by the tigl handle
    # we need to access the underlying tigl handle (that is used in the C/C++ API)
    config = mgr.get_configuration(tigl_h._handle.value)
    get_lofts(config)

The CPACS models correspond to the IEA-15-240-RWT wind turbine, discretized to different degrees across the span: IEA-15-240-RWT.zip

The output of the skip for the different CPACS files is as follows:

10 spanwise stations:

WRN 09/23 20:43:54 tigl.cpp:198] CPACS dataset version is higher than TIGL library version!
WRN 09/23 20:43:56 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.648035 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:43:56 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.381963 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:43:56 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.388684 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:43:56 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.0948738 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:43:56 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.0485534 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:43:56 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.0879259 % w.r.t. the chord length. Please correct the wing profile!
wing.get_loft(): 0.11 s
web0: spar.get_loft(): 4.21 s
web1: spar.get_loft(): 4.19 s

20 spanwise stations:

WRN 09/23 20:44:58 tigl.cpp:198] CPACS dataset version is higher than TIGL library version!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.648035 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.381963 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.388684 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_5.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.382257 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_5.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.216058 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_5.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.297221 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.0948738 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.0485534 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:44:59 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.0879259 % w.r.t. the chord length. Please correct the wing profile!
wing.get_loft(): 0.20 s
web0: spar.get_loft(): 19.85 s
web1: spar.get_loft(): 20.16 s

25 spanwise stations:

WRN 09/23 20:45:59 tigl.cpp:198] CPACS dataset version is higher than TIGL library version!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.648035 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.381963 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.388684 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_4.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.46113 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_4.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.26428 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_4.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.330792 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_8.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.191591 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_8.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.102962 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_8.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.176928 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_12.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.0258856 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_12.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.0128902 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:46:01 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_12.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.022233 % w.r.t. the chord length. Please correct the wing profile!
wing.get_loft(): 0.41 s
web0: spar.get_loft(): 37.38 s
web1: spar.get_loft(): 37.25 s

30 spanwise stations:

WRN 09/23 20:47:36 tigl.cpp:198] CPACS dataset version is higher than TIGL library version!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.648035 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.381963 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_0.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.388684 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_3.33 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.518858 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_3.33 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.300108 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_3.33 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.351412 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_6.67 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.268705 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_6.67 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.148066 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_6.67 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.233876 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.0948738 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:450] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The lower part is trimmed about 0.0485534 % w.r.t. the chord length. Please correct the wing profile!
WRN 09/23 20:47:37 CTiglWingProfilePointList.cpp:466] The wing profile airfoil_10.00 will be trimmed to avoid a skewed trailing edge. The upper part is trimmed about 0.0879259 % w.r.t. the chord length. Please correct the wing profile!
wing.get_loft(): 0.50 s
WRN 09/23 20:47:38 tiglcommonfunctions.cpp:717] No Intersections found in GetIntersectionPoint
Traceback (most recent call last):
  File "H:\Daniel\git\lightworks_windio_openfast\tests\tigl_765.py", line 52, in <module>
    get_lofts(config)
  File "H:\Daniel\git\lightworks_windio_openfast\tests\tigl_765.py", line 30, in get_lofts
    spar_loft = spar.get_loft().shape()
                ^^^^^^^^^^^^^^^
  File "C:\Users\Daniel\anaconda3\envs\predocs_3_11\Lib\site-packages\tigl3\geometry.py", line 8893, in get_loft
    return _geometry.CTiglAbstractGeometricComponent_get_loft(self)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Unable to build midline for component segment: intersection with section chord line failed!

Especially with a finer spanwise discretization, the calculation times for the spar loft increase a lot. With a discretization of 30 cross-sections, the calculation of the spar loft even crashes completely.

Is there a way to speed up the calculation of the spar loft?

Here is the Anaconda environment that was used for the calculation:

conda list
# packages in environment at XXX:
#
# Name                    Version                   Build  Channel
alabaster                 0.7.16             pyhd8ed1ab_0    conda-forge
anyio                     4.4.0                    pypi_0    pypi
anytree                   2.12.1                   pypi_0    pypi
argon2-cffi               23.1.0                   pypi_0    pypi
argon2-cffi-bindings      21.2.0                   pypi_0    pypi
arrow                     1.3.0                    pypi_0    pypi
asciitree                 0.3.3                    pypi_0    pypi
asttokens                 2.4.1              pyhd8ed1ab_0    conda-forge
async-lru                 2.0.4                    pypi_0    pypi
asyncssh                  2.14.1             pyhd8ed1ab_0    conda-forge
attrs                     23.2.0             pyh71513ae_0    conda-forge
autograd                  1.6.2              pyhd8ed1ab_0    conda-forge
aws-c-auth                0.7.22               h67aab5a_5    conda-forge
aws-c-cal                 0.6.15               h750c3ff_0    conda-forge
aws-c-common              0.9.19               h2466b09_0    conda-forge
aws-c-compression         0.2.18               h750c3ff_6    conda-forge
aws-c-event-stream        0.4.2               hd0fc785_13    conda-forge
aws-c-http                0.8.2                he5605a3_2    conda-forge
aws-c-io                  0.14.9               h22d870b_2    conda-forge
aws-c-mqtt                0.10.4               h9c13125_6    conda-forge
aws-c-s3                  0.5.10               h5bc95ef_3    conda-forge
aws-c-sdkutils            0.1.16               h750c3ff_2    conda-forge
aws-checksums             0.1.18               h750c3ff_6    conda-forge
aws-crt-cpp               0.26.10              h819e545_4    conda-forge
aws-sdk-cpp               1.11.329             hd2a0318_4    conda-forge
babel                     2.14.0             pyhd8ed1ab_0    conda-forge
beautifulsoup4            4.12.3             pyha770c72_0    conda-forge
bleach                    6.1.0              pyhd8ed1ab_0    conda-forge
blosc                     1.21.6               h85f69ea_0    conda-forge
blosc2                    2.6.2                    pypi_0    pypi
bokeh                     3.4.1              pyhd8ed1ab_0    conda-forge
brotli                    1.1.0                hcfcfb64_1    conda-forge
brotli-bin                1.1.0                hcfcfb64_1    conda-forge
brotli-python             1.1.0           py311h12c1d0e_1    conda-forge
bzip2                     1.0.8                hcfcfb64_5    conda-forge
c-ares                    1.28.1               hcfcfb64_0    conda-forge
ca-certificates           2024.7.4             h56e8100_0    conda-forge
cached-property           1.5.2                hd8ed1ab_1    conda-forge
cached_property           1.5.2              pyha770c72_1    conda-forge
cairo                     1.18.0               h91e5215_2    conda-forge
certifi                   2024.7.4           pyhd8ed1ab_0    conda-forge
cffi                      1.16.0          py311ha68e1ae_0    conda-forge
charset-normalizer        3.3.2              pyhd8ed1ab_0    conda-forge
click                     8.1.7           win_pyh7428d3b_0    conda-forge
cloudpickle               3.0.0              pyhd8ed1ab_0    conda-forge
colorama                  0.4.6              pyhd8ed1ab_0    conda-forge
comm                      0.2.2              pyhd8ed1ab_0    conda-forge
configobj                 5.0.8              pyhd8ed1ab_0    conda-forge
contourpy                 1.2.1           py311h005e61a_0    conda-forge
coverage                  7.5.3           py311he736701_0    conda-forge
cpacs-interface           0.1.dev65+gd95a97e.d20240612          pypi_0    pypi
cryptography              42.0.8          py311hfd75b31_0    conda-forge
cycler                    0.12.1             pyhd8ed1ab_0    conda-forge
cyipopt                   1.4.1           py311heed3e57_3    conda-forge
cytoolz                   0.12.3          py311ha68e1ae_0    conda-forge
dask                      2024.5.2           pyhd8ed1ab_0    conda-forge
dask-core                 2024.5.2           pyhd8ed1ab_0    conda-forge
dask-expr                 1.1.2              pyhd8ed1ab_0    conda-forge
debugpy                   1.8.1           py311h12c1d0e_0    conda-forge
decorator                 5.1.1              pyhd8ed1ab_0    conda-forge
deepdiff                  7.0.1                    pypi_0    pypi
defusedxml                0.7.1              pyhd8ed1ab_0    conda-forge
deprecated                1.2.14                   pypi_0    pypi
dfo-ls                    1.4.1                    pypi_0    pypi
distributed               2024.5.2           pyhd8ed1ab_0    conda-forge
docutils                  0.20.1          py311h1ea47a8_3    conda-forge
double-conversion         3.3.0                h63175ca_0    conda-forge
entrypoints               0.4                pyhd8ed1ab_0    conda-forge
et-xmlfile                1.1.0                    pypi_0    pypi
exceptiongroup            1.2.0              pyhd8ed1ab_2    conda-forge
execnet                   2.1.1              pyhd8ed1ab_0    conda-forge
executing                 2.0.1              pyhd8ed1ab_0    conda-forge
expat                     2.6.2                h63175ca_0    conda-forge
fasteners                 0.19                     pypi_0    pypi
font-ttf-dejavu-sans-mono 2.37                 hab24e00_0    conda-forge
font-ttf-inconsolata      3.000                h77eed37_0    conda-forge
font-ttf-source-code-pro  2.038                h77eed37_0    conda-forge
font-ttf-ubuntu           0.83                 h77eed37_2    conda-forge
fontconfig                2.14.2               hbde0cde_0    conda-forge
fonts-conda-ecosystem     1                             0    conda-forge
fonts-conda-forge         1                             0    conda-forge
fonttools                 4.53.0          py311he736701_0    conda-forge
fqdn                      1.5.1                    pypi_0    pypi
freeimageplus             3.18.0               h6538335_2    dlr-sc
freetype                  2.12.1               hdaf720e_2    conda-forge
fsspec                    2024.6.0           pyhff2d567_0    conda-forge
future                    1.0.0              pyhd8ed1ab_0    conda-forge
gl2ps                     1.4.2                had7236b_1    conda-forge
glew                      2.1.0                h39d44d4_2    conda-forge
glib                      2.80.2               h0df6a38_0    conda-forge
glib-tools                2.80.2               h2f9d560_0    conda-forge
graphite2                 1.3.13            h63175ca_1003    conda-forge
gst-plugins-base          1.24.4               hba88be7_0    conda-forge
gstreamer                 1.24.4               h5006eae_0    conda-forge
h11                       0.14.0                   pypi_0    pypi
h5py                      3.11.0          nompi_py311h67016bb_102    conda-forge
harfbuzz                  8.5.0                h81778c3_0    conda-forge
hdf4                      4.2.15               h5557f11_7    conda-forge
hdf5                      1.14.3          nompi_h2b43c12_105    conda-forge
httpcore                  1.0.5                    pypi_0    pypi
httpx                     0.27.0                   pypi_0    pypi
icu                       73.2                 h63175ca_0    conda-forge
idna                      3.7                pyhd8ed1ab_0    conda-forge
imagesize                 1.4.1              pyhd8ed1ab_0    conda-forge
importlib-metadata        7.1.0              pyha770c72_0    conda-forge
importlib_metadata        7.1.0                hd8ed1ab_0    conda-forge
importlib_resources       6.4.0              pyhd8ed1ab_0    conda-forge
iniconfig                 2.0.0              pyhd8ed1ab_0    conda-forge
intel-openmp              2024.1.0           h57928b3_966    conda-forge
ipopt                     3.14.16              ha31d76d_3    conda-forge
ipydatawidgets            4.3.2              pyhc268e32_0    conda-forge
ipykernel                 6.29.4             pyh4bbf305_0    conda-forge
ipympl                    0.9.4              pyhd8ed1ab_0    conda-forge
ipython                   8.25.0             pyh7428d3b_0    conda-forge
ipython_genutils          0.2.0              pyhd8ed1ab_1    conda-forge
ipywidgets                8.1.3              pyhd8ed1ab_0    conda-forge
isoduration               20.11.0                  pypi_0    pypi
jax                       0.4.29                   pypi_0    pypi
jaxlib                    0.4.29                   pypi_0    pypi
jedi                      0.19.1             pyhd8ed1ab_0    conda-forge
jinja2                    3.1.4              pyhd8ed1ab_0    conda-forge
json5                     0.9.25                   pypi_0    pypi
jsoncpp                   1.9.5                h2d74725_1    conda-forge
jsonpointer               3.0.0                    pypi_0    pypi
jsonschema                4.22.0             pyhd8ed1ab_0    conda-forge
jsonschema-specifications 2023.12.1          pyhd8ed1ab_0    conda-forge
jupyter                   1.0.0                    pypi_0    pypi
jupyter-console           6.6.3                    pypi_0    pypi
jupyter-events            0.10.0                   pypi_0    pypi
jupyter-lsp               2.2.5                    pypi_0    pypi
jupyter-server            2.14.1                   pypi_0    pypi
jupyter-server-terminals  0.5.3                    pypi_0    pypi
jupyter_client            8.6.2              pyhd8ed1ab_0    conda-forge
jupyter_core              5.7.2           py311h1ea47a8_0    conda-forge
jupyterlab                4.2.2                    pypi_0    pypi
jupyterlab-server         2.27.2                   pypi_0    pypi
jupyterlab_pygments       0.3.0              pyhd8ed1ab_1    conda-forge
jupyterlab_widgets        3.0.11             pyhd8ed1ab_0    conda-forge
kiwisolver                1.4.5           py311h005e61a_1    conda-forge
krb5                      1.21.2               heb0366b_0    conda-forge
lcms2                     2.16                 h67d730c_0    conda-forge
lerc                      4.0.0                h63175ca_0    conda-forge
libabseil                 20240116.2      cxx17_h63175ca_0    conda-forge
libaec                    1.1.3                h63175ca_0    conda-forge
libarrow                  16.1.0           hd8d3123_7_cpu    conda-forge
libarrow-acero            16.1.0           he0c23c2_7_cpu    conda-forge
libarrow-dataset          16.1.0           he0c23c2_7_cpu    conda-forge
libarrow-substrait        16.1.0           h1f0e801_7_cpu    conda-forge
libblas                   3.9.0                     8_mkl    conda-forge
libbrotlicommon           1.1.0                hcfcfb64_1    conda-forge
libbrotlidec              1.1.0                hcfcfb64_1    conda-forge
libbrotlienc              1.1.0                hcfcfb64_1    conda-forge
libcblas                  3.9.0                     8_mkl    conda-forge
libclang13                18.1.7          default_h97ce8ae_0    conda-forge
libcrc32c                 1.1.2                h0e60522_0    conda-forge
libcurl                   8.8.0                hd5e4a3a_0    conda-forge
libdeflate                1.20                 hcfcfb64_0    conda-forge
libevent                  2.1.12               h3671451_1    conda-forge
libexpat                  2.6.2                h63175ca_0    conda-forge
libffi                    3.4.2                h8ffe710_5    conda-forge
libflang                  5.0.0           h6538335_20180525    conda-forge
libglib                   2.80.2               h0df6a38_0    conda-forge
libgoogle-cloud           2.24.0               h5e7cea3_0    conda-forge
libgoogle-cloud-storage   2.24.0               hce61461_0    conda-forge
libgrpc                   1.62.2               h5273850_0    conda-forge
libharu                   2.4.4                hdaf720e_0    conda-forge
libiconv                  1.17                 hcfcfb64_2    conda-forge
libintl                   0.22.5               h5728263_2    conda-forge
libintl-devel             0.22.5               h5728263_2    conda-forge
libjpeg-turbo             3.0.0                hcfcfb64_1    conda-forge
liblapack                 3.9.0                     8_mkl    conda-forge
libnetcdf                 4.9.2           nompi_h92078aa_114    conda-forge
libogg                    1.3.4                h8ffe710_1    conda-forge
libparquet                16.1.0           h178134c_7_cpu    conda-forge
libpng                    1.6.43               h19919ed_0    conda-forge
libprotobuf               4.25.3               h503648d_0    conda-forge
libre2-11                 2023.09.01           hf8d8778_2    conda-forge
libsodium                 1.0.18               h8d14728_1    conda-forge
libsqlite                 3.46.0               h2466b09_0    conda-forge
libssh2                   1.11.0               h7dfc565_0    conda-forge
libtheora                 1.1.1             h8d14728_1005    conda-forge
libthrift                 0.19.0               ha2b3283_1    conda-forge
libtiff                   4.6.0                hddb2be6_3    conda-forge
libutf8proc               2.8.0                h82a8f57_0    conda-forge
libvorbis                 1.3.7                h0e60522_0    conda-forge
libwebp-base              1.4.0                hcfcfb64_0    conda-forge
libxcb                    1.15                 hcd874cb_0    conda-forge
libxml2                   2.12.7               h283a6d9_1    conda-forge
libxslt                   1.1.39               h3df6e99_0    conda-forge
libzip                    1.10.1               h1d365fa_3    conda-forge
libzlib                   1.3.1                h2466b09_1    conda-forge
lightworks                0.6.0+ge5391f743           dev_0    <develop>
lightworks-windio-openfast 0.0.0                     dev_0    <develop>
llvm-meta                 5.0.0                         0    conda-forge
llvmlite                  0.42.0                   pypi_0    pypi
loadskernel               2024.5                   pypi_0    pypi
locket                    1.0.0              pyhd8ed1ab_0    conda-forge
lp2ply                    0.1.1                    pypi_0    pypi
lw-model-generator        0.1+baf2bc7               dev_0    <develop>
lxml                      5.2.2           py311h12967d8_0    conda-forge
lz4                       4.3.3           py311haddf500_0    conda-forge
lz4-c                     1.9.4                hcfcfb64_0    conda-forge
m2w64-gcc-libgfortran     5.3.0                         6    conda-forge
m2w64-gcc-libs            5.3.0                         7    conda-forge
m2w64-gcc-libs-core       5.3.0                         7    conda-forge
m2w64-gmp                 6.1.0                         2    conda-forge
m2w64-libwinpthread-git   5.0.0.4634.697f757               2    conda-forge
markdown-it-py            3.0.0                    pypi_0    pypi
markupsafe                2.1.5           py311ha68e1ae_0    conda-forge
mathjax                   0.1.2                    pypi_0    pypi
matplotlib                3.8.4           py311h1ea47a8_2    conda-forge
matplotlib-base           3.8.4           py311h9b31f6e_2    conda-forge
matplotlib-inline         0.1.7              pyhd8ed1ab_0    conda-forge
mdit-py-plugins           0.4.1                    pypi_0    pypi
mdurl                     0.1.2                    pypi_0    pypi
metis                     5.1.0             h63175ca_1007    conda-forge
mistune                   3.0.2              pyhd8ed1ab_0    conda-forge
mkl                       2020.4             hb70f87d_311    conda-forge
ml-dtypes                 0.4.0                    pypi_0    pypi
mpmath                    1.3.0                    pypi_0    pypi
msgpack-python            1.0.8           py311h3257749_0    conda-forge
msys2-conda-epoch         20160418                      1    conda-forge
mumps-seq                 5.7.1                h7c2359a_1    conda-forge
munkres                   1.1.4              pyh9f0ad1d_0    conda-forge
mypy-extensions           1.0.0                    pypi_0    pypi
myst-parser               3.0.1                    pypi_0    pypi
nbclient                  0.10.0             pyhd8ed1ab_0    conda-forge
nbconvert                 7.16.4               hd8ed1ab_1    conda-forge
nbconvert-core            7.16.4             pyhd8ed1ab_1    conda-forge
nbconvert-pandoc          7.16.4               hd8ed1ab_1    conda-forge
nbformat                  5.10.4             pyhd8ed1ab_0    conda-forge
nbsphinx                  0.9.4              pyhd8ed1ab_0    conda-forge
nbval                     0.11.0                   pypi_0    pypi
ndindex                   1.8                      pypi_0    pypi
nest-asyncio              1.6.0              pyhd8ed1ab_0    conda-forge
networkx                  3.3                      pypi_0    pypi
nlopt                     2.7.1                    pypi_0    pypi
notebook                  7.2.1                    pypi_0    pypi
notebook-shim             0.2.4                    pypi_0    pypi
numba                     0.59.1                   pypi_0    pypi
numcodecs                 0.13.0                   pypi_0    pypi
numexpr                   2.10.0                   pypi_0    pypi
numpy                     1.26.4          py311h0b4df5a_0    conda-forge
opencascade               7.4.0               h7e01d4e_10    dlr-sc
openjpeg                  2.5.2                h3d672ee_0    conda-forge
openmp                    5.0.0                    vc14_1    conda-forge
openpyxl                  3.1.3                    pypi_0    pypi
openssl                   3.3.1                h2466b09_2    conda-forge
opt-einsum                3.3.0                    pypi_0    pypi
orc                       2.0.1                h7e885a9_1    conda-forge
ordered-set               4.1.0                    pypi_0    pypi
overrides                 7.7.0                    pypi_0    pypi
packaging                 24.0               pyhd8ed1ab_0    conda-forge
pandas                    2.2.2           py311hcf9f919_1    conda-forge
pandoc                    2.3                      pypi_0    pypi
pandocfilters             1.5.0              pyhd8ed1ab_0    conda-forge
panelaero                 2024.2                   pypi_0    pypi
paraview                  5.12.1          py311hc1699f1_104_qt    conda-forge
parso                     0.8.4              pyhd8ed1ab_0    conda-forge
partd                     1.4.2              pyhd8ed1ab_0    conda-forge
pcre2                     10.43                h17e33f8_0    conda-forge
pickleshare               0.7.5                   py_1003    conda-forge
pillow                    10.3.0          py311h6819b35_0    conda-forge
pip                       24.0               pyhd8ed1ab_0    conda-forge
pip-review                1.3.0                    pypi_0    pypi
pixman                    0.43.4               h63175ca_0    conda-forge
pkgutil-resolve-name      1.3.10             pyhd8ed1ab_1    conda-forge
platformdirs              4.2.2              pyhd8ed1ab_0    conda-forge
pluggy                    1.5.0              pyhd8ed1ab_0    conda-forge
plumbum                   1.8.3                    pypi_0    pypi
ply                       3.11               pyhd8ed1ab_2    conda-forge
predocs                   1.1.1.dev53+ga4cd22e8.d20240612          pypi_0    pypi
proj                      9.4.1                hd9569ee_0    conda-forge
prometheus-client         0.20.0                   pypi_0    pypi
prompt-toolkit            3.0.47             pyha770c72_0    conda-forge
psutil                    5.9.8           py311ha68e1ae_0    conda-forge
pthread-stubs             0.4               hcd874cb_1001    conda-forge
pugixml                   1.14                 h63175ca_0    conda-forge
pure_eval                 0.2.2              pyhd8ed1ab_0    conda-forge
py-cpuinfo                9.0.0                    pypi_0    pypi
pyarrow                   16.1.0          py311h3810d55_1    conda-forge
pyarrow-core              16.1.0          py311h65ac0bd_1_cpu    conda-forge
pyarrow-hotfix            0.6                pyhd8ed1ab_0    conda-forge
pycparser                 2.22               pyhd8ed1ab_0    conda-forge
pydoe                     0.3.8                    pypi_0    pypi
pygithub                  2.3.0                    pypi_0    pypi
pygments                  2.18.0             pyhd8ed1ab_0    conda-forge
pyjwt                     2.8.0                    pypi_0    pypi
pynacl                    1.5.0                    pypi_0    pypi
pyopenssl                 24.0.0             pyhd8ed1ab_0    conda-forge
pyparsing                 3.1.2              pyhd8ed1ab_0    conda-forge
pyqt                      5.15.9          py311h125bc19_5    conda-forge
pyqt5-sip                 12.12.2         py311h12c1d0e_5    conda-forge
pyside6                   6.7.1                    pypi_0    pypi
pyside6-addons            6.7.1                    pypi_0    pypi
pyside6-essentials        6.7.1                    pypi_0    pypi
pysocks                   1.7.1              pyh0701188_6    conda-forge
pytest                    8.2.2              pyhd8ed1ab_0    conda-forge
pytest-cov                5.0.0              pyhd8ed1ab_0    conda-forge
pytest-datadir            1.5.0                    pypi_0    pypi
pytest-durations          1.2.0                    pypi_0    pypi
pytest-env                1.1.3                    pypi_0    pypi
pytest-mock               3.14.0             pyhd8ed1ab_0    conda-forge
pytest-runner             6.0.1                    pypi_0    pypi
pytest-xdist              3.6.1              pyhd8ed1ab_0    conda-forge
python                    3.11.9          h631f459_0_cpython    conda-forge
python-dateutil           2.9.0              pyhd8ed1ab_0    conda-forge
python-fastjsonschema     2.19.1             pyhd8ed1ab_0    conda-forge
python-gitlab             4.8.0                    pypi_0    pypi
python-gssapi             1.8.3           py311h8a3cce8_0    conda-forge
python-json-logger        2.0.7                    pypi_0    pypi
python-tzdata             2024.1             pyhd8ed1ab_0    conda-forge
python_abi                3.11                    4_cp311    conda-forge
pythonocc-core            7.4.1           py311h7e01d4e_9    dlr-sc
pythreejs                 2.4.2              pyh1d7be83_0    conda-forge
pytz                      2024.1             pyhd8ed1ab_0    conda-forge
pywin32                   306             py311h12c1d0e_2    conda-forge
pywinpty                  2.0.13                   pypi_0    pypi
pyyaml                    6.0.1           py311ha68e1ae_1    conda-forge
pyzmq                     26.0.3          py311h484c95c_0    conda-forge
qt-main                   5.15.8              hcef0176_21    conda-forge
qt6-main                  6.7.2                h527115d_0    conda-forge
qtconsole                 5.5.2                    pypi_0    pypi
qtpy                      2.4.1                    pypi_0    pypi
re2                       2023.09.01           hd3b24a8_2    conda-forge
rechunker                 0.5.2                    pypi_0    pypi
referencing               0.35.1             pyhd8ed1ab_0    conda-forge
requests                  2.32.3             pyhd8ed1ab_0    conda-forge
requests-toolbelt         1.0.0                    pypi_0    pypi
rfc3339-validator         0.1.4                    pypi_0    pypi
rfc3986-validator         0.1.1                    pypi_0    pypi
rpds-py                   0.18.1          py311h533ab2d_0    conda-forge
ruamel-yaml               0.18.6                   pypi_0    pypi
ruamel-yaml-clib          0.2.8                    pypi_0    pypi
scipy                     1.13.1          py311hd4686c6_0    conda-forge
send2trash                1.8.3                    pypi_0    pypi
setuptools                70.0.0             pyhd8ed1ab_0    conda-forge
shiboken6                 6.7.1                    pypi_0    pypi
sip                       6.7.12          py311h12c1d0e_0    conda-forge
six                       1.16.0             pyh6c4a22f_0    conda-forge
snappy                    1.2.0                hfb803bf_1    conda-forge
sniffio                   1.3.1                    pypi_0    pypi
snowballstemmer           2.2.0              pyhd8ed1ab_0    conda-forge
sortedcontainers          2.4.0              pyhd8ed1ab_0    conda-forge
soupsieve                 2.5                pyhd8ed1ab_1    conda-forge
sphinx                    7.3.7              pyhd8ed1ab_0    conda-forge
sphinx_rtd_theme          2.0.0              pyha770c72_0    conda-forge
sphinxcontrib-applehelp   1.0.8              pyhd8ed1ab_0    conda-forge
sphinxcontrib-devhelp     1.0.6              pyhd8ed1ab_0    conda-forge
sphinxcontrib-htmlhelp    2.0.5              pyhd8ed1ab_0    conda-forge
sphinxcontrib-jquery      4.1                pyhd8ed1ab_0    conda-forge
sphinxcontrib-jsmath      1.0.1              pyhd8ed1ab_0    conda-forge
sphinxcontrib-qthelp      1.0.7              pyhd8ed1ab_0    conda-forge
sphinxcontrib-serializinghtml 1.1.10             pyhd8ed1ab_0    conda-forge
sqlite                    3.46.0               h2466b09_0    conda-forge
sqlitedict                2.1.0              pyhd8ed1ab_0    conda-forge
stack_data                0.6.2              pyhd8ed1ab_0    conda-forge
sympy                     1.13.1                   pypi_0    pypi
tables                    3.9.2                    pypi_0    pypi
tbb                       2019.5               he980bc4_0    conda-forge
tblib                     3.0.0              pyhd8ed1ab_0    conda-forge
terminado                 0.18.1                   pypi_0    pypi
tigl3                     3.3.1           py311h7e01d4e_0    dlr-sc
tinycss2                  1.3.0              pyhd8ed1ab_0    conda-forge
tixi3                     3.3.0           py311h9d197f5_6    dlr-sc
tk                        8.6.13               h5226925_1    conda-forge
toml                      0.10.2             pyhd8ed1ab_0    conda-forge
tomli                     2.0.1              pyhd8ed1ab_0    conda-forge
toolz                     0.12.1             pyhd8ed1ab_0    conda-forge
tornado                   6.4.1           py311he736701_0    conda-forge
traitlets                 5.14.3             pyhd8ed1ab_0    conda-forge
traittypes                0.2.1              pyh9f0ad1d_2    conda-forge
types-python-dateutil     2.9.0.20240316           pypi_0    pypi
typing_extensions         4.12.2             pyha770c72_0    conda-forge
tzdata                    2024a                h0c530f3_0    conda-forge
ucrt                      10.0.22621.0         h57928b3_0    conda-forge
uri-template              1.3.0                    pypi_0    pypi
urllib3                   2.2.1              pyhd8ed1ab_0    conda-forge
vc                        14.3                h8a93ad2_20    conda-forge
vc14_runtime              14.40.33810         ha82c5b3_20    conda-forge
vs2015_runtime            14.40.33810         h3bf8584_20    conda-forge
wcwidth                   0.2.13             pyhd8ed1ab_0    conda-forge
webcolors                 24.6.0                   pypi_0    pypi
webencodings              0.5.1              pyhd8ed1ab_2    conda-forge
websocket-client          1.8.0                    pypi_0    pypi
wheel                     0.43.0             pyhd8ed1ab_1    conda-forge
widgetsnbextension        4.0.11             pyhd8ed1ab_0    conda-forge
win_inet_pton             1.1.0              pyhd8ed1ab_6    conda-forge
wrapt                     1.16.0                   pypi_0    pypi
wxpython                  4.2.1                    pypi_0    pypi
xmldiff                   2.7.0                    pypi_0    pypi
xorg-fixesproto           5.0               hcd874cb_1002    conda-forge
xorg-kbproto              1.0.7             hcd874cb_1002    conda-forge
xorg-libx11               1.8.9                hefa74cf_0    conda-forge
xorg-libxau               1.0.11               hcd874cb_0    conda-forge
xorg-libxcursor           1.2.0                hcd874cb_1    conda-forge
xorg-libxdmcp             1.1.3                hcd874cb_0    conda-forge
xorg-libxext              1.3.4                hcd874cb_2    conda-forge
xorg-libxfixes            5.0.3             hcd874cb_1004    conda-forge
xorg-libxinerama          1.1.5                hfa435f1_0    conda-forge
xorg-libxrender           0.9.11               hcd874cb_0    conda-forge
xorg-renderproto          0.11.1            hcd874cb_1002    conda-forge
xorg-xextproto            7.3.0             hcd874cb_1003    conda-forge
xorg-xproto               7.0.31            hcd874cb_1007    conda-forge
xyzservices               2024.6.0           pyhd8ed1ab_0    conda-forge
xz                        5.2.6                h8d14728_0    conda-forge
yaml                      0.2.5                h8ffe710_2    conda-forge
zarr                      2.18.2                   pypi_0    pypi
zeromq                    4.3.5                he1f189c_4    conda-forge
zict                      3.0.0              pyhd8ed1ab_0    conda-forge
zipp                      3.19.2             pyhd8ed1ab_0    conda-forge
zlib                      1.3.1                h2466b09_1    conda-forge
zstd                      1.5.6                h0ea2cb4_0    conda-forge
rmaierl commented 2 weeks ago

Good morning,

I also cannot reproduce the issue. The geometry is built in a few seconds.

The generation of the intersected geometry takes a bit longer (1 minute) Have you thought about using CST profile definition? This accelerates the geometry generation on our side.

You could also review the geometry in TiGL directly, to check how long it takes there.

Please find some attached screenshots as additional explanation of my points above.

cst_profile

CPACS_geom

The definition of the material is also not complete:

FEM_mesh_error

Additionally I would reccomend to clean up your CPACS file according to the schema:

08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:51: Element 'cells': Missing child element(s). Expected is ( cell ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:65: Element 'cells': Missing child element(s). Expected is ( cell ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:71: Element 'dynamicAircraftModel': This element is not expected. 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:87: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:100: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:113: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:126: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:139: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:152: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:165: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:178: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:191: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:204: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:217: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:230: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:243: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:256: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:269: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:282: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:295: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:308: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:321: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:334: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:347: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:360: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:373: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:386: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:399: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:412: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:425: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:438: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:451: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:28 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:464: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[1]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[2]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[3]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[4]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[5]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[6]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[7]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[8]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[9]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'scaling', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_elements_element_transformation_scaling' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'rotation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_elements_element_transformation_rotation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:37: Element 'translation', attribute 'uID': 'cpacs_vehicles_aircraft_model_wings_wing_sections_section[10]_elements_element_transformation_translation' is not a valid value of the atomic type 'xs:ID'. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:51: Element 'cells': Missing child element(s). Expected is ( cell ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:65: Element 'cells': Missing child element(s). Expected is ( cell ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:71: Element 'dynamicAircraftModel': This element is not expected. 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:87: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:100: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:113: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:126: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:139: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:152: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:165: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:178: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:191: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:204: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:217: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:230: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:243: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:256: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:269: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:282: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:295: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:308: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:321: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:334: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:347: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:360: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:373: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:386: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:399: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:412: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:425: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:438: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:451: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ). 08:48:38 [ERROR] (tigl.cpp:132) [TiXI] /caehome/mare102/exchange/IEA-15-240-RWT_CPACS/IEA-15-240-RWT_CPACS.xml:464: Element 'nodalLoads': This element is not expected. Expected is one of ( description, specification, loadData ).

ewerthen commented 2 weeks ago

Hi, thank you for your fast response. We will figure out the CST profile definition. So the generation of the intersected geometry for the file "IEA-15-240-RWT_30_CS.xml" given above works for you without errors? That would be strange. Please be aware that Daniel uploaded new files. I think you took the old file from 9/2020. The material with the uid "glass_triax" is given in all CPACS files: grafik

rmaierl commented 4 days ago

Please find the intersected geometry here:

You also need to add the material (or composite) UId to the structural component. Then the material properties from the material node are taken into account for this element.

IEA-15-240-RWT_intersected_stp.zip

skin_material spar_properties