Machine Operator

This documentation provides an overview of the Machine Operator (german: Anlagenbetreiber) module.

Services

This section provides an overview of the services available in the Anlagenbetreiber (Machine Operator) module. Each service is responsible for a specific functionality within the FastIoT ecosystem.

MotivSensorService

class MotivSensorService(broker_connection: BrokerConnection | None = None, **kwargs)

Bases: FastIoTService

Motiv Sensor Service

async produce()

Creating some dummy data and publish it in regular intervals

MongoDatabaseService

class MongoDatabaseService(*args, **kwargs)

Bases: FastIoTService

MongoDB Database Service

Parameters:
  • args – Positional arguments passed to the superclass or internal use.

  • kwargs – Arbitrary keyword arguments, allowing for extensibility or forwarding to the superclass constructor or other components.

async db_save_many_raw_datapoints(_: str, msg: Thing) Thing

Saves many raw data points to the database.

Parameters:
  • _ (str) – The topic of the message. This is not used in this method.

  • msg – The message that contains the raw data points to be saved to the database.

Returns:

A Thing object that contains the result of the operation. This is either an acknowledgement or an error. Acknowledgements contain the number of raw data points that were saved to the database.

Return type:

Thing

async get_labeled_dataset(_: str, __: Thing) Thing

Queries the database for a labeled dataset and sends it to the requesting service via the broker.

Parameters:
  • _ (str) – Topic of the message

  • __ (Thing) – Message Thing

async setup_labeled_dataset()

Inserts a labeled dataset into the database

EdcAnlagenbetreiberService

class EdcAnlagenbetreiberService(*args, **kwargs)

Bases: FastIoTService

EDC AnlagenbetreiberService

async get_labeled_data()

Get a labeled dataset :return: Labled dataset :rtype: Jsonified labled dataset

async get_prediction(_: str, msg: Thing) Thing

Gets the prediction

Parameters:
  • _ (str) – The topic of the message. This is not used in this method.

  • msg (Thing) – Actual message

Returns:

Thing to signal reception

Return type:

Thing

async run_app()

Starts the application

MachinenParametrierungService

class MachinenParametrierungService(broker_connection: BrokerConnection | None = None, **kwargs)

Bases: FastIoTService

Machinen Parametrierung Service

static generate_random_datapoint() dict

Generates a random datapoint

Returns:

Random datapoint

Return type:

dict

async produce()

Requests an EDC prediction using the random datapoint in regular intervals

Broker Facade

The following functions are used to interact with the ML Lifecycle Broker. They provide a simple interface to send requests and receive responses from the broker. They are located in the anlagenbetreiber/ml_lifecycle_utils/ml_lifecycle_broker_facade.py file.

ok_response_thing(payload: dict | list, fiot_service: FastIoTService) Thing

Creates a Thing object with the payload and the name of the service that created it.

Parameters:
  • payload (dict | list) – The payload to be sent.

  • fiot_service (FastIoTService) – The service that created the payload.

Returns:

A Thing object with the payload and the name of the service that created it.

Return type:

Thing

error_response_thing(exception: Exception, fiot_service: FastIoTService) Thing

Creates a Thing object with the error information and the name of the service that created it.

Parameters:
  • exception (Exception) – The exception that was raised.

  • fiot_service (FastIoTService) – The service that raised the exception.

Returns:

A Thing object with the error information and the name of the service that created it.

Return type:

Thing

async request_replysubject_thing_wrapper(fiot_service: FastIoTService, data: dict | list[dict], subject: str, timeout: float) Future[dict | list[dict] | int | float | str | None]

This function wraps the request to the broker and handles the response.

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (dict) – The data to be sent to the broker.

  • subject (str) – The subject to which the request is sent.

  • timeout (float) – Seconds to wait for a response.

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_save_many_raw_data_points(fiot_service: FastIoTService, data: list[dict], timeout: float = 10) Future[dict | list[dict]]

This function sends a request to the broker under the DB_SAVE_MANY_RAW_DATAPOINTS_SUBJECT subject to save raw datapoints to the database utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_upsert_many_processed_data_points(fiot_service: FastIoTService, data: list[dict], timeout: float = 10) Future[dict | list[dict]]

This function sends a request to the broker under the DB_UPSERT_MANY_PROCESSED_DATAPOINTS_SUBJECT subject to update processed datapoints in the database utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_get_all_raw_data_points(fiot_service: FastIoTService, timeout: float = 10) Future[dict | list[dict]]

This function sends a request to the broker under the DB_GET_ALL_RAW_DATA_SUBJECT for all raw datapoints in the database utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_get_all_processed_data_points(fiot_service: FastIoTService, timeout: float = 10) Future[dict | list[dict]]

This function sends a request to the broker under the DB_GET_ALL_PROCESSED_DATA_SUBJECT for all processed datapoints in the database utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_get_processed_data_points_count(fiot_service: FastIoTService, timeout: float = 10) Future[int]

This function sends a request to the broker under the DB_GET_PROCESSED_DATA_POINTS_COUNT_SUBJECT for the processed datapoints count in the database utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_get_processed_data_points_page(fiot_service: FastIoTService, page: int = 0, page_size: int = 10, timeout: float = 10) Future[list[dict]]

This function sends a request to the broker under the DB_GET_PROCESSED_DATA_PAGE_SUBJECT for a page of processed datapoints in the database utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_get_processed_data_points_from_raw_data(fiot_service: FastIoTService, data: dict, timeout: float = 10) Future[list[dict]]

This function sends a request to the broker under the DATA_PROCESSING_PROCESS_RAW_DATA_SUBJECT for a set of raw data to be processed and handed back to the requesting service utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_get_prediction(fiot_service: FastIoTService, data: dict, timeout: float = 10) Future[list[dict]]

This function sends a request to the broker under the ML_SERVING_SUBJECT for a prediction utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_get_labeled_dataset(fiot_service: FastIoTService, data: dict = {}, timeout: float = 10) Future[list[dict]]

This function sends a request to the broker under the DB_GET_LABELED_DATASET_SUBJECT for a labeled dataset from the database utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

async request_edc_prediction(fiot_service: FastIoTService, data: list[dict], timeout: float = 10) Future[list[dict]]

This function sends a request to the broker under the ML_EDC_SUBJECT for an EDC prediction utilizing the request_replysubject_thing_wrapper

Parameters:
  • fiot_service (FastIoTService) – The FastIoTService instance that is used to send the request.

  • data (list[dict]) – The data to be sent to the broker.

  • timeout (float) – Seconds to wait for a response

Returns:

Future placeholder for the awaited Reply

Return type:

Future[dict | list[dict] | int | float | str | None]

Broker Lifecycle Topics

DB_GET_LABELED_DATASET_SUBJECT = ReplySubject(name='get-labeled-dataset', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with retrieving a labeled dataset

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

DB_SAVE_MANY_RAW_DATAPOINTS_SUBJECT = ReplySubject(name='save-many-raw-datapoints', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with saving a set of datapoints to the database

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

DB_GET_ALL_RAW_DATA_SUBJECT = ReplySubject(name='get-all-raw-datapoints', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with retrieving all raw data contained in the database

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

DB_GET_ALL_PROCESSED_DATA_SUBJECT = ReplySubject(name='get-all-processed-datapoints', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with retrieving all processed data contained in the database

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

DB_GET_PROCESSED_DATA_POINTS_COUNT_SUBJECT = ReplySubject(name='get-processed-datapoints-count', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with retrieving a certain count of processed datapoints

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

DB_UPSERT_MANY_PROCESSED_DATAPOINTS_SUBJECT = ReplySubject(name='upsert-many-processed-datapoints', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with updating a set of processed datapoints in the database

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

DB_GET_PROCESSED_DATA_COUNT_SUBJECT = ReplySubject(name='get-processed-data-count', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with retrieving the count of processed datapoints in the database

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

DB_GET_PROCESSED_DATA_PAGE_SUBJECT = ReplySubject(name='get-processed-data-page', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with retrieving processed data page from the database

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

DATA_PROCESSING_PROCESS_RAW_DATA_SUBJECT = ReplySubject(name='process-raw-datapoints', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with processing raw attached data

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

ML_SERVING_SUBJECT = ReplySubject(name='get-prediction', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with ML services

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

ML_EDC_SUBJECT = ReplySubject(name='get-prediction', msg_cls=<class 'fastiot.msg.thing.Thing'>, reply_cls=<class 'fastiot.msg.thing.Thing'>)

Broker Subject associated with requesting a prediction from the EDC service

Parameters:
  • name (string) – Subject Label

  • msg_cls (Thing) – Class of the message sent to broker

  • reply_cls (Thing) – Class of the reply received from the broker

Dataset

Contains the inital dataset in a list of dictionaries.

   1raw_data = [
   2    {  # FolieVP28
   3        "ListeKomponenten": ["K000055"],  # id or material name
   4        "Massenanteile": None,  # unit g/g
   5        "Flächenanteilmodifiziert": 0,  # unit %
   6        "Geometrie": "Quader",  # unit: list of types
   7        "Kopfraumatmosphäre": None,  # unit list of (pa)
   8        "Masse": None,  # unit g
   9        "Verpackungstyp": "Folie",  # type
  10        "CAD": None,  # link to CAD file
  11        "RauheitRa": 0.729,  # unit µm
  12        "RauheitRz": 3.33,  # unit µm
  13        "Trübung": 450.7,  # unit HLog
  14        "Glanz": 46.9,  # unit GE
  15        "Dicke": 777,  # unit µm
  16        "Emodul": 923.5297844703941,  # unit MPa
  17        "MaximaleZugspannung": 39.27389962516748,  # unit MPa
  18        "MaximaleLängenänderung": 24.74862718628088,  # unit %
  19        # Qulaity Labels
  20        "Ausformung": 1,
  21        "Kaltverfo": 3,
  22        # Training Label
  23        "Temp": 300,
  24        "Zeit": 8,
  25        "Druck": 1,
  26    },
  27    {  # FolieVP28
  28        "ListeKomponenten": ["K000055"],  # id or material name
  29        "Massenanteile": None,  # unit g/g
  30        "Flächenanteilmodifiziert": 0,  # unit %
  31        "Geometrie": "Quader",  # unit: list of types
  32        "Kopfraumatmosphäre": None,  # unit list of (pa)
  33        "Masse": None,  # unit g
  34        "Verpackungstyp": "Folie",  # type
  35        "CAD": None,  # link to CAD file
  36        "RauheitRa": 0.729,  # unit µm
  37        "RauheitRz": 3.33,  # unit µm
  38        "Trübung": 450.7,  # unit HLog
  39        "Glanz": 46.9,  # unit GE
  40        "Dicke": 777,  # unit µm
  41        "Emodul": 923.5297844703941,  # unit MPa
  42        "MaximaleZugspannung": 39.27389962516748,  # unit MPa
  43        "MaximaleLängenänderung": 24.74862718628088,  # unit %
  44        # Qulaity Labels
  45        "Ausformung": 2,
  46        "Kaltverfo": 2,
  47        # Training Label
  48        "Temp": 300,
  49        "Zeit": 12,
  50        "Druck": 4.33,
  51    },
  52    {  # FolieVP28
  53        "ListeKomponenten": ["K000055"],  # id or material name
  54        "Massenanteile": None,  # unit g/g
  55        "Flächenanteilmodifiziert": 0,  # unit %
  56        "Geometrie": "Quader",  # unit: list of types
  57        "Kopfraumatmosphäre": None,  # unit list of (pa)
  58        "Masse": None,  # unit g
  59        "Verpackungstyp": "Folie",  # type
  60        "CAD": None,  # link to CAD file
  61        "RauheitRa": 0.729,  # unit µm
  62        "RauheitRz": 3.33,  # unit µm
  63        "Trübung": 450.7,  # unit HLog
  64        "Glanz": 46.9,  # unit GE
  65        "Dicke": 777,  # unit µm
  66        "Emodul": 923.5297844703941,  # unit MPa
  67        "MaximaleZugspannung": 39.27389962516748,  # unit MPa
  68        "MaximaleLängenänderung": 24.74862718628088,  # unit %
  69        # Qulaity Labels
  70        "Ausformung": 2,
  71        "Kaltverfo": 2,
  72        # Training Label
  73        "Temp": 300,
  74        "Zeit": 12,
  75        "Druck": 4.33,
  76    },
  77    {  # FolieVP28
  78        "ListeKomponenten": ["K000055"],  # id or material name
  79        "Massenanteile": None,  # unit g/g
  80        "Flächenanteilmodifiziert": 0,  # unit %
  81        "Geometrie": "Quader",  # unit: list of types
  82        "Kopfraumatmosphäre": None,  # unit list of (pa)
  83        "Masse": None,  # unit g
  84        "Verpackungstyp": "Folie",  # type
  85        "CAD": None,  # link to CAD file
  86        "RauheitRa": 0.729,  # unit µm
  87        "RauheitRz": 3.33,  # unit µm
  88        "Trübung": 450.7,  # unit HLog
  89        "Glanz": 46.9,  # unit GE
  90        "Dicke": 777,  # unit µm
  91        "Emodul": 923.5297844703941,  # unit MPa
  92        "MaximaleZugspannung": 39.27389962516748,  # unit MPa
  93        "MaximaleLängenänderung": 24.74862718628088,  # unit %
  94        # Qulaity Labels
  95        "Ausformung": 2,
  96        "Kaltverfo": 1,
  97        # Training Label
  98        "Temp": 300,
  99        "Zeit": 16,
 100        "Druck": 6,
 101    },
 102    {  # FolieVP28
 103        "ListeKomponenten": ["K000055"],  # id or material name
 104        "Massenanteile": None,  # unit g/g
 105        "Flächenanteilmodifiziert": 0,  # unit %
 106        "Geometrie": "Quader",  # unit: list of types
 107        "Kopfraumatmosphäre": None,  # unit list of (pa)
 108        "Masse": None,  # unit g
 109        "Verpackungstyp": "Folie",  # type
 110        "CAD": None,  # link to CAD file
 111        "RauheitRa": 0.729,  # unit µm
 112        "RauheitRz": 3.33,  # unit µm
 113        "Trübung": 450.7,  # unit HLog
 114        "Glanz": 46.9,  # unit GE
 115        "Dicke": 777,  # unit µm
 116        "Emodul": 923.5297844703941,  # unit MPa
 117        "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 118        "MaximaleLängenänderung": 24.74862718628088,  # unit %
 119        # Qulaity Labels
 120        "Ausformung": 3,
 121        "Kaltverfo": 1,
 122        # Training Label
 123        "Temp": 300,
 124        "Zeit": 36,
 125        "Druck": 6,
 126    },
 127    {  # FolieVP28
 128        "ListeKomponenten": ["K000055"],  # id or material name
 129        "Massenanteile": None,  # unit g/g
 130        "Flächenanteilmodifiziert": 0,  # unit %
 131        "Geometrie": "Quader",  # unit: list of types
 132        "Kopfraumatmosphäre": None,  # unit list of (pa)
 133        "Masse": None,  # unit g
 134        "Verpackungstyp": "Folie",  # type
 135        "CAD": None,  # link to CAD file
 136        "RauheitRa": 0.729,  # unit µm
 137        "RauheitRz": 3.33,  # unit µm
 138        "Trübung": 450.7,  # unit HLog
 139        "Glanz": 46.9,  # unit GE
 140        "Dicke": 777,  # unit µm
 141        "Emodul": 923.5297844703941,  # unit MPa
 142        "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 143        "MaximaleLängenänderung": 24.74862718628088,  # unit %
 144        # Qulaity Labels
 145        "Ausformung": 1,
 146        "Kaltverfo": 3,
 147        # Training Label
 148        "Temp": 300,
 149        "Zeit": 40,
 150        "Druck": 1,
 151    },
 152    {  # FolieVP28
 153        "ListeKomponenten": ["K000055"],  # id or material name
 154        "Massenanteile": None,  # unit g/g
 155        "Flächenanteilmodifiziert": 0,  # unit %
 156        "Geometrie": "Quader",  # unit: list of types
 157        "Kopfraumatmosphäre": None,  # unit list of (pa)
 158        "Masse": None,  # unit g
 159        "Verpackungstyp": "Folie",  # type
 160        "CAD": None,  # link to CAD file
 161        "RauheitRa": 0.729,  # unit µm
 162        "RauheitRz": 3.33,  # unit µm
 163        "Trübung": 450.7,  # unit HLog
 164        "Glanz": 46.9,  # unit GE
 165        "Dicke": 777,  # unit µm
 166        "Emodul": 923.5297844703941,  # unit MPa
 167        "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 168        "MaximaleLängenänderung": 24.74862718628088,  # unit %
 169        # Qulaity Labels
 170        "Ausformung": 2,
 171        "Kaltverfo": 2,
 172        # Training Label
 173        "Temp": 340,
 174        "Zeit": 8,
 175        "Druck": 6,
 176    },
 177{
 178    "ListeKomponenten": ["K000055"],  # id or material name
 179    "Massenanteile": None,  # unit g/g
 180    "Flächenanteilmodifiziert": 0,  # unit %
 181    "Geometrie": "Quader",  # unit: list of types
 182    "Kopfraumatmosphäre": None,  # unit list of (pa)
 183    "Masse": None,  # unit g
 184    "Verpackungstyp": "Folie",  # type
 185    "CAD": None,  # link to CAD file
 186    "RauheitRa": 0.729,  # unit µm
 187    "RauheitRz": 3.33,  # unit µm
 188    "Trübung": 450.7,  # unit HLog
 189    "Glanz": 46.9,  # unit GE
 190    "Dicke": 777,  # unit µm
 191    "Emodul": 923.5297844703941,  # unit MPa
 192    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 193    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 194    # Qulaity Labels
 195    "Ausformung": 2,
 196    "Kaltverfo": 2,
 197    # Training Label
 198    "Temp": 340,
 199    "Zeit": 12,
 200    "Druck": 1,
 201},
 202{
 203    "ListeKomponenten": ["K000055"],  # id or material name
 204    "Massenanteile": None,  # unit g/g
 205    "Flächenanteilmodifiziert": 0,  # unit %
 206    "Geometrie": "Quader",  # unit: list of types
 207    "Kopfraumatmosphäre": None,  # unit list of (pa)
 208    "Masse": None,  # unit g
 209    "Verpackungstyp": "Folie",  # type
 210    "CAD": None,  # link to CAD file
 211    "RauheitRa": 0.729,  # unit µm
 212    "RauheitRz": 3.33,  # unit µm
 213    "Trübung": 450.7,  # unit HLog
 214    "Glanz": 46.9,  # unit GE
 215    "Dicke": 777,  # unit µm
 216    "Emodul": 923.5297844703941,  # unit MPa
 217    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 218    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 219    # Qulaity Labels
 220    "Ausformung": 2,
 221    "Kaltverfo": 2,
 222    # Training Label
 223    "Temp": 340,
 224    "Zeit": 20,
 225    "Druck": 2.67,
 226},
 227{
 228    "ListeKomponenten": ["K000055"],  # id or material name
 229    "Massenanteile": None,  # unit g/g
 230    "Flächenanteilmodifiziert": 0,  # unit %
 231    "Geometrie": "Quader",  # unit: list of types
 232    "Kopfraumatmosphäre": None,  # unit list of (pa)
 233    "Masse": None,  # unit g
 234    "Verpackungstyp": "Folie",  # type
 235    "CAD": None,  # link to CAD file
 236    "RauheitRa": 0.729,  # unit µm
 237    "RauheitRz": 3.33,  # unit µm
 238    "Trübung": 450.7,  # unit HLog
 239    "Glanz": 46.9,  # unit GE
 240    "Dicke": 777,  # unit µm
 241    "Emodul": 923.5297844703941,  # unit MPa
 242    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 243    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 244    # Qulaity Labels
 245    "Ausformung": 3,
 246    "Kaltverfo": 1,
 247    # Training Label
 248    "Temp": 340,
 249    "Zeit": 32,
 250    "Druck": 4.33,
 251},
 252{
 253    "ListeKomponenten": ["K000055"],  # id or material name
 254    "Massenanteile": None,  # unit g/g
 255    "Flächenanteilmodifiziert": 0,  # unit %
 256    "Geometrie": "Quader",  # unit: list of types
 257    "Kopfraumatmosphäre": None,  # unit list of (pa)
 258    "Masse": None,  # unit g
 259    "Verpackungstyp": "Folie",  # type
 260    "CAD": None,  # link to CAD file
 261    "RauheitRa": 0.729,  # unit µm
 262    "RauheitRz": 3.33,  # unit µm
 263    "Trübung": 450.7,  # unit HLog
 264    "Glanz": 46.9,  # unit GE
 265    "Dicke": 777,  # unit µm
 266    "Emodul": 923.5297844703941,  # unit MPa
 267    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 268    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 269    # Qulaity Labels
 270    "Ausformung": 3,
 271    "Kaltverfo": 1,
 272    # Training Label
 273    "Temp": 380,
 274    "Zeit": 16,
 275    "Druck": 4.33,
 276},
 277{
 278    "ListeKomponenten": ["K000055"],  # id or material name
 279    "Massenanteile": None,  # unit g/g
 280    "Flächenanteilmodifiziert": 0,  # unit %
 281    "Geometrie": "Quader",  # unit: list of types
 282    "Kopfraumatmosphäre": None,  # unit list of (pa)
 283    "Masse": None,  # unit g
 284    "Verpackungstyp": "Folie",  # type
 285    "CAD": None,  # link to CAD file
 286    "RauheitRa": 0.729,  # unit µm
 287    "RauheitRz": 3.33,  # unit µm
 288    "Trübung": 450.7,  # unit HLog
 289    "Glanz": 46.9,  # unit GE
 290    "Dicke": 777,  # unit µm
 291    "Emodul": 923.5297844703941,  # unit MPa
 292    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 293    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 294    # Qulaity Labels
 295    "Ausformung": 3,
 296    "Kaltverfo": 1,
 297    # Training Label
 298    "Temp": 380,
 299    "Zeit": 20,
 300    "Druck": 6,
 301},
 302{
 303    "ListeKomponenten": ["K000055"],  # id or material name
 304    "Massenanteile": None,  # unit g/g
 305    "Flächenanteilmodifiziert": 0,  # unit %
 306    "Geometrie": "Quader",  # unit: list of types
 307    "Kopfraumatmosphäre": None,  # unit list of (pa)
 308    "Masse": None,  # unit g
 309    "Verpackungstyp": "Folie",  # type
 310    "CAD": None,  # link to CAD file
 311    "RauheitRa": 0.729,  # unit µm
 312    "RauheitRz": 3.33,  # unit µm
 313    "Trübung": 450.7,  # unit HLog
 314    "Glanz": 46.9,  # unit GE
 315    "Dicke": 777,  # unit µm
 316    "Emodul": 923.5297844703941,  # unit MPa
 317    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 318    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 319    # Qulaity Labels
 320    "Ausformung": 3,
 321    "Kaltverfo": 1,
 322    # Training Label
 323    "Temp": 380,
 324    "Zeit": 24,
 325    "Druck": 2.67,
 326},
 327{
 328    "ListeKomponenten": ["K000055"],  # id or material name
 329    "Massenanteile": None,  # unit g/g
 330    "Flächenanteilmodifiziert": 0,  # unit %
 331    "Geometrie": "Quader",  # unit: list of types
 332    "Kopfraumatmosphäre": None,  # unit list of (pa)
 333    "Masse": None,  # unit g
 334    "Verpackungstyp": "Folie",  # type
 335    "CAD": None,  # link to CAD file
 336    "RauheitRa": 0.729,  # unit µm
 337    "RauheitRz": 3.33,  # unit µm
 338    "Trübung": 450.7,  # unit HLog
 339    "Glanz": 46.9,  # unit GE
 340    "Dicke": 777,  # unit µm
 341    "Emodul": 923.5297844703941,  # unit MPa
 342    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 343    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 344    # Qulaity Labels
 345    "Ausformung": 3,
 346    "Kaltverfo": 1,
 347    # Training Label
 348    "Temp": 380,
 349    "Zeit": 28,
 350    "Druck": 2.67,
 351},
 352{
 353    "ListeKomponenten": ["K000055"],  # id or material name
 354    "Massenanteile": None,  # unit g/g
 355    "Flächenanteilmodifiziert": 0,  # unit %
 356    "Geometrie": "Quader",  # unit: list of types
 357    "Kopfraumatmosphäre": None,  # unit list of (pa)
 358    "Masse": None,  # unit g
 359    "Verpackungstyp": "Folie",  # type
 360    "CAD": None,  # link to CAD file
 361    "RauheitRa": 0.729,  # unit µm
 362    "RauheitRz": 3.33,  # unit µm
 363    "Trübung": 450.7,  # unit HLog
 364    "Glanz": 46.9,  # unit GE
 365    "Dicke": 777,  # unit µm
 366    "Emodul": 923.5297844703941,  # unit MPa
 367    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 368    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 369    # Qulaity Labels
 370    "Ausformung": 2,
 371    "Kaltverfo": 2,
 372    # Training Label
 373    "Temp": 420,
 374    "Zeit": 16,
 375    "Druck": 2.67,
 376},
 377{
 378    "ListeKomponenten": ["K000055"],  # id or material name
 379    "Massenanteile": None,  # unit g/g
 380    "Flächenanteilmodifiziert": 0,  # unit %
 381    "Geometrie": "Quader",  # unit: list of types
 382    "Kopfraumatmosphäre": None,  # unit list of (pa)
 383    "Masse": None,  # unit g
 384    "Verpackungstyp": "Folie",  # type
 385    "CAD": None,  # link to CAD file
 386    "RauheitRa": 0.729,  # unit µm
 387    "RauheitRz": 3.33,  # unit µm
 388    "Trübung": 450.7,  # unit HLog
 389    "Glanz": 46.9,  # unit GE
 390    "Dicke": 777,  # unit µm
 391    "Emodul": 923.5297844703941,  # unit MPa
 392    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 393    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 394    # Qulaity Labels
 395    "Ausformung": 3,
 396    "Kaltverfo": 2,
 397    # Training Label
 398    "Temp": 420,
 399    "Zeit": 28,
 400    "Druck": 4.33,
 401},
 402{
 403    "ListeKomponenten": ["K000055"],  # id or material name
 404    "Massenanteile": None,  # unit g/g
 405    "Flächenanteilmodifiziert": 0,  # unit %
 406    "Geometrie": "Quader",  # unit: list of types
 407    "Kopfraumatmosphäre": None,  # unit list of (pa)
 408    "Masse": None,  # unit g
 409    "Verpackungstyp": "Folie",  # type
 410    "CAD": None,  # link to CAD file
 411    "RauheitRa": 0.729,  # unit µm
 412    "RauheitRz": 3.33,  # unit µm
 413    "Trübung": 450.7,  # unit HLog
 414    "Glanz": 46.9,  # unit GE
 415    "Dicke": 777,  # unit µm
 416    "Emodul": 923.5297844703941,  # unit MPa
 417    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 418    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 419    # Qulaity Labels
 420    "Ausformung": 3,
 421    "Kaltverfo": 2.5,
 422    # Training Label
 423    "Temp": 420,
 424    "Zeit": 32,
 425    "Druck": 1,
 426},
 427{
 428    "ListeKomponenten": ["K000055"],  # id or material name
 429    "Massenanteile": None,  # unit g/g
 430    "Flächenanteilmodifiziert": 0,  # unit %
 431    "Geometrie": "Quader",  # unit: list of types
 432    "Kopfraumatmosphäre": None,  # unit list of (pa)
 433    "Masse": None,  # unit g
 434    "Verpackungstyp": "Folie",  # type
 435    "CAD": None,  # link to CAD file
 436    "RauheitRa": 0.729,  # unit µm
 437    "RauheitRz": 3.33,  # unit µm
 438    "Trübung": 450.7,  # unit HLog
 439    "Glanz": 46.9,  # unit GE
 440    "Dicke": 777,  # unit µm
 441    "Emodul": 923.5297844703941,  # unit MPa
 442    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 443    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 444    # Qulaity Labels
 445    "Ausformung": 4,
 446    "Kaltverfo": 2.5,
 447    # Training Label
 448    "Temp": 460,
 449    "Zeit": 24,
 450    "Druck": 4.33,
 451},
 452{
 453    "ListeKomponenten": ["K000055"],  # id or material name
 454    "Massenanteile": None,  # unit g/g
 455    "Flächenanteilmodifiziert": 0,  # unit %
 456    "Geometrie": "Quader",  # unit: list of types
 457    "Kopfraumatmosphäre": None,  # unit list of (pa)
 458    "Masse": None,  # unit g
 459    "Verpackungstyp": "Folie",  # type
 460    "CAD": None,  # link to CAD file
 461    "RauheitRa": 0.729,  # unit µm
 462    "RauheitRz": 3.33,  # unit µm
 463    "Trübung": 450.7,  # unit HLog
 464    "Glanz": 46.9,  # unit GE
 465    "Dicke": 777,  # unit µm
 466    "Emodul": 923.5297844703941,  # unit MPa
 467    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 468    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 469    # Qulaity Labels
 470    "Ausformung": 3,
 471    "Kaltverfo": 2.5,
 472    # Training Label
 473    "Temp": 460,
 474    "Zeit": 28,
 475    "Druck": 1,
 476},
 477{
 478    "ListeKomponenten": ["K000055"],  # id or material name
 479    "Massenanteile": None,  # unit g/g
 480    "Flächenanteilmodifiziert": 0,  # unit %
 481    "Geometrie": "Quader",  # unit: list of types
 482    "Kopfraumatmosphäre": None,  # unit list of (pa)
 483    "Masse": None,  # unit g
 484    "Verpackungstyp": "Folie",  # type
 485    "CAD": None,  # link to CAD file
 486    "RauheitRa": 0.729,  # unit µm
 487    "RauheitRz": 3.33,  # unit µm
 488    "Trübung": 450.7,  # unit HLog
 489    "Glanz": 46.9,  # unit GE
 490    "Dicke": 777,  # unit µm
 491    "Emodul": 923.5297844703941,  # unit MPa
 492    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 493    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 494    # Qulaity Labels
 495    "Ausformung": 3,
 496    "Kaltverfo": 2.5,
 497    # Training Label
 498    "Temp": 460,
 499    "Zeit": 32,
 500    "Druck": 1,
 501},
 502{
 503    "ListeKomponenten": ["K000055"],  # id or material name
 504    "Massenanteile": None,  # unit g/g
 505    "Flächenanteilmodifiziert": 0,  # unit %
 506    "Geometrie": "Quader",  # unit: list of types
 507    "Kopfraumatmosphäre": None,  # unit list of (pa)
 508    "Masse": None,  # unit g
 509    "Verpackungstyp": "Folie",  # type
 510    "CAD": None,  # link to CAD file
 511    "RauheitRa": 0.729,  # unit µm
 512    "RauheitRz": 3.33,  # unit µm
 513    "Trübung": 450.7,  # unit HLog
 514    "Glanz": 46.9,  # unit GE
 515    "Dicke": 777,  # unit µm
 516    "Emodul": 923.5297844703941,  # unit MPa
 517    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 518    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 519    # Qulaity Labels
 520    "Ausformung": 4,
 521    "Kaltverfo": 2.5,
 522    # Training Label
 523    "Temp": 460,
 524    "Zeit": 36,
 525    "Druck": 4.33,
 526},
 527{
 528    "ListeKomponenten": ["K000055"],  # id or material name
 529    "Massenanteile": None,  # unit g/g
 530    "Flächenanteilmodifiziert": 0,  # unit %
 531    "Geometrie": "Quader",  # unit: list of types
 532    "Kopfraumatmosphäre": None,  # unit list of (pa)
 533    "Masse": None,  # unit g
 534    "Verpackungstyp": "Folie",  # type
 535    "CAD": None,  # link to CAD file
 536    "RauheitRa": 0.729,  # unit µm
 537    "RauheitRz": 3.33,  # unit µm
 538    "Trübung": 450.7,  # unit HLog
 539    "Glanz": 46.9,  # unit GE
 540    "Dicke": 777,  # unit µm
 541    "Emodul": 923.5297844703941,  # unit MPa
 542    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 543    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 544    # Qulaity Labels
 545    "Ausformung": 4,
 546    "Kaltverfo": 2.5,
 547    # Training Label
 548    "Temp": 460,
 549    "Zeit": 40,
 550    "Druck": 1,
 551},
 552{
 553    "ListeKomponenten": ["K000055"],  # id or material name
 554    "Massenanteile": None,  # unit g/g
 555    "Flächenanteilmodifiziert": 0,  # unit %
 556    "Geometrie": "Quader",  # unit: list of types
 557    "Kopfraumatmosphäre": None,  # unit list of (pa)
 558    "Masse": None,  # unit g
 559    "Verpackungstyp": "Folie",  # type
 560    "CAD": None,  # link to CAD file
 561    "RauheitRa": 0.729,  # unit µm
 562    "RauheitRz": 3.33,  # unit µm
 563    "Trübung": 450.7,  # unit HLog
 564    "Glanz": 46.9,  # unit GE
 565    "Dicke": 777,  # unit µm
 566    "Emodul": 923.5297844703941,  # unit MPa
 567    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 568    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 569    # Qulaity Labels
 570    "Ausformung": 4,
 571    "Kaltverfo": 2.5,
 572    # Training Label
 573    "Temp": 460,
 574    "Zeit": 44,
 575    "Druck": 4.33,
 576},
 577{
 578    "ListeKomponenten": ["K000055"],  # id or material name
 579    "Massenanteile": None,  # unit g/g
 580    "Flächenanteilmodifiziert": 0,  # unit %
 581    "Geometrie": "Quader",  # unit: list of types
 582    "Kopfraumatmosphäre": None,  # unit list of (pa)
 583    "Masse": None,  # unit g
 584    "Verpackungstyp": "Folie",  # type
 585    "CAD": None,  # link to CAD file
 586    "RauheitRa": 0.729,  # unit µm
 587    "RauheitRz": 3.33,  # unit µm
 588    "Trübung": 450.7,  # unit HLog
 589    "Glanz": 46.9,  # unit GE
 590    "Dicke": 777,  # unit µm
 591    "Emodul": 923.5297844703941,  # unit MPa
 592    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 593    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 594    # Qulaity Labels
 595    "Ausformung": 4,
 596    "Kaltverfo": 2.5,
 597    # Training Label
 598    "Temp": 460,
 599    "Zeit": 48,
 600    "Druck": 1,
 601},
 602{
 603    "ListeKomponenten": ["K000055"],  # id or material name
 604    "Massenanteile": None,  # unit g/g
 605    "Flächenanteilmodifiziert": 0,  # unit %
 606    "Geometrie": "Quader",  # unit: list of types
 607    "Kopfraumatmosphäre": None,  # unit list of (pa)
 608    "Masse": None,  # unit g
 609    "Verpackungstyp": "Folie",  # type
 610    "CAD": None,  # link to CAD file
 611    "RauheitRa": 0.729,  # unit µm
 612    "RauheitRz": 3.33,  # unit µm
 613    "Trübung": 450.7,  # unit HLog
 614    "Glanz": 46.9,  # unit GE
 615    "Dicke": 777,  # unit µm
 616    "Emodul": 923.5297844703941,  # unit MPa
 617    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 618    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 619    # Qulaity Labels
 620    "Ausformung": 4,
 621    "Kaltverfo": 2.5,
 622    # Training Label
 623    "Temp": 460,
 624    "Zeit": 52,
 625    "Druck": 4.33,
 626},
 627{
 628    "ListeKomponenten": ["K000055"],  # id or material name
 629    "Massenanteile": None,  # unit g/g
 630    "Flächenanteilmodifiziert": 0,  # unit %
 631    "Geometrie": "Quader",  # unit: list of types
 632    "Kopfraumatmosphäre": None,  # unit list of (pa)
 633    "Masse": None,  # unit g
 634    "Verpackungstyp": "Folie",  # type
 635    "CAD": None,  # link to CAD file
 636    "RauheitRa": 0.729,  # unit µm
 637    "RauheitRz": 3.33,  # unit µm
 638    "Trübung": 450.7,  # unit HLog
 639    "Glanz": 46.9,  # unit GE
 640    "Dicke": 777,  # unit µm
 641    "Emodul": 923.5297844703941,  # unit MPa
 642    "MaximaleZugspannung": 39.27389962516748,  # unit MPa
 643    "MaximaleLängenänderung": 24.74862718628088,  # unit %
 644    # Qulaity Labels
 645    "Ausformung": 4,
 646    "Kaltverfo": 2.5,
 647    # Training Label
 648    "Temp": 460,
 649    "Zeit": 56,
 650    "Druck": 1,
 651},
 652{
 653        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 654        "Massenanteile": [0.5, 0.5],  # unit g/g
 655        "Flächenanteilmodifiziert": 0,  # unit %
 656        "Geometrie": "Quader",  # unit: list of types
 657        "Kopfraumatmosphäre": None,  # unit list of (pa)
 658        "Masse": None,  # unit g
 659        "Verpackungstyp": "Folie",  # type
 660        "CAD": None,  # link to CAD file
 661        "RauheitRa": 0.08666666666666667,  # unit µm
 662        "RauheitRz": 0.924,  # unit µm
 663        "Trübung": 216.1,  # unit HLog
 664        "Glanz": 36.7,  # unit GE
 665        "Dicke": 738.6666666666666,  # unit µm
 666        "Emodul": 807.9225728004443,  # unit MPa
 667        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 668        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 669        # Quality Labels
 670        "Ausformung": 1,
 671        "Kaltverfo": 3,
 672        # Training Label
 673        "Temp": 300,
 674        "Zeit": 8,
 675        "Druck": 1,
 676    },
 677    {
 678        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 679        "Massenanteile": [0.5, 0.5],  # unit g/g
 680        "Flächenanteilmodifiziert": 0,  # unit %
 681        "Geometrie": "Quader",  # unit: list of types
 682        "Kopfraumatmosphäre": None,  # unit list of (pa)
 683        "Masse": None,  # unit g
 684        "Verpackungstyp": "Folie",  # type
 685        "CAD": None,  # link to CAD file
 686        "RauheitRa": 0.08666666666666667,  # unit µm
 687        "RauheitRz": 0.924,  # unit µm
 688        "Trübung": 216.1,  # unit HLog
 689        "Glanz": 36.7,  # unit GE
 690        "Dicke": 738.6666666666666,  # unit µm
 691        "Emodul": 807.9225728004443,  # unit MPa
 692        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 693        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 694        # Quality Labels
 695        "Ausformung": 1.5,
 696        "Kaltverfo": 1,
 697        # Training Label
 698        "Temp": 300,
 699        "Zeit": 12,
 700        "Druck": 4.33,
 701    },
 702    {
 703        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 704        "Massenanteile": [0.5, 0.5],  # unit g/g
 705        "Flächenanteilmodifiziert": 0,  # unit %
 706        "Geometrie": "Quader",  # unit: list of types
 707        "Kopfraumatmosphäre": None,  # unit list of (pa)
 708        "Masse": None,  # unit g
 709        "Verpackungstyp": "Folie",  # type
 710        "CAD": None,  # link to CAD file
 711        "RauheitRa": 0.08666666666666667,  # unit µm
 712        "RauheitRz": 0.924,  # unit µm
 713        "Trübung": 216.1,  # unit HLog
 714        "Glanz": 36.7,  # unit GE
 715        "Dicke": 738.6666666666666,  # unit µm
 716        "Emodul": 807.9225728004443,  # unit MPa
 717        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 718        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 719        # Quality Labels
 720        "Ausformung": 1,
 721        "Kaltverfo": 1,
 722        # Training Label
 723        "Temp": 300,
 724        "Zeit": 16,
 725        "Druck": 6,
 726    },
 727    {
 728        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 729        "Massenanteile": [0.5, 0.5],  # unit g/g
 730        "Flächenanteilmodifiziert": 0,  # unit %
 731        "Geometrie": "Quader",  # unit: list of types
 732        "Kopfraumatmosphäre": None,  # unit list of (pa)
 733        "Masse": None,  # unit g
 734        "Verpackungstyp": "Folie",  # type
 735        "CAD": None,  # link to CAD file
 736        "RauheitRa": 0.08666666666666667,  # unit µm
 737        "RauheitRz": 0.924,  # unit µm
 738        "Trübung": 216.1,  # unit HLog
 739        "Glanz": 36.7,  # unit GE
 740        "Dicke": 738.6666666666666,  # unit µm
 741        "Emodul": 807.9225728004443,  # unit MPa
 742        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 743        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 744        # Quality Labels
 745        "Ausformung": 3,
 746        "Kaltverfo": 1,
 747        # Training Label
 748        "Temp": 300,
 749        "Zeit": 36,
 750        "Druck": 6,
 751    },
 752    {
 753        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 754        "Massenanteile": [0.5, 0.5],  # unit g/g
 755        "Flächenanteilmodifiziert": 0,  # unit %
 756        "Geometrie": "Quader",  # unit: list of types
 757        "Kopfraumatmosphäre": None,  # unit list of (pa)
 758        "Masse": None,  # unit g
 759        "Verpackungstyp": "Folie",  # type
 760        "CAD": None,  # link to CAD file
 761        "RauheitRa": 0.08666666666666667,  # unit µm
 762        "RauheitRz": 0.924,  # unit µm
 763        "Trübung": 216.1,  # unit HLog
 764        "Glanz": 36.7,  # unit GE
 765        "Dicke": 738.6666666666666,  # unit µm
 766        "Emodul": 807.9225728004443,  # unit MPa
 767        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 768        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 769        # Quality Labels
 770        "Ausformung": 1,
 771        "Kaltverfo": 3,
 772        # Training Label
 773        "Temp": 300,
 774        "Zeit": 40,
 775        "Druck": 1,
 776    },
 777    {
 778        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 779        "Massenanteile": [0.5, 0.5],  # unit g/g
 780        "Flächenanteilmodifiziert": 0,  # unit %
 781        "Geometrie": "Quader",  # unit: list of types
 782        "Kopfraumatmosphäre": None,  # unit list of (pa)
 783        "Masse": None,  # unit g
 784        "Verpackungstyp": "Folie",  # type
 785        "CAD": None,  # link to CAD file
 786        "RauheitRa": 0.08666666666666667,  # unit µm
 787        "RauheitRz": 0.924,  # unit µm
 788        "Trübung": 216.1,  # unit HLog
 789        "Glanz": 36.7,  # unit GE
 790        "Dicke": 738.6666666666666,  # unit µm
 791        "Emodul": 807.9225728004443,  # unit MPa
 792        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 793        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 794        # Quality Labels
 795        "Ausformung": 1,
 796        "Kaltverfo": 3,
 797        # Training Label
 798        "Temp": 340,
 799        "Zeit": 8,
 800        "Druck": 6,
 801    },
 802    {
 803        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 804        "Massenanteile": [0.5, 0.5],  # unit g/g
 805        "Flächenanteilmodifiziert": 0,  # unit %
 806        "Geometrie": "Quader",  # unit: list of types
 807        "Kopfraumatmosphäre": None,  # unit list of (pa)
 808        "Masse": None,  # unit g
 809        "Verpackungstyp": "Folie",  # type
 810        "CAD": None,  # link to CAD file
 811        "RauheitRa": 0.08666666666666667,  # unit µm
 812        "RauheitRz": 0.924,  # unit µm
 813        "Trübung": 216.1,  # unit HLog
 814        "Glanz": 36.7,  # unit GE
 815        "Dicke": 738.6666666666666,  # unit µm
 816        "Emodul": 807.9225728004443,  # unit MPa
 817        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 818        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 819        # Quality Labels
 820        "Ausformung": 1,
 821        "Kaltverfo": 3,
 822        # Training Label
 823        "Temp": 340,
 824        "Zeit": 12,
 825        "Druck": 1,
 826    },
 827    {
 828        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 829        "Massenanteile": [0.5, 0.5],  # unit g/g
 830        "Flächenanteilmodifiziert": 0,  # unit %
 831        "Geometrie": "Quader",  # unit: list of types
 832        "Kopfraumatmosphäre": None,  # unit list of (pa)
 833        "Masse": None,  # unit g
 834        "Verpackungstyp": "Folie",  # type
 835        "CAD": None,  # link to CAD file
 836        "RauheitRa": 0.08666666666666667,  # unit µm
 837        "RauheitRz": 0.924,  # unit µm
 838        "Trübung": 216.1,  # unit HLog
 839        "Glanz": 36.7,  # unit GE
 840        "Dicke": 738.6666666666666,  # unit µm
 841        "Emodul": 807.9225728004443,  # unit MPa
 842        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 843        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 844        # Quality Labels
 845        "Ausformung": 2,
 846        "Kaltverfo": 1,
 847        # Training Label
 848        "Temp": 340,
 849        "Zeit": 20,
 850        "Druck": 2.67,
 851    },
 852    {
 853        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 854        "Massenanteile": [0.5, 0.5],  # unit g/g
 855        "Flächenanteilmodifiziert": 0,  # unit %
 856        "Geometrie": "Quader",  # unit: list of types
 857        "Kopfraumatmosphäre": None,  # unit list of (pa)
 858        "Masse": None,  # unit g
 859        "Verpackungstyp": "Folie",  # type
 860        "CAD": None,  # link to CAD file
 861        "RauheitRa": 0.08666666666666667,  # unit µm
 862        "RauheitRz": 0.924,  # unit µm
 863        "Trübung": 216.1,  # unit HLog
 864        "Glanz": 36.7,  # unit GE
 865        "Dicke": 738.6666666666666,  # unit µm
 866        "Emodul": 807.9225728004443,  # unit MPa
 867        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 868        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 869        # Quality Labels
 870        "Ausformung": 3,
 871        "Kaltverfo": 1,
 872        # Training Label
 873        "Temp": 340,
 874        "Zeit": 32,
 875        "Druck": 4.33,
 876    },
 877    {
 878        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
 879        "Massenanteile": [0.5, 0.5],  # unit g/g
 880        "Flächenanteilmodifiziert": 0,  # unit %
 881        "Geometrie": "Quader",  # unit: list of types
 882        "Kopfraumatmosphäre": None,  # unit list of (pa)
 883        "Masse": None,  # unit g
 884        "Verpackungstyp": "Folie",  # type
 885        "CAD": None,  # link to CAD file
 886        "RauheitRa": 0.08666666666666667,  # unit µm
 887        "RauheitRz": 0.924,  # unit µm
 888        "Trübung": 216.1,  # unit HLog
 889        "Glanz": 36.7,  # unit GE
 890        "Dicke": 738.6666666666666,  # unit µm
 891        "Emodul": 807.9225728004443,  # unit MPa
 892        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
 893        "MaximaleLängenänderung": 14.57795412214027,  # unit %
 894        # Quality Labels
 895        "Ausformung": 2,
 896        "Kaltverfo": 1,
 897        # Training Label
 898        "Temp": 380,
 899        "Zeit": 16,
 900        "Druck": 4.33,
 901    },
 902{
 903        "ListeKomponenten": ["K000055", "K000057"],
 904        "Massenanteile": [0.5, 0.5],
 905        "Flächenanteilmodifiziert": 0,
 906        "Geometrie": "Quader",
 907        "Kopfraumatmosphäre": None,
 908        "Masse": None,
 909        "Verpackungstyp": "Folie",
 910        "CAD": None,
 911        "RauheitRa": 0.08666666666666667,
 912        "RauheitRz": 0.924,
 913        "Trübung": 216.1,
 914        "Glanz": 36.7,
 915        "Dicke": 738.6666666666666,
 916        "Emodul": 807.9225728004443,
 917        "MaximaleZugspannung": 33.22942107172407,
 918        "MaximaleLängenänderung": 14.57795412214027,
 919        "Ausformung": 3,
 920        "Kaltverfo": 1,
 921        "Temp": 380,
 922        "Zeit": 20,
 923        "Druck": 6,
 924    },
 925    {
 926        "ListeKomponenten": ["K000055", "K000057"],
 927        "Massenanteile": [0.5, 0.5],
 928        "Flächenanteilmodifiziert": 0,
 929        "Geometrie": "Quader",
 930        "Kopfraumatmosphäre": None,
 931        "Masse": None,
 932        "Verpackungstyp": "Folie",
 933        "CAD": None,
 934        "RauheitRa": 0.08666666666666667,
 935        "RauheitRz": 0.924,
 936        "Trübung": 216.1,
 937        "Glanz": 36.7,
 938        "Dicke": 738.6666666666666,
 939        "Emodul": 807.9225728004443,
 940        "MaximaleZugspannung": 33.22942107172407,
 941        "MaximaleLängenänderung": 14.57795412214027,
 942        "Ausformung": 3,
 943        "Kaltverfo": 1.5,
 944        "Temp": 380,
 945        "Zeit": 24,
 946        "Druck": 2.67,
 947    },
 948    {
 949        "ListeKomponenten": ["K000055", "K000057"],
 950        "Massenanteile": [0.5, 0.5],
 951        "Flächenanteilmodifiziert": 0,
 952        "Geometrie": "Quader",
 953        "Kopfraumatmosphäre": None,
 954        "Masse": None,
 955        "Verpackungstyp": "Folie",
 956        "CAD": None,
 957        "RauheitRa": 0.08666666666666667,
 958        "RauheitRz": 0.924,
 959        "Trübung": 216.1,
 960        "Glanz": 36.7,
 961        "Dicke": 738.6666666666666,
 962        "Emodul": 807.9225728004443,
 963        "MaximaleZugspannung": 33.22942107172407,
 964        "MaximaleLängenänderung": 14.57795412214027,
 965        "Ausformung": 3,
 966        "Kaltverfo": 1.5,
 967        "Temp": 380,
 968        "Zeit": 28,
 969        "Druck": 2.67,
 970    },
 971    {
 972        "ListeKomponenten": ["K000055", "K000057"],
 973        "Massenanteile": [0.5, 0.5],
 974        "Flächenanteilmodifiziert": 0,
 975        "Geometrie": "Quader",
 976        "Kopfraumatmosphäre": None,
 977        "Masse": None,
 978        "Verpackungstyp": "Folie",
 979        "CAD": None,
 980        "RauheitRa": 0.08666666666666667,
 981        "RauheitRz": 0.924,
 982        "Trübung": 216.1,
 983        "Glanz": 36.7,
 984        "Dicke": 738.6666666666666,
 985        "Emodul": 807.9225728004443,
 986        "MaximaleZugspannung": 33.22942107172407,
 987        "MaximaleLängenänderung": 14.57795412214027,
 988        "Ausformung": 3,
 989        "Kaltverfo": 1,
 990        "Temp": 420,
 991        "Zeit": 16,
 992        "Druck": 2.67,
 993    },
 994    {
 995        "ListeKomponenten": ["K000055", "K000057"],
 996        "Massenanteile": [0.5, 0.5],
 997        "Flächenanteilmodifiziert": 0,
 998        "Geometrie": "Quader",
 999        "Kopfraumatmosphäre": None,
1000        "Masse": None,
1001        "Verpackungstyp": "Folie",
1002        "CAD": None,
1003        "RauheitRa": 0.08666666666666667,
1004        "RauheitRz": 0.924,
1005        "Trübung": 216.1,
1006        "Glanz": 36.7,
1007        "Dicke": 738.6666666666666,
1008        "Emodul": 807.9225728004443,
1009        "MaximaleZugspannung": 33.22942107172407,
1010        "MaximaleLängenänderung": 14.57795412214027,
1011        "Ausformung": 4,
1012        "Kaltverfo": 3,
1013        "Temp": 420,
1014        "Zeit": 28,
1015        "Druck": 4.33,
1016    },
1017    {
1018        "ListeKomponenten": ["K000055", "K000057"],
1019        "Massenanteile": [0.5, 0.5],
1020        "Flächenanteilmodifiziert": 0,
1021        "Geometrie": "Quader",
1022        "Kopfraumatmosphäre": None,
1023        "Masse": None,
1024        "Verpackungstyp": "Folie",
1025        "CAD": None,
1026        "RauheitRa": 0.08666666666666667,
1027        "RauheitRz": 0.924,
1028        "Trübung": 216.1,
1029        "Glanz": 36.7,
1030        "Dicke": 738.6666666666666,
1031        "Emodul": 807.9225728004443,
1032        "MaximaleZugspannung": 33.22942107172407,
1033        "MaximaleLängenänderung": 14.57795412214027,
1034        "Ausformung": 3,
1035        "Kaltverfo": 3,
1036        "Temp": 420,
1037        "Zeit": 32,
1038        "Druck": 1,
1039    },
1040    {
1041        "ListeKomponenten": ["K000055", "K000057"],
1042        "Massenanteile": [0.5, 0.5],
1043        "Flächenanteilmodifiziert": 0,
1044        "Geometrie": "Quader",
1045        "Kopfraumatmosphäre": None,
1046        "Masse": None,
1047        "Verpackungstyp": "Folie",
1048        "CAD": None,
1049        "RauheitRa": 0.08666666666666667,
1050        "RauheitRz": 0.924,
1051        "Trübung": 216.1,
1052        "Glanz": 36.7,
1053        "Dicke": 738.6666666666666,
1054        "Emodul": 807.9225728004443,
1055        "MaximaleZugspannung": 33.22942107172407,
1056        "MaximaleLängenänderung": 14.57795412214027,
1057        "Ausformung": 4,
1058        "Kaltverfo": 3,
1059        "Temp": 460,
1060        "Zeit": 24,
1061        "Druck": 4.33,
1062    },
1063    {
1064        "ListeKomponenten": ["K000055", "K000057"],
1065        "Massenanteile": [0.5, 0.5],
1066        "Flächenanteilmodifiziert": 0,
1067        "Geometrie": "Quader",
1068        "Kopfraumatmosphäre": None,
1069        "Masse": None,
1070        "Verpackungstyp": "Folie",
1071        "CAD": None,
1072        "RauheitRa": 0.08666666666666667,
1073        "RauheitRz": 0.924,
1074        "Trübung": 216.1,
1075        "Glanz": 36.7,
1076        "Dicke": 738.6666666666666,
1077        "Emodul": 807.9225728004443,
1078        "MaximaleZugspannung": 33.22942107172407,
1079        "MaximaleLängenänderung": 14.57795412214027,
1080        "Ausformung": 3,
1081        "Kaltverfo": 3,
1082        "Temp": 460,
1083        "Zeit": 28,
1084        "Druck": 1,
1085    },
1086    {
1087        "ListeKomponenten": ["K000055", "K000057"],
1088        "Massenanteile": [0.5, 0.5],
1089        "Flächenanteilmodifiziert": 0,
1090        "Geometrie": "Quader",
1091        "Kopfraumatmosphäre": None,
1092        "Masse": None,
1093        "Verpackungstyp": "Folie",
1094        "CAD": None,
1095        "RauheitRa": 0.08666666666666667,
1096        "RauheitRz": 0.924,
1097        "Trübung": 216.1,
1098        "Glanz": 36.7,
1099        "Dicke": 738.6666666666666,
1100        "Emodul": 807.9225728004443,
1101        "MaximaleZugspannung": 33.22942107172407,
1102        "MaximaleLängenänderung": 14.57795412214027,
1103        "Ausformung": 5,
1104        "Kaltverfo": 3,
1105        "Temp": 460,
1106        "Zeit": 36,
1107        "Druck": 2.67,
1108    },
1109    {
1110        "ListeKomponenten": ["K000055", "K000057"],
1111        "Massenanteile": [0.5, 0.5],
1112        "Flächenanteilmodifiziert": 0,
1113        "Geometrie": "Quader",
1114        "Kopfraumatmosphäre": None,
1115        "Masse": None,
1116        "Verpackungstyp": "Folie",
1117        "CAD": None,
1118        "RauheitRa": 0.08666666666666667,
1119        "RauheitRz": 0.924,
1120        "Trübung": 216.1,
1121        "Glanz": 36.7,
1122        "Dicke": 738.6666666666666,
1123        "Emodul": 807.9225728004443,
1124        "MaximaleZugspannung": 33.22942107172407,
1125        "MaximaleLängenänderung": 14.57795412214027,
1126        "Ausformung": 5,
1127        "Kaltverfo": 3,
1128        "Temp": 460,
1129        "Zeit": 40,
1130        "Druck": 6,
1131    },
1132{
1133        "ListeKomponenten": ["K000055", "K000057"],
1134        "Massenanteile": [0.5, 0.5],
1135        "Flächenanteilmodifiziert": 0,
1136        "Geometrie": "Quader",
1137        "Kopfraumatmosphäre": None,
1138        "Masse": None,
1139        "Verpackungstyp": "Folie",
1140        "CAD": None,
1141        "RauheitRa": 0.08666666666666667,
1142        "RauheitRz": 0.924,
1143        "Trübung": 216.1,
1144        "Glanz": 36.7,
1145        "Dicke": 738.6666666666666,
1146        "Emodul": 807.9225728004443,
1147        "MaximaleZugspannung": 33.22942107172407,
1148        "MaximaleLängenänderung": 14.57795412214027,
1149        "Ausformung": 1,
1150        "Kaltverfo": 3,
1151        "Temp": 500,
1152        "Zeit": 8,
1153        "Druck": 1,
1154    },
1155    {
1156        "ListeKomponenten": ["K000055", "K000057"],
1157        "Massenanteile": [0.5, 0.5],
1158        "Flächenanteilmodifiziert": 0,
1159        "Geometrie": "Quader",
1160        "Kopfraumatmosphäre": None,
1161        "Masse": None,
1162        "Verpackungstyp": "Folie",
1163        "CAD": None,
1164        "RauheitRa": 0.08666666666666667,
1165        "RauheitRz": 0.924,
1166        "Trübung": 216.1,
1167        "Glanz": 36.7,
1168        "Dicke": 738.6666666666666,
1169        "Emodul": 807.9225728004443,
1170        "MaximaleZugspannung": 33.22942107172407,
1171        "MaximaleLängenänderung": 14.57795412214027,
1172        "Ausformung": 3,
1173        "Kaltverfo": 1,
1174        "Temp": 500,
1175        "Zeit": 12,
1176        "Druck": 6,
1177    },
1178    {
1179        "ListeKomponenten": ["K000055", "K000057"],
1180        "Massenanteile": [0.5, 0.5],
1181        "Flächenanteilmodifiziert": 0,
1182        "Geometrie": "Quader",
1183        "Kopfraumatmosphäre": None,
1184        "Masse": None,
1185        "Verpackungstyp": "Folie",
1186        "CAD": None,
1187        "RauheitRa": 0.08666666666666667,
1188        "RauheitRz": 0.924,
1189        "Trübung": 216.1,
1190        "Glanz": 36.7,
1191        "Dicke": 738.6666666666666,
1192        "Emodul": 807.9225728004443,
1193        "MaximaleZugspannung": 33.22942107172407,
1194        "MaximaleLängenänderung": 14.57795412214027,
1195        "Ausformung": 5,
1196        "Kaltverfo": 3,
1197        "Temp": 500,
1198        "Zeit": 32,
1199        "Druck": 2.67,
1200    },
1201    {
1202        "ListeKomponenten": ["K000055", "K000057"],
1203        "Massenanteile": [0.5, 0.5],
1204        "Flächenanteilmodifiziert": 0,
1205        "Geometrie": "Quader",
1206        "Kopfraumatmosphäre": None,
1207        "Masse": None,
1208        "Verpackungstyp": "Folie",
1209        "CAD": None,
1210        "RauheitRa": 0.08666666666666667,
1211        "RauheitRz": 0.924,
1212        "Trübung": 216.1,
1213        "Glanz": 36.7,
1214        "Dicke": 738.6666666666666,
1215        "Emodul": 807.9225728004443,
1216        "MaximaleZugspannung": 33.22942107172407,
1217        "MaximaleLängenänderung": 14.57795412214027,
1218        "Ausformung": 6,
1219        "Kaltverfo": 3,
1220        "Temp": 500,
1221        "Zeit": 36,
1222        "Druck": 6,
1223    },
1224    {
1225        "ListeKomponenten": ["K000055", "K000057"],
1226        "Massenanteile": [0.5, 0.5],
1227        "Flächenanteilmodifiziert": 0,
1228        "Geometrie": "Quader",
1229        "Kopfraumatmosphäre": None,
1230        "Masse": None,
1231        "Verpackungstyp": "Folie",
1232        "CAD": None,
1233        "RauheitRa": 0.08666666666666667,
1234        "RauheitRz": 0.924,
1235        "Trübung": 216.1,
1236        "Glanz": 36.7,
1237        "Dicke": 738.6666666666666,
1238        "Emodul": 807.9225728004443,
1239        "MaximaleZugspannung": 33.22942107172407,
1240        "MaximaleLängenänderung": 14.57795412214027,
1241        "Ausformung": 6,
1242        "Kaltverfo": 3,
1243        "Temp": 500,
1244        "Zeit": 40,
1245        "Druck": 1,
1246    },
1247]
1248
1249
1250still_to_label = [
1251{
1252        # FolieVP31
1253        "ListeKomponenten": ["K000055", "K000035"],  # id or material name
1254        "Massenanteile": [0.75, 0.25],  # unit g/g
1255        "Flächenanteilmodifiziert": 0,  # unit %
1256        "Geometrie": "Quader",  # unit: list of types
1257        "Kopfraumatmosphäre": None,  # unit list of (pa)
1258        "Masse": None,  # unit g
1259        "Verpackungstyp": "Folie",  # type
1260        "CAD": None,  # link to CAD file
1261        "RauheitRa": 0.06066666666666667,  # unit µm
1262        "RauheitRz": 0.39666666666666667,  # unit µm
1263        "Trübung": 316.2,  # unit HLog
1264        "Glanz": 47.5,  # unit GE
1265        "Dicke": 763.6666666666666,  # unit µm
1266        "Emodul": 905.1809920001602,  # unit MPa
1267        "MaximaleZugspannung": 34.08673567855398,  # unit MPa
1268        "MaximaleLängenänderung": 22.40838699041736,  # unit %
1269    },
1270    {
1271        # FolieVP34
1272        "ListeKomponenten": ["K000055", "K000035"],  # id or material name
1273        "Massenanteile": [0.5, 0.5],  # unit g/g
1274        "Flächenanteilmodifiziert": 0,  # unit %
1275        "Geometrie": "Quader",  # unit: list of types
1276        "Kopfraumatmosphäre": None,  # unit list of (pa)
1277        "Masse": None,  # unit g
1278        "Verpackungstyp": "Folie",  # type
1279        "CAD": None,  # link to CAD file
1280        "RauheitRa": 0.07033333333333334,  # unit µm
1281        "RauheitRz": 0.4706666666666666,  # unit µm
1282        "Trübung": 288.5,  # unit HLog
1283        "Glanz": 44.6,  # unit GE
1284        "Dicke": 741.3333333333334,  # unit µm
1285        "Emodul": 862.4405318776766,  # unit MPa
1286        "MaximaleZugspannung": 32.638708713740044,  # unit MPa
1287        "MaximaleLängenänderung": 22.09911255146518,  # unit %
1288    },
1289    {
1290        # FolieVP37
1291        "ListeKomponenten": ["K000055", "K000035"],  # id or material name
1292        "Massenanteile": [0.25, 0.75],  # unit g/g
1293        "Flächenanteilmodifiziert": 0,  # unit %
1294        "Geometrie": "Quader",  # unit: list of types
1295        "Kopfraumatmosphäre": None,  # unit list of (pa)
1296        "Masse": None,  # unit g
1297        "Verpackungstyp": "Folie",  # type
1298        "CAD": None,  # link to CAD file
1299        "RauheitRa": 0.05933333333333333,  # unit µm
1300        "RauheitRz": 0.49099999999999994,  # unit µm
1301        "Trübung": 285.8,  # unit HLog
1302        "Glanz": 42.8,  # unit GE
1303        "Dicke": 727.6666666666666,  # unit µm
1304        "Emodul": 830.4578404076692,  # unit MPa
1305        "MaximaleZugspannung": 35.47920388323013,  # unit MPa
1306        "MaximaleLängenänderung": 30.130763483086877,  # unit %
1307    },
1308    {
1309        # FolieVP40
1310        "ListeKomponenten": ["K000034"],  # id or material name
1311        "Massenanteile": None,  # unit g/g
1312        "Flächenanteilmodifiziert": 0,  # unit %
1313        "Geometrie": "Quader",  # unit: list of types
1314        "Kopfraumatmosphäre": None,  # unit list of (pa)
1315        "Masse": None,  # unit g
1316        "Verpackungstyp": "Folie",  # type
1317        "CAD": None,  # link to CAD file
1318        "RauheitRa": 0.418,  # unit µm
1319        "RauheitRz": 2.2176666666666667,  # unit µm
1320        "Trübung": 218.6,  # unit HLog
1321        "Glanz": 45.7,  # unit GE
1322        "Dicke": 771.3333333333334,  # unit µm
1323        "Emodul": 800.0150141283799,  # unit MPa
1324        "MaximaleZugspannung": 36.06917056648607,  # unit MPa
1325        "MaximaleLängenänderung": 75.62994222943517,  # unit %
1326    },
1327    {
1328        # FolieVP43
1329        "ListeKomponenten": ["K000055", "K000034"],  # id or material name
1330        "Massenanteile": [0.75, 0.25],  # unit g/g
1331        "Flächenanteilmodifiziert": 0,  # unit %
1332        "Geometrie": "Quader",  # unit: list of types
1333        "Kopfraumatmosphäre": None,  # unit list of (pa)
1334        "Masse": None,  # unit g
1335        "Verpackungstyp": "Folie",  # type
1336        "CAD": None,  # link to CAD file
1337        "RauheitRa": 0.391,  # unit µm
1338        "RauheitRz": 1.9623333333333335,  # unit µm
1339        "Trübung": 330.9,  # unit HLog
1340        "Glanz": 57.6,  # unit GE
1341        "Dicke": 780.3333333333334,  # unit µm
1342        "Emodul": 906.406373403136,  # unit MPa
1343        "MaximaleZugspannung": 39.022909771201924,  # unit MPa
1344        "MaximaleLängenänderung": 28.280285376164112,  # unit %
1345    },
1346    {
1347        # FolieVP46
1348        "ListeKomponenten": ["K000055", "K000034"],  # id or material name
1349        "Massenanteile": [0.5, 0.5],  # unit g/g
1350        "Flächenanteilmodifiziert": 0,  # unit %
1351        "Geometrie": "Quader",  # unit: list of types
1352        "Kopfraumatmosphäre": None,  # unit list of (pa)
1353        "Masse": None,  # unit g
1354        "Verpackungstyp": "Folie",  # type
1355        "CAD": None,  # link to CAD file
1356        "RauheitRa": 0.6589999999999999,  # unit µm
1357        "RauheitRz": 2.9713333333333334,  # unit µm
1358        "Trübung": 393.1,  # unit HLog
1359        "Glanz": 55.6,  # unit GE
1360        "Dicke": 773.6666666666666,  # unit µm
1361        "Emodul": 902.7027698929187,  # unit MPa
1362        "MaximaleZugspannung": 38.536211147405176,  # unit MPa
1363        "MaximaleLängenänderung": 29.513811534791216,  # unit %
1364    },
1365    {
1366        # FolieVP49
1367        "ListeKomponenten": ["K000055", "K000034"],  # id or material name
1368        "Massenanteile": [0.25, 0.75],  # unit g/g
1369        "Flächenanteilmodifiziert": 0,  # unit %
1370        "Geometrie": "Quader",  # unit: list of types
1371        "Kopfraumatmosphäre": None,  # unit list of (pa)
1372        "Masse": None,  # unit g
1373        "Verpackungstyp": "Folie",  # type
1374        "CAD": None,  # link to CAD file
1375        "RauheitRa": 0.5883333333333334,  # unit µm
1376        "RauheitRz": 2.4286666666666665,  # unit µm
1377        "Trübung": 331.6,  # unit HLog
1378        "Glanz": 61.1,  # unit GE
1379        "Dicke": 753,  # unit µm
1380        "Emodul": 858.5424812042752,  # unit MPa
1381        "MaximaleZugspannung": 37.22743504799802,  # unit MPa
1382        "MaximaleLängenänderung": 48.33956419666273,  # unit %
1383    },
1384    {  # FolieVP55
1385        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1386        "Massenanteile": [0.75, 0.25],  # unit g/g
1387        "Flächenanteilmodifiziert": 0,  # unit %
1388        "Geometrie": "Quader",  # unit: list of types
1389        "Kopfraumatmosphäre": None,  # unit list of (pa)
1390        "Masse": None,  # unit g
1391        "Verpackungstyp": "Folie",  # type
1392        "CAD": None,  # link to CAD file
1393        "RauheitRa": 0.08966666666666667,  # unit µm
1394        "RauheitRz": 0.7366666666666667,  # unit µm
1395        "Trübung": 176.6,  # unit HLog
1396        "Glanz": 39,  # unit GE
1397        "Dicke": 769.6666666666666,  # unit µm
1398        "Emodul": 878.7979886112262,  # unit MPa
1399        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1400        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1401    },
1402    {  # FolieVP58
1403        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1404        "Massenanteile": [0.5, 0.5],  # unit g/g
1405        "Flächenanteilmodifiziert": 0,  # unit %
1406        "Geometrie": "Quader",  # unit: list of types
1407        "Kopfraumatmosphäre": None,  # unit list of (pa)
1408        "Masse": None,  # unit g
1409        "Verpackungstyp": "Folie",  # type
1410        "CAD": None,  # link to CAD file
1411        "RauheitRa": 0.08666666666666667,  # unit µm
1412        "RauheitRz": 0.924,  # unit µm
1413        "Trübung": 216.1,  # unit HLog
1414        "Glanz": 36.7,  # unit GE
1415        "Dicke": 738.6666666666666,  # unit µm
1416        "Emodul": 807.9225728004443,  # unit MPa
1417        "MaximaleZugspannung": 33.22942107172407,  # unit MPa
1418        "MaximaleLängenänderung": 14.57795412214027,  # unit %
1419    },
1420    {  # FolieVP61
1421        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1422        "Massenanteile": [0.25, 0.75],  # unit g/g
1423        "Flächenanteilmodifiziert": 0,  # unit %
1424        "Geometrie": "Quader",  # unit: list of types
1425        "Kopfraumatmosphäre": None,  # unit list of (pa)
1426        "Masse": None,  # unit g
1427        "Verpackungstyp": "Folie",  # type
1428        "CAD": None,  # link to CAD file
1429        "RauheitRa": 0.11,  # unit µm
1430        "RauheitRz": 1.618,  # unit µm
1431        "Trübung": 194.2,  # unit HLog
1432        "Glanz": 27,  # unit GE
1433        "Dicke": 776.67,  # unit µm
1434        "Emodul": 772.8758558995492,  # unit MPa
1435        "MaximaleZugspannung": 31.757451288003505,  # unit MPa
1436        "MaximaleLängenänderung": 16.85314782150547,  # unit %
1437    },
1438    {
1439        # FolieVP64
1440        "ListeKomponenten": ["K000057"],  # id or material name
1441        "Massenanteile": None,  # unit g/g
1442        "Flächenanteilmodifiziert": 0,  # unit %
1443        "Geometrie": "Quader",  # unit: list of types
1444        "Kopfraumatmosphäre": None,  # unit list of (pa)
1445        "Masse": None,  # unit g
1446        "Verpackungstyp": "Folie",  # type
1447        "CAD": None,  # link to CAD file
1448        "RauheitRa": 0.1,  # unit µm
1449        "RauheitRz": 1.0246666666666668,  # unit µm
1450        "Trübung": 221.3,  # unit HLog
1451        "Glanz": 47.7,  # unit GE
1452        "Dicke": 761,  # unit µm
1453        "Emodul": 775.2626646454261,  # unit MPa
1454        "MaximaleZugspannung": 29.682633925969455,  # unit MPa
1455        "MaximaleLängenänderung": 20.45298159043185,  # unit %
1456    },
1457    {
1458        # FolieVP67
1459        "ListeKomponenten": ["K000055", "K000141"],  # id or material name
1460        "Massenanteile": [0.75, 0.25],  # unit g/g
1461        "Flächenanteilmodifiziert": 0,  # unit %
1462        "Geometrie": "Quader",  # unit: list of types
1463        "Kopfraumatmosphäre": None,  # unit list of (pa)
1464        "Masse": None,  # unit g
1465        "Verpackungstyp": "Folie",  # type
1466        "CAD": None,  # link to CAD file
1467        "RauheitRa": 0.083,  # unit µm
1468        "RauheitRz": 0.6563333333333333,  # unit µm
1469        "Trübung": 231.2,  # unit HLog
1470        "Glanz": 51.4,  # unit GE
1471        "Dicke": 761.3333333333334,  # unit µm
1472        "Emodul": 891.6960296261858,  # unit MPa
1473        "MaximaleZugspannung": 37.30179776615716,  # unit MPa
1474        "MaximaleLängenänderung": 16.51275729561768,  # unit %
1475    },
1476    {
1477        # FolieVP70
1478        "ListeKomponenten": ["K000055", "K000141"],  # id or material name
1479        "Massenanteile": [0.5, 0.5],  # unit g/g
1480        "Flächenanteilmodifiziert": 0,  # unit %
1481        "Geometrie": "Quader",  # unit: list of types
1482        "Kopfraumatmosphäre": None,  # unit list of (pa)
1483        "Masse": None,  # unit g
1484        "Verpackungstyp": "Folie",  # type
1485        "CAD": None,  # link to CAD file
1486        "RauheitRa": 0.1,  # unit µm
1487        "RauheitRz": 0.9346666666666666,  # unit µm
1488        "Trübung": 159,  # unit HLog
1489        "Glanz": 48.8,  # unit GE
1490        "Dicke": 763.6666666666666,  # unit µm
1491        "Emodul": 824.6994327383176,  # unit MPa
1492        "MaximaleZugspannung": 35.17817424546557,  # unit MPa
1493        "MaximaleLängenänderung": 16.062113808037456,  # unit %
1494    },
1495    {
1496        # FolieVP73
1497        "ListeKomponenten": ["K000055", "K000141"],  # id or material name
1498        "Massenanteile": [0.25, 0.75],  # unit g/g
1499        "Flächenanteilmodifiziert": 0,  # unit %
1500        "Geometrie": "Quader",  # unit: list of types
1501        "Kopfraumatmosphäre": None,  # unit list of (pa)
1502        "Masse": None,  # unit g
1503        "Verpackungstyp": "Folie",  # type
1504        "CAD": None,  # link to CAD file
1505        "RauheitRa": 0.10566666666666667,  # unit µm
1506        "RauheitRz": 1.2536666666666667,  # unit µm
1507        "Trübung": 148.6,  # unit HLog
1508        "Glanz": 48.5,  # unit GE
1509        "Dicke": 789.3333333333334,  # unit µm
1510        "Emodul": 776.4117366408622,  # unit MPa
1511        "MaximaleZugspannung": 32.29055577637772,  # unit MPa
1512        "MaximaleLängenänderung": 12.61880576560562,  # unit %
1513    },
1514    {  # FolieVP76
1515        "ListeKomponenten": ["K000141"],  # id or material name
1516        "Massenanteile": None,  # unit g/g
1517        "Flächenanteilmodifiziert": 0,  # unit %
1518        "Geometrie": "Quader",  # unit: list of types
1519        "Kopfraumatmosphäre": None,  # unit list of (pa)
1520        "Masse": None,  # unit g
1521        "Verpackungstyp": "Folie",  # type
1522        "CAD": None,  # link to CAD file
1523        "RauheitRa": 0.06933333333333334,  # unit µm
1524        "RauheitRz": 0.9633333333333334,  # unit µm
1525        "Trübung": 63.9,  # unit HLog
1526        "Glanz": 67,  # unit GE
1527        "Dicke": 794.6666666666666,  # unit µm
1528        "Emodul": 758.2831428949372,  # unit MPa
1529        "MaximaleZugspannung": 31.672337664835965,  # unit MPa
1530        "MaximaleLängenänderung": 14.173149052566636,  # unit %
1531    },
1532{
1533        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1534        "Massenanteile": [0.75, 0.25],  # unit g/g
1535        "Flächenanteilmodifiziert": 0,  # unit %
1536        "Geometrie": "Quader",  # unit: list of types
1537        "Kopfraumatmosphäre": None,  # unit list of (pa)
1538        "Masse": None,  # unit g
1539        "Verpackungstyp": "Folie",  # type
1540        "CAD": None,  # link to CAD file
1541        "RauheitRa": 0.08966666666666667,  # unit µm
1542        "RauheitRz": 0.7366666666666667,  # unit µm
1543        "Trübung": 176.6,  # unit HLog
1544        "Glanz": 39,  # unit GE
1545        "Dicke": 769.6666666666666,  # unit µm
1546        "Emodul": 878.7979886112262,  # unit MPa
1547        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1548        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1549        # Quality Labels
1550        "Ausformung": 1,
1551        "Kaltverfo": 2,
1552        # Training Label
1553        "Temp": 300,
1554        "Zeit": 8,
1555        "Druck": 1,
1556    },
1557    {
1558        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1559        "Massenanteile": [0.75, 0.25],  # unit g/g
1560        "Flächenanteilmodifiziert": 0,  # unit %
1561        "Geometrie": "Quader",  # unit: list of types
1562        "Kopfraumatmosphäre": None,  # unit list of (pa)
1563        "Masse": None,  # unit g
1564        "Verpackungstyp": "Folie",  # type
1565        "CAD": None,  # link to CAD file
1566        "RauheitRa": 0.08966666666666667,  # unit µm
1567        "RauheitRz": 0.7366666666666667,  # unit µm
1568        "Trübung": 176.6,  # unit HLog
1569        "Glanz": 39,  # unit GE
1570        "Dicke": 769.6666666666666,  # unit µm
1571        "Emodul": 878.7979886112262,  # unit MPa
1572        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1573        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1574        # Quality Labels
1575        "Ausformung": 2,
1576        "Kaltverfo": 2,
1577        # Training Label
1578        "Temp": 300,
1579        "Zeit": 12,
1580        "Druck": 4.33,
1581    },
1582    {
1583        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1584        "Massenanteile": [0.75, 0.25],  # unit g/g
1585        "Flächenanteilmodifiziert": 0,  # unit %
1586        "Geometrie": "Quader",  # unit: list of types
1587        "Kopfraumatmosphäre": None,  # unit list of (pa)
1588        "Masse": None,  # unit g
1589        "Verpackungstyp": "Folie",  # type
1590        "CAD": None,  # link to CAD file
1591        "RauheitRa": 0.08966666666666667,  # unit µm
1592        "RauheitRz": 0.7366666666666667,  # unit µm
1593        "Trübung": 176.6,  # unit HLog
1594        "Glanz": 39,  # unit GE
1595        "Dicke": 769.6666666666666,  # unit µm
1596        "Emodul": 878.7979886112262,  # unit MPa
1597        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1598        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1599        # Quality Labels
1600        "Ausformung": 2,
1601        "Kaltverfo": 1,
1602        # Training Label
1603        "Temp": 300,
1604        "Zeit": 16,
1605        "Druck": 6,
1606    },
1607    {
1608        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1609        "Massenanteile": [0.75, 0.25],  # unit g/g
1610        "Flächenanteilmodifiziert": 0,  # unit %
1611        "Geometrie": "Quader",  # unit: list of types
1612        "Kopfraumatmosphäre": None,  # unit list of (pa)
1613        "Masse": None,  # unit g
1614        "Verpackungstyp": "Folie",  # type
1615        "CAD": None,  # link to CAD file
1616        "RauheitRa": 0.08966666666666667,  # unit µm
1617        "RauheitRz": 0.7366666666666667,  # unit µm
1618        "Trübung": 176.6,  # unit HLog
1619        "Glanz": 39,  # unit GE
1620        "Dicke": 769.6666666666666,  # unit µm
1621        "Emodul": 878.7979886112262,  # unit MPa
1622        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1623        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1624        # Quality Labels
1625        "Ausformung": 3,
1626        "Kaltverfo": 3,
1627        # Training Label
1628        "Temp": 300,
1629        "Zeit": 36,
1630        "Druck": 6,
1631    },
1632    {
1633        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1634        "Massenanteile": [0.75, 0.25],  # unit g/g
1635        "Flächenanteilmodifiziert": 0,  # unit %
1636        "Geometrie": "Quader",  # unit: list of types
1637        "Kopfraumatmosphäre": None,  # unit list of (pa)
1638        "Masse": None,  # unit g
1639        "Verpackungstyp": "Folie",  # type
1640        "CAD": None,  # link to CAD file
1641        "RauheitRa": 0.08966666666666667,  # unit µm
1642        "RauheitRz": 0.7366666666666667,  # unit µm
1643        "Trübung": 176.6,  # unit HLog
1644        "Glanz": 39,  # unit GE
1645        "Dicke": 769.6666666666666,  # unit µm
1646        "Emodul": 878.7979886112262,  # unit MPa
1647        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1648        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1649        # Quality Labels
1650        "Ausformung": 1,
1651        "Kaltverfo": 2,
1652        # Training Label
1653        "Temp": 300,
1654        "Zeit": 40,
1655        "Druck": 1,
1656    },
1657    {
1658        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1659        "Massenanteile": [0.75, 0.25],  # unit g/g
1660        "Flächenanteilmodifiziert": 0,  # unit %
1661        "Geometrie": "Quader",  # unit: list of types
1662        "Kopfraumatmosphäre": None,  # unit list of (pa)
1663        "Masse": None,  # unit g
1664        "Verpackungstyp": "Folie",  # type
1665        "CAD": None,  # link to CAD file
1666        "RauheitRa": 0.08966666666666667,  # unit µm
1667        "RauheitRz": 0.7366666666666667,  # unit µm
1668        "Trübung": 176.6,  # unit HLog
1669        "Glanz": 39,  # unit GE
1670        "Dicke": 769.6666666666666,  # unit µm
1671        "Emodul": 878.7979886112262,  # unit MPa
1672        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1673        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1674        # Quality Labels
1675        "Ausformung": 2,
1676        "Kaltverfo": 3,
1677        # Training Label
1678        "Temp": 340,
1679        "Zeit": 8,
1680        "Druck": 6,
1681    },
1682    {
1683        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1684        "Massenanteile": [0.75, 0.25],  # unit g/g
1685        "Flächenanteilmodifiziert": 0,  # unit %
1686        "Geometrie": "Quader",  # unit: list of types
1687        "Kopfraumatmosphäre": None,  # unit list of (pa)
1688        "Masse": None,  # unit g
1689        "Verpackungstyp": "Folie",  # type
1690        "CAD": None,  # link to CAD file
1691        "RauheitRa": 0.08966666666666667,  # unit µm
1692        "RauheitRz": 0.7366666666666667,  # unit µm
1693        "Trübung": 176.6,  # unit HLog
1694        "Glanz": 39,  # unit GE
1695        "Dicke": 769.6666666666666,  # unit µm
1696        "Emodul": 878.7979886112262,  # unit MPa
1697        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1698        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1699        # Quality Labels
1700        "Ausformung": 1,
1701        "Kaltverfo": 3,
1702        # Training Label
1703        "Temp": 340,
1704        "Zeit": 12,
1705        "Druck": 1,
1706    },
1707    {
1708        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1709        "Massenanteile": [0.75, 0.25],  # unit g/g
1710        "Flächenanteilmodifiziert": 0,  # unit %
1711        "Geometrie": "Quader",  # unit: list of types
1712        "Kopfraumatmosphäre": None,  # unit list of (pa)
1713        "Masse": None,  # unit g
1714        "Verpackungstyp": "Folie",  # type
1715        "CAD": None,  # link to CAD file
1716        "RauheitRa": 0.08966666666666667,  # unit µm
1717        "RauheitRz": 0.7366666666666667,  # unit µm
1718        "Trübung": 176.6,  # unit HLog
1719        "Glanz": 39,  # unit GE
1720        "Dicke": 769.6666666666666,  # unit µm
1721        "Emodul": 878.7979886112262,  # unit MPa
1722        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1723        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1724        # Quality Labels
1725        "Ausformung": 1,
1726        "Kaltverfo": 2,
1727        # Training Label
1728        "Temp": 340,
1729        "Zeit": 20,
1730        "Druck": 2.67,
1731    },
1732    {
1733        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1734        "Massenanteile": [0.75, 0.25],  # unit g/g
1735        "Flächenanteilmodifiziert": 0,  # unit %
1736        "Geometrie": "Quader",  # unit: list of types
1737        "Kopfraumatmosphäre": None,  # unit list of (pa)
1738        "Masse": None,  # unit g
1739        "Verpackungstyp": "Folie",  # type
1740        "CAD": None,  # link to CAD file
1741        "RauheitRa": 0.08966666666666667,  # unit µm
1742        "RauheitRz": 0.7366666666666667,  # unit µm
1743        "Trübung": 176.6,  # unit HLog
1744        "Glanz": 39,  # unit GE
1745        "Dicke": 769.6666666666666,  # unit µm
1746        "Emodul": 878.7979886112262,  # unit MPa
1747        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1748        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1749        # Quality Labels
1750        "Ausformung": 3,
1751        "Kaltverfo": 2,
1752        # Training Label
1753        "Temp": 340,
1754        "Zeit": 32,
1755        "Druck": 4.33,
1756    },
1757    {
1758        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1759        "Massenanteile": [0.75, 0.25],  # unit g/g
1760        "Flächenanteilmodifiziert": 0,  # unit %
1761        "Geometrie": "Quader",  # unit: list of types
1762        "Kopfraumatmosphäre": None,  # unit list of (pa)
1763        "Masse": None,  # unit g
1764        "Verpackungstyp": "Folie",  # type
1765        "CAD": None,  # link to CAD file
1766        "RauheitRa": 0.08966666666666667,  # unit µm
1767        "RauheitRz": 0.7366666666666667,  # unit µm
1768        "Trübung": 176.6,  # unit HLog
1769        "Glanz": 39,  # unit GE
1770        "Dicke": 769.6666666666666,  # unit µm
1771        "Emodul": 878.7979886112262,  # unit MPa
1772        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1773        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1774        # Quality Labels
1775        "Ausformung": 3,
1776        "Kaltverfo": 1.5,
1777        # Training Label
1778        "Temp": 380,
1779        "Zeit": 16,
1780        "Druck": 4.33,
1781    },
1782{
1783        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1784        "Massenanteile": [0.75, 0.25],  # unit g/g
1785        "Flächenanteilmodifiziert": 0,  # unit %
1786        "Geometrie": "Quader",  # unit: list of types
1787        "Kopfraumatmosphäre": None,  # unit list of (pa)
1788        "Masse": None,  # unit g
1789        "Verpackungstyp": "Folie",  # type
1790        "CAD": None,  # link to CAD file
1791        "RauheitRa": 0.08966666666666667,  # unit µm
1792        "RauheitRz": 0.7366666666666667,  # unit µm
1793        "Trübung": 176.6,  # unit HLog
1794        "Glanz": 39,  # unit GE
1795        "Dicke": 769.6666666666666,  # unit µm
1796        "Emodul": 878.7979886112262,  # unit MPa
1797        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1798        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1799        # Quality Labels
1800        "Ausformung": 3,
1801        "Kaltverfo": 1.5,
1802        # Training Label
1803        "Temp": 380,
1804        "Zeit": 20,
1805        "Druck": 6,
1806    },
1807    {
1808        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1809        "Massenanteile": [0.75, 0.25],  # unit g/g
1810        "Flächenanteilmodifiziert": 0,  # unit %
1811        "Geometrie": "Quader",  # unit: list of types
1812        "Kopfraumatmosphäre": None,  # unit list of (pa)
1813        "Masse": None,  # unit g
1814        "Verpackungstyp": "Folie",  # type
1815        "CAD": None,  # link to CAD file
1816        "RauheitRa": 0.08966666666666667,  # unit µm
1817        "RauheitRz": 0.7366666666666667,  # unit µm
1818        "Trübung": 176.6,  # unit HLog
1819        "Glanz": 39,  # unit GE
1820        "Dicke": 769.6666666666666,  # unit µm
1821        "Emodul": 878.7979886112262,  # unit MPa
1822        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1823        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1824        # Quality Labels
1825        "Ausformung": 3,
1826        "Kaltverfo": 2,
1827        # Training Label
1828        "Temp": 380,
1829        "Zeit": 24,
1830        "Druck": 2.67,
1831    },
1832    {
1833        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1834        "Massenanteile": [0.75, 0.25],  # unit g/g
1835        "Flächenanteilmodifiziert": 0,  # unit %
1836        "Geometrie": "Quader",  # unit: list of types
1837        "Kopfraumatmosphäre": None,  # unit list of (pa)
1838        "Masse": None,  # unit g
1839        "Verpackungstyp": "Folie",  # type
1840        "CAD": None,  # link to CAD file
1841        "RauheitRa": 0.08966666666666667,  # unit µm
1842        "RauheitRz": 0.7366666666666667,  # unit µm
1843        "Trübung": 176.6,  # unit HLog
1844        "Glanz": 39,  # unit GE
1845        "Dicke": 769.6666666666666,  # unit µm
1846        "Emodul": 878.7979886112262,  # unit MPa
1847        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1848        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1849        # Quality Labels
1850        "Ausformung": 3,
1851        "Kaltverfo": 2.5,
1852        # Training Label
1853        "Temp": 380,
1854        "Zeit": 28,
1855        "Druck": 2.67,
1856    },
1857    {
1858        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1859        "Massenanteile": [0.75, 0.25],  # unit g/g
1860        "Flächenanteilmodifiziert": 0,  # unit %
1861        "Geometrie": "Quader",  # unit: list of types
1862        "Kopfraumatmosphäre": None,  # unit list of (pa)
1863        "Masse": None,  # unit g
1864        "Verpackungstyp": "Folie",  # type
1865        "CAD": None,  # link to CAD file
1866        "RauheitRa": 0.08966666666666667,  # unit µm
1867        "RauheitRz": 0.7366666666666667,  # unit µm
1868        "Trübung": 176.6,  # unit HLog
1869        "Glanz": 39,  # unit GE
1870        "Dicke": 769.6666666666666,  # unit µm
1871        "Emodul": 878.7979886112262,  # unit MPa
1872        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1873        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1874        # Quality Labels
1875        "Ausformung": 3,
1876        "Kaltverfo": 1.5,
1877        # Training Label
1878        "Temp": 420,
1879        "Zeit": 16,
1880        "Druck": 2.67,
1881    },
1882    {
1883        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1884        "Massenanteile": [0.75, 0.25],  # unit g/g
1885        "Flächenanteilmodifiziert": 0,  # unit %
1886        "Geometrie": "Quader",  # unit: list of types
1887        "Kopfraumatmosphäre": None,  # unit list of (pa)
1888        "Masse": None,  # unit g
1889        "Verpackungstyp": "Folie",  # type
1890        "CAD": None,  # link to CAD file
1891        "RauheitRa": 0.08966666666666667,  # unit µm
1892        "RauheitRz": 0.7366666666666667,  # unit µm
1893        "Trübung": 176.6,  # unit HLog
1894        "Glanz": 39,  # unit GE
1895        "Dicke": 769.6666666666666,  # unit µm
1896        "Emodul": 878.7979886112262,  # unit MPa
1897        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1898        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1899        # Quality Labels
1900        "Ausformung": 4,
1901        "Kaltverfo": 3,
1902        # Training Label
1903        "Temp": 420,
1904        "Zeit": 28,
1905        "Druck": 4.33,
1906    },
1907    {
1908        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1909        "Massenanteile": [0.75, 0.25],  # unit g/g
1910        "Flächenanteilmodifiziert": 0,  # unit %
1911        "Geometrie": "Quader",  # unit: list of types
1912        "Kopfraumatmosphäre": None,  # unit list of (pa)
1913        "Masse": None,  # unit g
1914        "Verpackungstyp": "Folie",  # type
1915        "CAD": None,  # link to CAD file
1916        "RauheitRa": 0.08966666666666667,  # unit µm
1917        "RauheitRz": 0.7366666666666667,  # unit µm
1918        "Trübung": 176.6,  # unit HLog
1919        "Glanz": 39,  # unit GE
1920        "Dicke": 769.6666666666666,  # unit µm
1921        "Emodul": 878.7979886112262,  # unit MPa
1922        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1923        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1924        # Quality Labels
1925        "Ausformung": 3,
1926        "Kaltverfo": 3,
1927        # Training Label
1928        "Temp": 420,
1929        "Zeit": 32,
1930        "Druck": 1,
1931    },
1932    {
1933        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1934        "Massenanteile": [0.75, 0.25],  # unit g/g
1935        "Flächenanteilmodifiziert": 0,  # unit %
1936        "Geometrie": "Quader",  # unit: list of types
1937        "Kopfraumatmosphäre": None,  # unit list of (pa)
1938        "Masse": None,  # unit g
1939        "Verpackungstyp": "Folie",  # type
1940        "CAD": None,  # link to CAD file
1941        "RauheitRa": 0.08966666666666667,  # unit µm
1942        "RauheitRz": 0.7366666666666667,  # unit µm
1943        "Trübung": 176.6,  # unit HLog
1944        "Glanz": 39,  # unit GE
1945        "Dicke": 769.6666666666666,  # unit µm
1946        "Emodul": 878.7979886112262,  # unit MPa
1947        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1948        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1949        # Quality Labels
1950        "Ausformung": 4,
1951        "Kaltverfo": 3,
1952        # Training Label
1953        "Temp": 460,
1954        "Zeit": 24,
1955        "Druck": 4.33,
1956    },
1957    {
1958        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1959        "Massenanteile": [0.75, 0.25],  # unit g/g
1960        "Flächenanteilmodifiziert": 0,  # unit %
1961        "Geometrie": "Quader",  # unit: list of types
1962        "Kopfraumatmosphäre": None,  # unit list of (pa)
1963        "Masse": None,  # unit g
1964        "Verpackungstyp": "Folie",  # type
1965        "CAD": None,  # link to CAD file
1966        "RauheitRa": 0.08966666666666667,  # unit µm
1967        "RauheitRz": 0.7366666666666667,  # unit µm
1968        "Trübung": 176.6,  # unit HLog
1969        "Glanz": 39,  # unit GE
1970        "Dicke": 769.6666666666666,  # unit µm
1971        "Emodul": 878.7979886112262,  # unit MPa
1972        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1973        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1974        # Quality Labels
1975        "Ausformung": 3,
1976        "Kaltverfo": 3,
1977        # Training Label
1978        "Temp": 460,
1979        "Zeit": 28,
1980        "Druck": 1,
1981    },
1982    {
1983        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
1984        "Massenanteile": [0.75, 0.25],  # unit g/g
1985        "Flächenanteilmodifiziert": 0,  # unit %
1986        "Geometrie": "Quader",  # unit: list of types
1987        "Kopfraumatmosphäre": None,  # unit list of (pa)
1988        "Masse": None,  # unit g
1989        "Verpackungstyp": "Folie",  # type
1990        "CAD": None,  # link to CAD file
1991        "RauheitRa": 0.08966666666666667,  # unit µm
1992        "RauheitRz": 0.7366666666666667,  # unit µm
1993        "Trübung": 176.6,  # unit HLog
1994        "Glanz": 39,  # unit GE
1995        "Dicke": 769.6666666666666,  # unit µm
1996        "Emodul": 878.7979886112262,  # unit MPa
1997        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
1998        "MaximaleLängenänderung": 19.73276680651324,  # unit %
1999        # Quality Labels
2000        "Ausformung": 5,
2001        "Kaltverfo": 3,
2002        # Training Label
2003        "Temp": 460,
2004        "Zeit": 36,
2005        "Druck": 2.67,
2006    },
2007    {
2008        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
2009        "Massenanteile": [0.75, 0.25],  # unit g/g
2010        "Flächenanteilmodifiziert": 0,  # unit %
2011        "Geometrie": "Quader",  # unit: list of types
2012        "Kopfraumatmosphäre": None,  # unit list of (pa)
2013        "Masse": None,  # unit g
2014        "Verpackungstyp": "Folie",  # type
2015        "CAD": None,  # link to CAD file
2016        "RauheitRa": 0.08966666666666667,  # unit µm
2017        "RauheitRz": 0.7366666666666667,  # unit µm
2018        "Trübung": 176.6,  # unit HLog
2019        "Glanz": 39,  # unit GE
2020        "Dicke": 769.6666666666666,  # unit µm
2021        "Emodul": 878.7979886112262,  # unit MPa
2022        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
2023        "MaximaleLängenänderung": 19.73276680651324,  # unit %
2024        # Quality Labels
2025        "Ausformung": 5,
2026        "Kaltverfo": 3,
2027        # Training Label
2028        "Temp": 460,
2029        "Zeit": 40,
2030        "Druck": 6,
2031    },
2032{
2033        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
2034        "Massenanteile": [0.75, 0.25],  # unit g/g
2035        "Flächenanteilmodifiziert": 0,  # unit %
2036        "Geometrie": "Quader",  # unit: list of types
2037        "Kopfraumatmosphäre": None,  # unit list of (pa)
2038        "Masse": None,  # unit g
2039        "Verpackungstyp": "Folie",  # type
2040        "CAD": None,  # link to CAD file
2041        "RauheitRa": 0.08966666666666667,  # unit µm
2042        "RauheitRz": 0.7366666666666667,  # unit µm
2043        "Trübung": 176.6,  # unit HLog
2044        "Glanz": 39,  # unit GE
2045        "Dicke": 769.6666666666666,  # unit µm
2046        "Emodul": 878.7979886112262,  # unit MPa
2047        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
2048        "MaximaleLängenänderung": 19.73276680651324,  # unit %
2049        # Quality Labels
2050        "Ausformung": 1,
2051        "Kaltverfo": 3,
2052        # Training Label
2053        "Temp": 500,
2054        "Zeit": 8,
2055        "Druck": 1,
2056    },
2057    {
2058        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
2059        "Massenanteile": [0.75, 0.25],  # unit g/g
2060        "Flächenanteilmodifiziert": 0,  # unit %
2061        "Geometrie": "Quader",  # unit: list of types
2062        "Kopfraumatmosphäre": None,  # unit list of (pa)
2063        "Masse": None,  # unit g
2064        "Verpackungstyp": "Folie",  # type
2065        "CAD": None,  # link to CAD file
2066        "RauheitRa": 0.08966666666666667,  # unit µm
2067        "RauheitRz": 0.7366666666666667,  # unit µm
2068        "Trübung": 176.6,  # unit HLog
2069        "Glanz": 39,  # unit GE
2070        "Dicke": 769.6666666666666,  # unit µm
2071        "Emodul": 878.7979886112262,  # unit MPa
2072        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
2073        "MaximaleLängenänderung": 19.73276680651324,  # unit %
2074        # Quality Labels
2075        "Ausformung": 3,
2076        "Kaltverfo": 1.5,
2077        # Training Label
2078        "Temp": 500,
2079        "Zeit": 12,
2080        "Druck": 6,
2081    },
2082    {
2083        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
2084        "Massenanteile": [0.75, 0.25],  # unit g/g
2085        "Flächenanteilmodifiziert": 0,  # unit %
2086        "Geometrie": "Quader",  # unit: list of types
2087        "Kopfraumatmosphäre": None,  # unit list of (pa)
2088        "Masse": None,  # unit g
2089        "Verpackungstyp": "Folie",  # type
2090        "CAD": None,  # link to CAD file
2091        "RauheitRa": 0.08966666666666667,  # unit µm
2092        "RauheitRz": 0.7366666666666667,  # unit µm
2093        "Trübung": 176.6,  # unit HLog
2094        "Glanz": 39,  # unit GE
2095        "Dicke": 769.6666666666666,  # unit µm
2096        "Emodul": 878.7979886112262,  # unit MPa
2097        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
2098        "MaximaleLängenänderung": 19.73276680651324,  # unit %
2099        # Quality Labels
2100        "Ausformung": 5,
2101        "Kaltverfo": 3,
2102        # Training Label
2103        "Temp": 500,
2104        "Zeit": 32,
2105        "Druck": 2.67,
2106    },
2107    {
2108        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
2109        "Massenanteile": [0.75, 0.25],  # unit g/g
2110        "Flächenanteilmodifiziert": 0,  # unit %
2111        "Geometrie": "Quader",  # unit: list of types
2112        "Kopfraumatmosphäre": None,  # unit list of (pa)
2113        "Masse": None,  # unit g
2114        "Verpackungstyp": "Folie",  # type
2115        "CAD": None,  # link to CAD file
2116        "RauheitRa": 0.08966666666666667,  # unit µm
2117        "RauheitRz": 0.7366666666666667,  # unit µm
2118        "Trübung": 176.6,  # unit HLog
2119        "Glanz": 39,  # unit GE
2120        "Dicke": 769.6666666666666,  # unit µm
2121        "Emodul": 878.7979886112262,  # unit MPa
2122        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
2123        "MaximaleLängenänderung": 19.73276680651324,  # unit %
2124        # Quality Labels
2125        "Ausformung": 6,
2126        "Kaltverfo": 3,
2127        # Training Label
2128        "Temp": 500,
2129        "Zeit": 36,
2130        "Druck": 6,
2131    },
2132    {
2133        "ListeKomponenten": ["K000055", "K000057"],  # id or material name
2134        "Massenanteile": [0.75, 0.25],  # unit g/g
2135        "Flächenanteilmodifiziert": 0,  # unit %
2136        "Geometrie": "Quader",  # unit: list of types
2137        "Kopfraumatmosphäre": None,  # unit list of (pa)
2138        "Masse": None,  # unit g
2139        "Verpackungstyp": "Folie",  # type
2140        "CAD": None,  # link to CAD file
2141        "RauheitRa": 0.08966666666666667,  # unit µm
2142        "RauheitRz": 0.7366666666666667,  # unit µm
2143        "Trübung": 176.6,  # unit HLog
2144        "Glanz": 39,  # unit GE
2145        "Dicke": 769.6666666666666,  # unit µm
2146        "Emodul": 878.7979886112262,  # unit MPa
2147        "MaximaleZugspannung": 37.156951742990245,  # unit MPa
2148        "MaximaleLängenänderung": 19.73276680651324,  # unit %
2149        # Quality Labels
2150        "Ausformung": 6,
2151        "Kaltverfo": 3,
2152        # Training Label
2153        "Temp": 500,
2154        "Zeit": 40,
2155        "Druck": 1,
2156    },
2157]