diff --git a/de.hftstuttgart.buildingphysics.edit/plugin.properties b/de.hftstuttgart.buildingphysics.edit/plugin.properties
index fb06240c276f16d1aa84ce65e71cef0a010a6ccf..5d445501ea0245407e9ba3dc925b6073d3526429 100644
--- a/de.hftstuttgart.buildingphysics.edit/plugin.properties
+++ b/de.hftstuttgart.buildingphysics.edit/plugin.properties
@@ -70,21 +70,20 @@ _UI_Material_constructionDescription_feature = Construction Description
 _UI_Material_disposalEnergy_feature = Disposal Energy
 _UI_Material_disposalCarbon_feature = Disposal Carbon
 _UI_Material_disposalDescription_feature = Disposal Description
-_UI_Mounting_type = Mounting
 _UI_Layer_type = Layer
 _UI_MaterialCatalog_constructionCategories_feature = Constructions
 _UI_ConstructionCategory_name_feature = Construction Category
-_UI_ConstructionCategory_mountings_feature = Mountings
-_UI_Mounting_id_feature = Id
-_UI_Mounting_name_feature = Name
-_UI_Mounting_layers_feature = Layers
 _UI_Layer_material_feature = Material
 _UI_Layer_thickness_feature = Thickness
 _UI_MaterialCategory_materials_feature = Materials
 _UI_WindowType_windowTypeId_feature = Window Type Id
 _UI_Material_materialId_feature = Material Id
-_UI_Mounting_mountingId_feature = Mounting Id
 _UI_Layer__feature = Layer
 _UI_Material_category_feature = Category
 _UI_MaterialCategory_name_description = Name of material category
 _UI_Material_name_description = Name of material
+_UI_Construction_type = Construction
+_UI_ConstructionCategory_constructions_feature = Constructions
+_UI_Construction_constructionId_feature = Construction Id
+_UI_Construction_name_feature = Name
+_UI_Construction_layers_feature = Layers
diff --git a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/BuildingPhysicsItemProviderAdapterFactory.java b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/BuildingPhysicsItemProviderAdapterFactory.java
index 43d2dda49e978f6f1a4350056d66eaa9c4f710a8..61c5f6ecfd18c736f7c407ac1b447f3c4a773a62 100644
--- a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/BuildingPhysicsItemProviderAdapterFactory.java
+++ b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/BuildingPhysicsItemProviderAdapterFactory.java
@@ -234,26 +234,26 @@ public class BuildingPhysicsItemProviderAdapterFactory extends BuildingPhysicsAd
 	}
 
 	/**
-	 * This keeps track of the one adapter used for all {@link de.hftstuttgart.buildingphysics.Mounting} instances.
+	 * This keeps track of the one adapter used for all {@link de.hftstuttgart.buildingphysics.Construction} instances.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @generated
 	 */
-	protected MountingItemProvider mountingItemProvider;
+	protected ConstructionItemProvider constructionItemProvider;
 
 	/**
-	 * This creates an adapter for a {@link de.hftstuttgart.buildingphysics.Mounting}.
+	 * This creates an adapter for a {@link de.hftstuttgart.buildingphysics.Construction}.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @generated
 	 */
 	@Override
-	public Adapter createMountingAdapter() {
-		if (mountingItemProvider == null) {
-			mountingItemProvider = new MountingItemProvider(this);
+	public Adapter createConstructionAdapter() {
+		if (constructionItemProvider == null) {
+			constructionItemProvider = new ConstructionItemProvider(this);
 		}
 
-		return mountingItemProvider;
+		return constructionItemProvider;
 	}
 
 	/**
@@ -398,8 +398,8 @@ public class BuildingPhysicsItemProviderAdapterFactory extends BuildingPhysicsAd
 			materialItemProvider.dispose();
 		if (constructionCategoryItemProvider != null)
 			constructionCategoryItemProvider.dispose();
-		if (mountingItemProvider != null)
-			mountingItemProvider.dispose();
+		if (constructionItemProvider != null)
+			constructionItemProvider.dispose();
 		if (layerItemProvider != null)
 			layerItemProvider.dispose();
 	}
diff --git a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/ConstructionCategoryItemProvider.java b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/ConstructionCategoryItemProvider.java
index 9e64054bc7925e8528352cb5cd12c5450e8aee10..a770073d3706d9cfe4488cc32f0d7c36b521cf40 100644
--- a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/ConstructionCategoryItemProvider.java
+++ b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/ConstructionCategoryItemProvider.java
@@ -12,6 +12,7 @@ import org.eclipse.emf.common.notify.AdapterFactory;
 import org.eclipse.emf.common.notify.Notification;
 
 import org.eclipse.emf.common.util.ResourceLocator;
+
 import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
 import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
 import org.eclipse.emf.edit.provider.IItemLabelProvider;
@@ -120,7 +121,7 @@ public class ConstructionCategoryItemProvider extends ItemProviderAdapter implem
 
 		switch (notification.getFeatureID(ConstructionCategory.class)) {
 		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__NAME:
-		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__MOUNTINGS:
+		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__CONSTRUCTIONS:
 			fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true));
 			return;
 		}
diff --git a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MountingItemProvider.java b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/ConstructionItemProvider.java
similarity index 77%
rename from de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MountingItemProvider.java
rename to de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/ConstructionItemProvider.java
index 881ce3629e8a102863450b5162aefade8681087f..12926d5fa56f825222389c0e8e330512a6ddd1bf 100644
--- a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MountingItemProvider.java
+++ b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/ConstructionItemProvider.java
@@ -4,7 +4,7 @@ package de.hftstuttgart.buildingphysics.provider;
 
 import de.hftstuttgart.buildingphysics.BuildingPhysicsFactory;
 import de.hftstuttgart.buildingphysics.BuildingPhysicsPackage;
-import de.hftstuttgart.buildingphysics.Mounting;
+import de.hftstuttgart.buildingphysics.Construction;
 
 import java.util.Collection;
 import java.util.List;
@@ -28,12 +28,12 @@ import org.eclipse.emf.edit.provider.ItemProviderAdapter;
 import org.eclipse.emf.edit.provider.ViewerNotification;
 
 /**
- * This is the item provider adapter for a {@link de.hftstuttgart.buildingphysics.Mounting} object.
+ * This is the item provider adapter for a {@link de.hftstuttgart.buildingphysics.Construction} object.
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  * @generated
  */
-public class MountingItemProvider extends ItemProviderAdapter implements IEditingDomainItemProvider,
+public class ConstructionItemProvider extends ItemProviderAdapter implements IEditingDomainItemProvider,
 		IStructuredItemContentProvider, ITreeItemContentProvider, IItemLabelProvider, IItemPropertySource {
 	/**
 	 * This constructs an instance from a factory and a notifier.
@@ -41,7 +41,7 @@ public class MountingItemProvider extends ItemProviderAdapter implements IEditin
 	 * <!-- end-user-doc -->
 	 * @generated
 	 */
-	public MountingItemProvider(AdapterFactory adapterFactory) {
+	public ConstructionItemProvider(AdapterFactory adapterFactory) {
 		super(adapterFactory);
 	}
 
@@ -56,25 +56,25 @@ public class MountingItemProvider extends ItemProviderAdapter implements IEditin
 		if (itemPropertyDescriptors == null) {
 			super.getPropertyDescriptors(object);
 
-			addMountingIdPropertyDescriptor(object);
+			addConstructionIdPropertyDescriptor(object);
 			addNamePropertyDescriptor(object);
 		}
 		return itemPropertyDescriptors;
 	}
 
 	/**
-	 * This adds a property descriptor for the Mounting Id feature.
+	 * This adds a property descriptor for the Construction Id feature.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @generated
 	 */
-	protected void addMountingIdPropertyDescriptor(Object object) {
+	protected void addConstructionIdPropertyDescriptor(Object object) {
 		itemPropertyDescriptors
 				.add(createItemPropertyDescriptor(((ComposeableAdapterFactory) adapterFactory).getRootAdapterFactory(),
-						getResourceLocator(), getString("_UI_Mounting_mountingId_feature"),
-						getString("_UI_PropertyDescriptor_description", "_UI_Mounting_mountingId_feature",
-								"_UI_Mounting_type"),
-						BuildingPhysicsPackage.Literals.MOUNTING__MOUNTING_ID, true, false, false,
+						getResourceLocator(), getString("_UI_Construction_constructionId_feature"),
+						getString("_UI_PropertyDescriptor_description", "_UI_Construction_constructionId_feature",
+								"_UI_Construction_type"),
+						BuildingPhysicsPackage.Literals.CONSTRUCTION__CONSTRUCTION_ID, true, false, false,
 						ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null));
 	}
 
@@ -87,10 +87,10 @@ public class MountingItemProvider extends ItemProviderAdapter implements IEditin
 	protected void addNamePropertyDescriptor(Object object) {
 		itemPropertyDescriptors
 				.add(createItemPropertyDescriptor(((ComposeableAdapterFactory) adapterFactory).getRootAdapterFactory(),
-						getResourceLocator(), getString("_UI_Mounting_name_feature"),
-						getString("_UI_PropertyDescriptor_description", "_UI_Mounting_name_feature",
-								"_UI_Mounting_type"),
-						BuildingPhysicsPackage.Literals.MOUNTING__NAME, true, false, false,
+						getResourceLocator(), getString("_UI_Construction_name_feature"),
+						getString("_UI_PropertyDescriptor_description", "_UI_Construction_name_feature",
+								"_UI_Construction_type"),
+						BuildingPhysicsPackage.Literals.CONSTRUCTION__NAME, true, false, false,
 						ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null));
 	}
 
@@ -106,7 +106,7 @@ public class MountingItemProvider extends ItemProviderAdapter implements IEditin
 	public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) {
 		if (childrenFeatures == null) {
 			super.getChildrenFeatures(object);
-			childrenFeatures.add(BuildingPhysicsPackage.Literals.MOUNTING__LAYERS);
+			childrenFeatures.add(BuildingPhysicsPackage.Literals.CONSTRUCTION__LAYERS);
 		}
 		return childrenFeatures;
 	}
@@ -142,9 +142,9 @@ public class MountingItemProvider extends ItemProviderAdapter implements IEditin
 	 */
 	@Override
 	public String getText(Object object) {
-		String label = ((Mounting) object).getName();
-		return label == null || label.length() == 0 ? getString("_UI_Mounting_type")
-				: getString("_UI_Mounting_type") + " " + label;
+		String label = ((Construction) object).getName();
+		return label == null || label.length() == 0 ? getString("_UI_Construction_type")
+				: getString("_UI_Construction_type") + " " + label;
 	}
 
 	/**
@@ -158,12 +158,12 @@ public class MountingItemProvider extends ItemProviderAdapter implements IEditin
 	public void notifyChanged(Notification notification) {
 		updateChildren(notification);
 
-		switch (notification.getFeatureID(Mounting.class)) {
-		case BuildingPhysicsPackage.MOUNTING__MOUNTING_ID:
-		case BuildingPhysicsPackage.MOUNTING__NAME:
+		switch (notification.getFeatureID(Construction.class)) {
+		case BuildingPhysicsPackage.CONSTRUCTION__CONSTRUCTION_ID:
+		case BuildingPhysicsPackage.CONSTRUCTION__NAME:
 			fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true));
 			return;
-		case BuildingPhysicsPackage.MOUNTING__LAYERS:
+		case BuildingPhysicsPackage.CONSTRUCTION__LAYERS:
 			fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
 			return;
 		}
@@ -181,7 +181,7 @@ public class MountingItemProvider extends ItemProviderAdapter implements IEditin
 	protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
 		super.collectNewChildDescriptors(newChildDescriptors, object);
 
-		newChildDescriptors.add(createChildParameter(BuildingPhysicsPackage.Literals.MOUNTING__LAYERS,
+		newChildDescriptors.add(createChildParameter(BuildingPhysicsPackage.Literals.CONSTRUCTION__LAYERS,
 				BuildingPhysicsFactory.eINSTANCE.createLayer()));
 	}
 
diff --git a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MaterialCatalogItemProvider.java b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MaterialCatalogItemProvider.java
index eb0bdf189ae9c08ef6a996db0b0266671f37d4d0..b3b111217617c75c6bed94889d49aded8984a0a8 100644
--- a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MaterialCatalogItemProvider.java
+++ b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MaterialCatalogItemProvider.java
@@ -11,7 +11,9 @@ import java.util.List;
 
 import org.eclipse.emf.common.notify.AdapterFactory;
 import org.eclipse.emf.common.notify.Notification;
+
 import org.eclipse.emf.ecore.EStructuralFeature;
+
 import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
 import org.eclipse.emf.edit.provider.ViewerNotification;
 
@@ -103,11 +105,13 @@ public class MaterialCatalogItemProvider extends CatalogItemProvider {
 	 * This returns the label text for the adapted class.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @generated NOT
+	 * @generated
 	 */
 	@Override
 	public String getText(Object object) {
-		return getString("_UI_MaterialCatalog_type");
+		String label = ((MaterialCatalog) object).getName();
+		return label == null || label.length() == 0 ? getString("_UI_MaterialCatalog_type")
+				: getString("_UI_MaterialCatalog_type") + " " + label;
 	}
 
 	/**
diff --git a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MaterialCategoryItemProvider.java b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MaterialCategoryItemProvider.java
index 8fe3a944897088cef423452d8b66127a80291cf8..c8dea2c47c4167b7a768d39d895a147ea7f9a2fd 100644
--- a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MaterialCategoryItemProvider.java
+++ b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/MaterialCategoryItemProvider.java
@@ -12,6 +12,7 @@ import org.eclipse.emf.common.notify.AdapterFactory;
 import org.eclipse.emf.common.notify.Notification;
 
 import org.eclipse.emf.common.util.ResourceLocator;
+
 import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
 import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
 import org.eclipse.emf.edit.provider.IItemLabelProvider;
diff --git a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/WindowCatalogItemProvider.java b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/WindowCatalogItemProvider.java
index 89125423925579845c119c9759e066a87cefb272..64ab2ad93d7eee2f654de71a12251dcb2356bc84 100644
--- a/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/WindowCatalogItemProvider.java
+++ b/de.hftstuttgart.buildingphysics.edit/src/de/hftstuttgart/buildingphysics/provider/WindowCatalogItemProvider.java
@@ -10,6 +10,7 @@ import java.util.List;
 
 import org.eclipse.emf.common.notify.AdapterFactory;
 import org.eclipse.emf.common.notify.Notification;
+
 import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
 import org.eclipse.emf.edit.provider.ViewerNotification;
 
@@ -70,11 +71,13 @@ public class WindowCatalogItemProvider extends CatalogItemProvider {
 	 * This returns the label text for the adapted class.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @generated NOT
+	 * @generated
 	 */
 	@Override
 	public String getText(Object object) {
-		return getString("_UI_WindowCatalog_type");
+		String label = ((WindowCatalog) object).getName();
+		return label == null || label.length() == 0 ? getString("_UI_WindowCatalog_type")
+				: getString("_UI_WindowCatalog_type") + " " + label;
 	}
 
 	/**
diff --git a/de.hftstuttgart.buildingphysics.viewmodel/plugin.xml b/de.hftstuttgart.buildingphysics.viewmodel/plugin.xml
index 01a06bd8a859bc9ed95606b3c02fee5ed70515b2..cfd0046a17c855d0473b3f4566a4ae5ec0536fff 100644
--- a/de.hftstuttgart.buildingphysics.viewmodel/plugin.xml
+++ b/de.hftstuttgart.buildingphysics.viewmodel/plugin.xml
@@ -2,7 +2,7 @@
 <?eclipse version="3.4"?>
 <plugin>
 	<extension point="org.eclipse.emf.ecp.view.model.provider.xmi.file">
-		<file filePath="viewmodels/Mounting.view"/>
+		<file filePath="viewmodels/Construction.view"/>
 		<file filePath="viewmodels/ConstructionCategory.view"/>
 		<file filePath="viewmodels/MaterialCatalog.view"/>
 		<file filePath="viewmodels/Material.view"/>
diff --git a/de.hftstuttgart.buildingphysics.viewmodel/viewmodels/Mounting.view b/de.hftstuttgart.buildingphysics.viewmodel/viewmodels/Construction.view
similarity index 91%
rename from de.hftstuttgart.buildingphysics.viewmodel/viewmodels/Mounting.view
rename to de.hftstuttgart.buildingphysics.viewmodel/viewmodels/Construction.view
index 8c3e4ee96d8b42621f0c93e1324715774f2c3faf..10a7efdac023cce886488c64a0266a1042692136 100644
--- a/de.hftstuttgart.buildingphysics.viewmodel/viewmodels/Mounting.view
+++ b/de.hftstuttgart.buildingphysics.viewmodel/viewmodels/Construction.view
@@ -1,14 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<org.eclipse.emf.ecp.view.model:View xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:org.eclipse.emf.ecp.view.model="http://org/eclipse/emf/ecp/view/model/1180" xmlns:org.eclipse.emf.ecp.view.table.model="http://org/eclipse/emf/ecp/view/table/model/150" xmi:id="_Hd11YLPZEeup29SeaUMpQQ" name="Mounting">
-  <rootEClass href="http://www.hftstuttgart.de/buildingphysics#//Mounting"/>
-  <children xsi:type="org.eclipse.emf.ecp.view.model:Control" xmi:id="_Hd2ccLPZEeup29SeaUMpQQ" name="Control mountingId">
+<org.eclipse.emf.ecp.view.model:View xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" xmlns:org.eclipse.emf.ecp.view.model="http://org/eclipse/emf/ecp/view/model/1180" xmlns:org.eclipse.emf.ecp.view.table.model="http://org/eclipse/emf/ecp/view/table/model/150" xmi:id="_Hd11YLPZEeup29SeaUMpQQ" name="Construction">
+  <rootEClass href="http://www.hftstuttgart.de/buildingphysics#//Construction"/>
+  <children xsi:type="org.eclipse.emf.ecp.view.model:Control" xmi:id="_Hd2ccLPZEeup29SeaUMpQQ" name="Control constructionId">
     <domainModelReference xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_Hd2ccbPZEeup29SeaUMpQQ">
-      <domainModelEFeature xsi:type="ecore:EAttribute" href="http://www.hftstuttgart.de/buildingphysics#//Mounting/mountingId"/>
+      <domainModelEFeature xsi:type="ecore:EAttribute" href="http://www.hftstuttgart.de/buildingphysics#//Construction/constructionId"/>
     </domainModelReference>
   </children>
   <children xsi:type="org.eclipse.emf.ecp.view.model:Control" xmi:id="_Hd2ccrPZEeup29SeaUMpQQ" name="Control name">
     <domainModelReference xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_Hd2cc7PZEeup29SeaUMpQQ">
-      <domainModelEFeature xsi:type="ecore:EAttribute" href="http://www.hftstuttgart.de/buildingphysics#//Mounting/name"/>
+      <domainModelEFeature xsi:type="ecore:EAttribute" href="http://www.hftstuttgart.de/buildingphysics#//Construction/name"/>
     </domainModelReference>
   </children>
   <children xsi:type="org.eclipse.emf.ecp.view.table.model:TableControl" xmi:id="_J63RcLPZEeup29SeaUMpQQ" moveUpDownDisabled="false" detailEditing="WithPanel">
@@ -26,7 +26,7 @@
         <domainModelEReferencePath href="http://www.hftstuttgart.de/buildingphysics#//Material/category"/>
       </columnDomainModelReferences>
       <domainModelReference xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_MkYRYbPZEeup29SeaUMpQQ">
-        <domainModelEFeature xsi:type="ecore:EReference" href="http://www.hftstuttgart.de/buildingphysics#//Mounting/layers"/>
+        <domainModelEFeature xsi:type="ecore:EReference" href="http://www.hftstuttgart.de/buildingphysics#//Construction/layers"/>
       </domainModelReference>
     </domainModelReference>
     <columnConfigurations xsi:type="org.eclipse.emf.ecp.view.table.model:WidthConfiguration" xmi:id="_d7H2QL8HEeuIHZm4y-I19A" columnDomainReference="_QnRfELPZEeup29SeaUMpQQ" weight="30" minWidth="65"/>
diff --git a/de.hftstuttgart.buildingphysics.viewmodel/viewmodels/ConstructionCategory.view b/de.hftstuttgart.buildingphysics.viewmodel/viewmodels/ConstructionCategory.view
index 5b873d89061b3b2dcf118b166c9628519a81ca10..7a234d5d2245dd33e93a625b4282dd64987ab697 100644
--- a/de.hftstuttgart.buildingphysics.viewmodel/viewmodels/ConstructionCategory.view
+++ b/de.hftstuttgart.buildingphysics.viewmodel/viewmodels/ConstructionCategory.view
@@ -7,18 +7,18 @@
     </domainModelReference>
   </children>
   <children xsi:type="org.eclipse.emf.ecp.view.table.model:TableControl" xmi:id="_vgicgLeuEeu0KumwacCHxQ" detailEditing="WithPanel">
-    <domainModelReference xsi:type="org.eclipse.emf.ecp.view.table.model:TableDomainModelReference" xmi:id="_yN_hQLeuEeu0KumwacCHxQ">
-      <columnDomainModelReferences xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_IHsn8L-QEeuIHZm4y-I19A">
-        <domainModelEFeature xsi:type="ecore:EAttribute" href="http://www.hftstuttgart.de/buildingphysics#//Mounting/mountingId"/>
+    <domainModelReference xsi:type="org.eclipse.emf.ecp.view.table.model:TableDomainModelReference" xmi:id="_UOehkMBWEeuIHZm4y-I19A">
+      <columnDomainModelReferences xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_XzxNQMBWEeuIHZm4y-I19A">
+        <domainModelEFeature xsi:type="ecore:EAttribute" href="http://www.hftstuttgart.de/buildingphysics#//Construction/constructionId"/>
       </columnDomainModelReferences>
-      <columnDomainModelReferences xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_IHsn8b-QEeuIHZm4y-I19A">
-        <domainModelEFeature xsi:type="ecore:EAttribute" href="http://www.hftstuttgart.de/buildingphysics#//Mounting/name"/>
+      <columnDomainModelReferences xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_XzxNQcBWEeuIHZm4y-I19A">
+        <domainModelEFeature xsi:type="ecore:EAttribute" href="http://www.hftstuttgart.de/buildingphysics#//Construction/name"/>
       </columnDomainModelReferences>
-      <domainModelReference xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_yN_hQbeuEeu0KumwacCHxQ">
-        <domainModelEFeature xsi:type="ecore:EReference" href="http://www.hftstuttgart.de/buildingphysics#//ConstructionCategory/mountings"/>
+      <domainModelReference xsi:type="org.eclipse.emf.ecp.view.model:FeaturePathDomainModelReference" xmi:id="_UOehkcBWEeuIHZm4y-I19A">
+        <domainModelEFeature xsi:type="ecore:EReference" href="http://www.hftstuttgart.de/buildingphysics#//ConstructionCategory/constructions"/>
       </domainModelReference>
     </domainModelReference>
-    <columnConfigurations xsi:type="org.eclipse.emf.ecp.view.table.model:ReadOnlyColumnConfiguration" xmi:id="_2MtCAL-PEeuIHZm4y-I19A" columnDomainReferences="_IHsn8b-QEeuIHZm4y-I19A _IHsn8L-QEeuIHZm4y-I19A"/>
+    <columnConfigurations xsi:type="org.eclipse.emf.ecp.view.table.model:ReadOnlyColumnConfiguration" xmi:id="_2MtCAL-PEeuIHZm4y-I19A"/>
   </children>
   <ecorePaths>/de.hftstuttgart.buildingphysics/model/buildingphysics.ecore</ecorePaths>
 </org.eclipse.emf.ecp.view.model:View>
diff --git a/de.hftstuttgart.buildingphysics/catalogs/2020 German Buildings IWU.xmi b/de.hftstuttgart.buildingphysics/catalogs/2020 German Buildings IWU.xmi
index b20f309d61f10e05fe1fd95da0093dbbc8f1b8a7..1c7aeb55a8d4e5ca34d32b205a665162156a8ab5 100644
--- a/de.hftstuttgart.buildingphysics/catalogs/2020 German Buildings IWU.xmi	
+++ b/de.hftstuttgart.buildingphysics/catalogs/2020 German Buildings IWU.xmi	
@@ -1,1281 +1,1282 @@
-<?xml version="1.0" encoding="UTF-8"?><buildphys:BuildingPhysicsCatalog xmlns:buildphys="http://www.hftstuttgart.de/buildingphysics" xmlns:xmi="http://www.omg.org/XMI" author="Verena Weiler, HfT Stuttgart" xmi:version="2.0">
-<windowCatalog name="German Building Typology Library IWU" description="Window catalog from German Building Typology Library IWU" source="http://www.iwu.de">
-<windowTypes windowTypeId="window_0" name="Double-glazed window with old wooden/aluminum frame" uValue="3.2 W/(m²·K)" gValue="0.76" glazingNumber="2" frameRatio="0.3" embodiedEnergy="809.02 kW·h/m²" embodiedCarbon="143.4 kg" constructionDescription="double glazing with old wooden/aluminum frame, produced in Germany, transportation 50 km " disposalEnergy="5.16 kW·h/m²" disposalCarbon="1.5 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<windowTypes windowTypeId="window_1" name="Double-glazed window with plastic frame" uValue="2.57 W/(m²·K)" gValue="0.76" glazingNumber="2" frameRatio="0.3" embodiedEnergy="577.53 kW·h/m²" embodiedCarbon="106.92 kg" constructionDescription="double glazing with plastic frame, produced in Germany, transportation 50 km " disposalEnergy="4.48 kW·h/m²" disposalCarbon="2.26 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<windowTypes windowTypeId="window_2" name="Low-E double-glazed window" uValue="1.6 W/(m²·K)" gValue="0.63" glazingNumber="2" frameRatio="0.3" embodiedEnergy="628.89 kW·h/m²" embodiedCarbon="81.57 kg" constructionDescription="double glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="3.97 kW·h/m²" disposalCarbon="4.48 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<windowTypes windowTypeId="window_3" name="Low-E double-glazed window EnEV2016" uValue="1.3 W/(m²·K)" gValue="0.6" glazingNumber="2" frameRatio="0.3" embodiedEnergy="628.89 kW·h/m²" embodiedCarbon="81.57 kg" constructionDescription="double glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="3.97 kW·h/m²" disposalCarbon="4.48 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<windowTypes windowTypeId="window_4" name="Low-E triple-glazed window" uValue="1.05 W/(m²·K)" gValue="0.5" glazingNumber="3" frameRatio="0.3" embodiedEnergy="694.42 kW·h/m²" embodiedCarbon="98.5 kg" constructionDescription="triple glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="4.56 kW·h/m²" disposalCarbon="4.93 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<windowTypes windowTypeId="window_5" name="Low-E triple-glazed window KfW 40" uValue="0.91 W/(m²·K)" gValue="0.5" glazingNumber="3" frameRatio="0.3" embodiedEnergy="694.42 kW·h/m²" embodiedCarbon="98.5 kg" constructionDescription="triple glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="4.56 kW·h/m²" disposalCarbon="4.93 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<windowTypes windowTypeId="window_6" name="Low-E triple-glazed window KfW 55" uValue="0.91 W/(m²·K)" gValue="0.5" glazingNumber="3" frameRatio="0.3" embodiedEnergy="694.42 kW·h/m²" embodiedCarbon="98.5 kg" constructionDescription="triple glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="4.56 kW·h/m²" disposalCarbon="4.93 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<windowTypes windowTypeId="window_7" name="Single-glazed window" uValue="5.0 W/(m²·K)" gValue="0.86" glazingNumber="1" frameRatio="0.3" embodiedEnergy=" kW·h/m²" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/m²" disposalCarbon=" kg" disposalDescription=""/>
-</windowCatalog>
-<materialCatalog name="German Building Typology Library IWU" description="Construction catalog from German Building Typology Library IWU" source="http://www.iwu.de">
-<materialCategories name="Brick">
-<materials materialId="material_0" name="Solid brick" density="2000.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.96 W/(m·K)" embodiedEnergy="0.8 kW·h/kg" embodiedCarbon="0.25 kg" constructionDescription="solid brick made of clay, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_1" name="Cored brick" density="1500.0 kg/m³" heatCapacity="920.0 J/K" conductivity="0.71 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_2" name="Honeycomb brick" density="1120.0 kg/m³" heatCapacity="790.0 J/K" conductivity="0.3 W/(m·K)" embodiedEnergy="0.77 kW·h/kg" embodiedCarbon="0.14 kg" constructionDescription="light clay brick, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_3" name="Inner leaf brick" density="1800.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.62 W/(m·K)" embodiedEnergy="1.1 kW·h/kg" embodiedCarbon="0.95 kg" constructionDescription="made of portland clinker, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_4" name="Outer leaf brick" density="2000.0 kg/m³" heatCapacity="650.0 J/K" conductivity="0.96 W/(m·K)" embodiedEnergy="1.1 kW·h/kg" embodiedCarbon="0.95 kg" constructionDescription="made of portland clinker, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_5" name="Vermiculite insulated brick" density="700.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.27 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-</materialCategories>
-<materialCategories name="Concrete">
-<materials materialId="material_6" name="Breeze block" density="1500.0 kg/m³" heatCapacity="650.0 J/K" conductivity="0.44 W/(m·K)" embodiedEnergy="0.3 kW·h/kg" embodiedCarbon="0.12 kg" constructionDescription="concrete block, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_7" name="Concrete dense" density="2000.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="1.13 W/(m·K)" embodiedEnergy="0.3 kW·h/kg" embodiedCarbon="0.16 kg" constructionDescription="concrete 50MPa, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_8" name="Concrete lightweight" density="1200.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="0.38 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_9" name="Aerated concrete block" density="500.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.16 W/(m·K)" embodiedEnergy="1.01 kW·h/kg" embodiedCarbon="0.48 kg" constructionDescription="autoclaved aerated concrete, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_10" name="Foamed slag concrete" density="1040.0 kg/m³" heatCapacity="960.0 J/K" conductivity="0.25 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_11" name="Vermiculite aggregate concrete" density="450.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.17 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_12" name="No fines concrete" density="1800.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.96 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_13" name="Glass reinforced concrete" density="1950.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.9 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_14" name="Reinforced concrete" density="2240.0 kg/m³" heatCapacity="900.0 J/K" conductivity="1.95 W/(m·K)" embodiedEnergy="0.46 kW·h/kg" embodiedCarbon="0.18 kg" constructionDescription="concrete 25 MPa, steel low alloyed, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-</materialCategories>
-<materialCategories name="Ground covering">
-<materials materialId="material_15" name="Infusorial (9% mc)" density="480.0 kg/m³" heatCapacity="180.0 J/K" conductivity="0.09 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_16" name="Gravel based" density="2050.0 kg/m³" heatCapacity="184.0 J/K" conductivity="0.52 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_17" name="Common earth" density="1460.0 kg/m³" heatCapacity="879.0 J/K" conductivity="1.28 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-</materialCategories>
-<materialCategories name="Insulation">
-<materials materialId="material_18" name="Asbestos insulation" density="577.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.16 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_19" name="Cork insulation" density="105.0 kg/m³" heatCapacity="1810.0 J/K" conductivity="0.045 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_20" name="Woodwool" density="500.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="0.1 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_21" name="Glasswool" density="250.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.04 W/(m·K)" embodiedEnergy="2.98 kW·h/kg" embodiedCarbon="0.54 kg" constructionDescription="glaswool mat for insulation, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_22" name="Sheeps wool" density="198.0 kg/m³" heatCapacity="1360.0 J/K" conductivity="0.06 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_23" name="Mineral fibre" density="105.0 kg/m³" heatCapacity="1800.0 J/K" conductivity="0.045 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_24" name="Urea formaldehyde foam (UFFI)" density="30.0 kg/m³" heatCapacity="1764.0 J/K" conductivity="0.03 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_25" name="Polyurethane (PUR)" density="30.0 kg/m³" heatCapacity="837.0 J/K" conductivity="0.025 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_26" name="Foamed glass" density="125.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.05 W/(m·K)" embodiedEnergy="9.04 kW·h/kg" embodiedCarbon="2.04 kg" constructionDescription="foamed glass, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_27" name="Cellulose (loose fill)" density="300.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.037 W/(m·K)" embodiedEnergy="2.98 kW·h/kg" embodiedCarbon="0.54 kg" constructionDescription="cellulose loose fill including blow in, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_28" name="Extruded polystyrene (XPS 030)" density="32.0 kg/m³" heatCapacity="1412.0 J/K" conductivity="0.03 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_29" name="Expanded polystyrene (EPS 040)" density="25.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="0.04 W/(m·K)" embodiedEnergy="27.2 kW·h/kg" embodiedCarbon="3.83 kg" constructionDescription="polystyrene, CO2 blown, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.13 kg" disposalDescription="100% sent to sanitary landfill, transportation 50 km"/>
-<materials materialId="material_30" name="Expanded polystyrene (EPS 035)" density="25.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="0.035 W/(m·K)" embodiedEnergy="27.2 kW·h/kg" embodiedCarbon="3.83 kg" constructionDescription="polystyrene, CO2 blown, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.13 kg" disposalDescription="100% sent to sanitary landfill, transportation 50 km"/>
-<materials materialId="material_31" name="Expanded PVC" density="55.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="0.04 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_32" name="Silicon" density="700.0 kg/m³" heatCapacity="1004.0 J/K" conductivity="0.18 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_33" name="Wool felt underlay" density="160.0 kg/m³" heatCapacity="1360.0 J/K" conductivity="0.04 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_34" name="Cellular rubber underlay" density="400.0 kg/m³" heatCapacity="1360.0 J/K" conductivity="0.1 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_35" name="Synthetic carpet" density="160.0 kg/m³" heatCapacity="2500.0 J/K" conductivity="0.06 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-</materialCategories>
-<materialCategories name="Metal">
-<materials materialId="material_36" name="Copper" density="8900.0 kg/m³" heatCapacity="434.0 J/K" conductivity="200.0 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_37" name="Steel" density="7800.0 kg/m³" heatCapacity="507.0 J/K" conductivity="50.0 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_38" name="Aluminium" density="2800.0 kg/m³" heatCapacity="905.0 J/K" conductivity="160.0 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-</materialCategories>
-<materialCategories name="Plaster">
-<materials materialId="material_39" name="Dense plaster" density="1300.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.5 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_40" name="Light plaster" density="600.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.16 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_41" name="Gypsum plasterboard" density="950.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.16 W/(m·K)" embodiedEnergy="1.61 kW·h/kg" embodiedCarbon="0.43 kg" constructionDescription="produced from 100% natural gypsum, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_42" name="Perlite plasterboard" density="800.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.18 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_43" name="Gypsum plastering" density="1200.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.42 W/(m·K)" embodiedEnergy="0.3 kW·h/kg" embodiedCarbon="0.07 kg" constructionDescription="gypsum plastering made of gypsum, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_44" name="Perlite plastering" density="400.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.08 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_45" name="Vermiculite plastering" density="720.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.2 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-</materialCategories>
-<materialCategories name="Stone">
-<materials materialId="material_46" name="Sandstone" density="2000.0 kg/m³" heatCapacity="724.0 J/K" conductivity="1.3 W/(m·K)" embodiedEnergy="0.45 kW·h/kg" embodiedCarbon="0.17 kg" constructionDescription="sand-lime brick, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_47" name="Granite" density="2600.0 kg/m³" heatCapacity="905.0 J/K" conductivity="2.5 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_48" name="Marble" density="2500.0 kg/m³" heatCapacity="796.0 J/K" conductivity="2.0 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_49" name="Limestone" density="2180.0 kg/m³" heatCapacity="724.0 J/K" conductivity="1.5 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_50" name="Slate" density="2700.0 kg/m³" heatCapacity="760.0 J/K" conductivity="2.0 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_51" name="Gravel" density="1840.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.36 W/(m·K)" embodiedEnergy="0.08 kW·h/kg" embodiedCarbon="0.02 kg" constructionDescription="gravel, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_52" name="Chippings" density="1800.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.96 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_53" name="Pumice stone" density="1280.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.53 W/(m·K)" embodiedEnergy="0.44 kW·h/kg" embodiedCarbon="0.24 kg" constructionDescription="light weight concrete block - pumice, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_54" name="Sand" density="1500.0 kg/m³" heatCapacity="830.0 J/K" conductivity="0.2 W/(m·K)" embodiedEnergy="0.05 kW·h/kg" embodiedCarbon="0.01 kg" constructionDescription="sand, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_55" name="Cinder aggregate" density="1000.0 kg/m³" heatCapacity="800.0 J/K" conductivity="0.4 W/(m·K)" embodiedEnergy="0.04 kW·h/kg" embodiedCarbon="0.01 kg" constructionDescription="ground granulated plast furnace slag, produced in Germany, transportation 50 km" disposalEnergy="0.07 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-</materialCategories>
-<materialCategories name="Tile">
-<materials materialId="material_56" name="Concrete lightweight screed" density="1200.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.41 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_57" name="Concrete screed" density="2100.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="1.28 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_58" name="Granolithic screed" density="2085.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.87 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_59" name="Cement screed" density="2100.0 kg/m³" heatCapacity="650.0 J/K" conductivity="1.4 W/(m·K)" embodiedEnergy="0.36 kW·h/kg" embodiedCarbon="0.2 kg" constructionDescription=" cement is portland cement, strength class Z 42.5, produced in Germany, transportation 50 km" disposalEnergy="0.12 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to material landfill, transportation 50 km"/>
-<materials materialId="material_60" name="Rendering dry" density="1300.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="0.5 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_61" name="Rendering (1% mc)" density="1431.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="1.13 W/(m·K)" embodiedEnergy="0.21 kW·h/kg" embodiedCarbon="0.06 kg" constructionDescription="clay plaster (sand: 0.55kg, clay: 0.25kg, water: 0.2kg), produced in Germany, transportation 50 km" disposalEnergy="0.1 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_62" name="Rendering (8% mc)" density="1329.0 kg/m³" heatCapacity="1014.0 J/K" conductivity="0.79 W/(m·K)" embodiedEnergy="0.21 kW·h/kg" embodiedCarbon="0.06 kg" constructionDescription="clay plaster (sand: 0.55kg, clay: 0.25kg, water: 0.2kg), produced in Germany, transportation 50 km" disposalEnergy="0.1 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_63" name="Aged rendering" density="1329.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.79 W/(m·K)" embodiedEnergy="0.21 kW·h/kg" embodiedCarbon="0.06 kg" constructionDescription="clay plaster (sand: 0.55kg, clay: 0.25kg, water: 0.2kg), produced in Germany, transportation 50 km" disposalEnergy="0.1 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_64" name="Clay tile" density="1900.0 kg/m³" heatCapacity="837.0 J/K" conductivity="0.85 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_65" name="Concrete tile" density="2100.0 kg/m³" heatCapacity="837.0 J/K" conductivity="1.1 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_66" name="Slate tile" density="2700.0 kg/m³" heatCapacity="760.0 J/K" conductivity="2.0 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_67" name="Plastic tile" density="1050.0 kg/m³" heatCapacity="837.0 J/K" conductivity="0.5 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_68" name="Rubber tile" density="1600.0 kg/m³" heatCapacity="2000.0 J/K" conductivity="0.3 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_69" name="Cork tile" density="530.0 kg/m³" heatCapacity="1800.0 J/K" conductivity="0.08 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_70" name="Asphalt/asbestos roof" density="1900.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.55 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_71" name="P.V.C./asbestos roof" density="2000.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.85 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_72" name="Straw thatch" density="240.0 kg/m³" heatCapacity="180.0 J/K" conductivity="0.07 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_73" name="Ceiling (mineral)" density="290.0 kg/m³" heatCapacity="2000.0 J/K" conductivity="0.03 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_74" name="Ceiling (plaster)" density="1120.0 kg/m³" heatCapacity="840.0 J/K" conductivity="0.38 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_75" name="Bitumen felt" density="1700.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.5 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_76" name="Roofing felt" density="960.0 kg/m³" heatCapacity="837.0 J/K" conductivity="0.19 W/(m·K)" embodiedEnergy="12.41 kW·h/kg" embodiedCarbon="0.85 kg" constructionDescription="plastic liner consisting of polymer EP4 flame retardant and bitumen seal, produced in Germany, transportation 50 km" disposalEnergy="0.12 kW·h/kg" disposalCarbon="0.11 kg" disposalDescription="100% sent to sanitary landfill, transportation 50 km"/>
-<materials materialId="material_77" name="Asphalt mastic roofing" density="2325.0 kg/m³" heatCapacity="837.0 J/K" conductivity="1.15 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_78" name="Asphalt" density="1907.0 kg/m³" heatCapacity="833.0 J/K" conductivity="0.62 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_79" name="Asbestos cement" density="1500.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.36 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_80" name="Cement sheet" density="700.0 kg/m³" heatCapacity="1050.0 J/K" conductivity="0.36 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-</materialCategories>
-<materialCategories name="Wood">
-<materials materialId="material_81" name="Wood block" density="800.0 kg/m³" heatCapacity="2093.0 J/K" conductivity="0.16 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_82" name="Hardboard medium" density="600.0 kg/m³" heatCapacity="2027.0 J/K" conductivity="0.08 W/(m·K)" embodiedEnergy="13.13 kW·h/kg" embodiedCarbon="1.3 kg" constructionDescription="fibreboard hard, produced in Germany, transportation 50 km" disposalEnergy="0.12 kW·h/kg" disposalCarbon="0.08 kg" disposalDescription="100% sent to sanitary landfill, transportation 50 km"/>
-<materials materialId="material_83" name="Hardboard standard" density="900.0 kg/m³" heatCapacity="2027.0 J/K" conductivity="0.13 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_84" name="Timber flooring" density="650.0 kg/m³" heatCapacity="1195.0 J/K" conductivity="0.14 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_85" name="Corkboard" density="160.0 kg/m³" heatCapacity="1888.0 J/K" conductivity="0.04 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_86" name="Chipboard" density="800.0 kg/m³" heatCapacity="2093.0 J/K" conductivity="0.15 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_87" name="Softboard" density="350.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.56 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_88" name="Weatherboard" density="650.0 kg/m³" heatCapacity="2000.0 J/K" conductivity="0.14 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_89" name="Hardwood (oak, mapple, walnut...)" density="700.0 kg/m³" heatCapacity="1412.0 J/K" conductivity="0.15 W/(m·K)" embodiedEnergy="1.59 kW·h/kg" embodiedCarbon="0.03 kg" constructionDescription="sawing of hardwood, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.08 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_90" name="Softwood (pine, spruce...)" density="630.0 kg/m³" heatCapacity="2760.0 J/K" conductivity="0.13 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_91" name="Plywood" density="560.0 kg/m³" heatCapacity="2500.0 J/K" conductivity="0.15 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription=""/>
-<materials materialId="material_92" name="Fibreboard" density="300.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.06 W/(m·K)" embodiedEnergy="5.23 kW·h/kg" embodiedCarbon="1.2 kg" constructionDescription="fibreboard soft without adhesives, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.08 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-</materialCategories>
-<materialCategories name="Others">
-<materials materialId="material_93" name="Loam" density="1280.0 kg/m³" heatCapacity="1000.0 J/K" conductivity="0.55 W/(m·K)" embodiedEnergy="0.06 kW·h/kg" embodiedCarbon="0.01 kg" constructionDescription="market for clay, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-<materials materialId="material_94" name="Air layer (horizontal 10cm)" density="1.2 kg/m³" heatCapacity="1400.0 J/K" conductivity="0.45 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="air layer inbetween different construction types" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription="no disposal for air layer"/>
-<materials materialId="material_95" name="Air layer (vertical 10cm)" density="1.2 kg/m³" heatCapacity="1400.0 J/K" conductivity="0.55 W/(m·K)" embodiedEnergy=" kW·h/kg" embodiedCarbon=" kg" constructionDescription="air layer inbetween different construction types" disposalEnergy=" kW·h/kg" disposalCarbon=" kg" disposalDescription="no disposal for air layer"/>
-<materials materialId="material_96" name="Rafters with glasswool insulation" density="288.0 kg/m³" heatCapacity="1032.0 J/K" conductivity="0.05 W/(m·K)" embodiedEnergy="15.18 kW·h/kg" embodiedCarbon="0.71 kg" constructionDescription="ratio 80/20 Vol.-% (glasswool/rafters), glued laminated timber used as rafters, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.06 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
-</materialCategories>
-<constructionCategories name="outWall">
-<mountings mountingId="mounting_0" name="Aerated concrete-25cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_9" thickness="0.25 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_1" name="Aerated concrete-25cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_9" thickness="0.25 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_2" name="Aerated concrete-25cm_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_9" thickness="0.25 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_3" name="Aerated concrete-25cm_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_9" thickness="0.25 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_4" name="Aerated concrete-30cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_9" thickness="0.3 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_5" name="Aerated concrete-30cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.075 m"/>
-<layers material="material_9" thickness="0.3 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_6" name="Aerated concrete-30cm_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_61" thickness="0.01 m"/>
-<layers material="material_9" thickness="0.3 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_7" name="Aerated concrete-30cm_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_61" thickness="0.01 m"/>
-<layers material="material_9" thickness="0.3 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_8" name="Aerated concrete-50cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_9" thickness="0.5 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_9" name="Aerated concrete-50cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.03 m"/>
-<layers material="material_9" thickness="0.5 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_24" name="Breeze block-28cm">
-<layers material="material_63" thickness="0.01 m"/>
-<layers material="material_6" thickness="0.27 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_25" name="Breeze block-28cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_63" thickness="0.01 m"/>
-<layers material="material_6" thickness="0.27 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_26" name="Breeze block-28cm_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_63" thickness="0.01 m"/>
-<layers material="material_6" thickness="0.27 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_27" name="Breeze block-28cm_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_63" thickness="0.01 m"/>
-<layers material="material_6" thickness="0.27 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_28" name="Cavity wall">
-<layers material="material_4" thickness="0.12 m"/>
-<layers material="material_95" thickness="0.1 m"/>
-<layers material="material_3" thickness="0.17 m"/>
-</mountings>
-<mountings mountingId="mounting_29" name="Cavity wall_EnEV2016">
-<layers material="material_4" thickness="0.12 m"/>
-<layers material="material_27" thickness="0.1 m"/>
-<layers material="material_3" thickness="0.17 m"/>
-<layers material="material_30" thickness="0.03 m"/>
-</mountings>
-<mountings mountingId="mounting_30" name="Cavity wall_RefAdv">
-<layers material="material_4" thickness="0.12 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_3" thickness="0.17 m"/>
-</mountings>
-<mountings mountingId="mounting_31" name="Cavity wall_RefMed">
-<layers material="material_4" thickness="0.12 m"/>
-<layers material="material_27" thickness="0.06 m"/>
-<layers material="material_3" thickness="0.17 m"/>
-</mountings>
-<mountings mountingId="mounting_75" name="Concrete sandwich wall_1970s">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.03 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_76" name="Concrete sandwich wall_1970s_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.11 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.03 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_77" name="Concrete sandwich wall_1970s_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.03 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_78" name="Concrete sandwich wall_1970s_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.03 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_79" name="Concrete sandwich wall_1980s">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.04 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_80" name="Concrete sandwich wall_1980s_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.105 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.04 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_81" name="Concrete sandwich wall_1980s_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.04 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_82" name="Concrete sandwich wall_1980s_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.04 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_83" name="Concrete sandwich wall_1990s">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.07 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_84" name="Concrete sandwich wall_1990s_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.085 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.07 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_85" name="Concrete sandwich wall_1990s_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.07 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_86" name="Concrete sandwich wall_1990s_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_14" thickness="0.05 m"/>
-<layers material="material_26" thickness="0.07 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_118" name="Dense brickwork-32cm">
-<layers material="material_63" thickness="0.01 m"/>
-<layers material="material_0" thickness="0.32 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_119" name="Dense brickwork-32cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.125 m"/>
-<layers material="material_0" thickness="0.32 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_120" name="Dense brickwork-32cm_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_63" thickness="0.01 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_0" thickness="0.32 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_121" name="Dense brickwork-32cm_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_63" thickness="0.01 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_0" thickness="0.32 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_122" name="Honeycomb brick insul-10cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_29" thickness="0.1 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_123" name="Honeycomb brick insul-10cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_29" thickness="0.125 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_124" name="Honeycomb brick insul-12cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_29" thickness="0.12 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_125" name="Honeycomb brick insul-12cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_29" thickness="0.125 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_126" name="Honeycomb brick insul-13cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_29" thickness="0.13 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_127" name="Honeycomb brick insul-16cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_29" thickness="0.16 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_128" name="Honeycomb brick insul-22cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_29" thickness="0.22 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_129" name="Honeycomb brick insul-6cm">
-<layers material="material_43" thickness="0.01 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_29" thickness="0.06 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-</mountings>
-<mountings mountingId="mounting_130" name="Honeycomb brick insul-6cm-EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.06 m"/>
-<layers material="material_29" thickness="0.06 m"/>
-<layers material="material_2" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_131" name="Honeycomb brick-22cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_2" thickness="0.22 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_132" name="Honeycomb brick-22cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.11 m"/>
-<layers material="material_2" thickness="0.22 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_133" name="Honeycomb brick-22cm_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_2" thickness="0.22 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_134" name="Honeycomb brick-22cm_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_2" thickness="0.22 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_135" name="Honeycomb brick-30cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_2" thickness="0.3 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_136" name="Honeycomb brick-30cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.105 m"/>
-<layers material="material_2" thickness="0.3 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_137" name="Honeycomb brick-30cm_RefAdv">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_61" thickness="0.01 m"/>
-<layers material="material_2" thickness="0.3 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_138" name="Honeycomb brick-30cm_RefMed">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_61" thickness="0.01 m"/>
-<layers material="material_2" thickness="0.3 m"/>
-<layers material="material_43" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_139" name="Loam-timber-frames">
-<layers material="material_93" thickness="0.2 m"/>
-</mountings>
-<mountings mountingId="mounting_140" name="Loam-timber-frames_ EnEV2016">
-<layers material="material_93" thickness="0.2 m"/>
-<layers material="material_30" thickness="0.125 m"/>
-</mountings>
-<mountings mountingId="mounting_141" name="Loam-timber-frames_ ref adv">
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_93" thickness="0.2 m"/>
-</mountings>
-<mountings mountingId="mounting_142" name="Loam-timber-frames_ ref med">
-<layers material="material_93" thickness="0.2 m"/>
-<layers material="material_21" thickness="0.1 m"/>
-</mountings>
-<mountings mountingId="mounting_143" name="Reinforced concrete insul-11cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.11 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_144" name="Reinforced concrete insul-11cm_EnEV2016">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.025 m"/>
-<layers material="material_30" thickness="0.11 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_145" name="Reinforced concrete insul-14cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.14 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_146" name="Reinforced concrete insul-16cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.16 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_147" name="Reinforced concrete insul-22cm">
-<layers material="material_62" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.22 m"/>
-<layers material="material_14" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.01 m"/>
-</mountings>
-</constructionCategories>
-<constructionCategories name="groundShell">
-<mountings mountingId="mounting_87" name="Concrete slab insul-10cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_29" thickness="0.1 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_88" name="Concrete slab insul-10cm_EnEV2016">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_29" thickness="0.12 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_89" name="Concrete slab insul-12cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_29" thickness="0.12 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_90" name="Concrete slab insul-14cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.14 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_91" name="Concrete slab insul-16cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.16 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_92" name="Concrete slab insul-1cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.01 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_93" name="Concrete slab insul-1cm_EnEV2016">
-<layers material="material_30" thickness="0.095 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.01 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_94" name="Concrete slab insul-1cm_RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.01 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_95" name="Concrete slab insul-1cm_RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.01 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_96" name="Concrete slab insul-2.5cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.025 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_97" name="Concrete slab insul-2.5cm_EnEV2016">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.025 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_98" name="Concrete slab insul-2.5cm_RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.025 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_99" name="Concrete slab insul-2.5cm_RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.025 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_100" name="Concrete slab insul-3cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.03 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_101" name="Concrete slab insul-3cm_EnEV2016">
-<layers material="material_30" thickness="0.075 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.03 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_102" name="Concrete slab insul-3cm_RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.03 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_103" name="Concrete slab insul-3cm_RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.03 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_104" name="Concrete slab insul-4.5cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.045 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_105" name="Concrete slab insul-4.5cm_EnEV2016">
-<layers material="material_30" thickness="0.06 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.045 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_106" name="Concrete slab insul-4.5cm_RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.045 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_107" name="Concrete slab insul-4.5cm_RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.045 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_108" name="Concrete slab insul-4cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.04 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_109" name="Concrete slab insul-4cm_EnEV2016">
-<layers material="material_30" thickness="0.065 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.04 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_110" name="Concrete slab insul-4cm_RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.04 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_111" name="Concrete slab insul-4cm_RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.04 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_112" name="Concrete slab insul-6cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.06 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_113" name="Concrete slab insul-6cm_EnEV2016">
-<layers material="material_30" thickness="0.045 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.06 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_114" name="Concrete slab insul-6cm_RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.06 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_115" name="Concrete slab insul-6cm_RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.06 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_116" name="Concrete slab insul-7cm">
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.07 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_117" name="Concrete slab insul-7cm_EnEV2016">
-<layers material="material_30" thickness="0.035 m"/>
-<layers material="material_14" thickness="0.16 m"/>
-<layers material="material_30" thickness="0.07 m"/>
-<layers material="material_59" thickness="0.04 m"/>
-</mountings>
-<mountings mountingId="mounting_148" name="Sand stone on sand">
-<layers material="material_54" thickness="0.01 m"/>
-<layers material="material_46" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_149" name="Sand stone on sand_EnEV2016">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.095 m"/>
-<layers material="material_54" thickness="0.035 m"/>
-<layers material="material_46" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_150" name="Sand stone on sand_RefAdv">
-<layers material="material_54" thickness="0.01 m"/>
-<layers material="material_46" thickness="0.15 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-</mountings>
-<mountings mountingId="mounting_151" name="Sand stone on sand_RefMed">
-<layers material="material_54" thickness="0.01 m"/>
-<layers material="material_46" thickness="0.15 m"/>
-<layers material="material_30" thickness="0.06 m"/>
-</mountings>
-<mountings mountingId="mounting_180" name="Wooden floor infill cinder aggregate">
-<layers material="material_7" thickness="0.18 m"/>
-<layers material="material_55" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.03 m"/>
-</mountings>
-<mountings mountingId="mounting_181" name="Wooden floor infill cinder aggregate_EnEV2016">
-<layers material="material_30" thickness="0.084 m"/>
-<layers material="material_7" thickness="0.18 m"/>
-<layers material="material_55" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.03 m"/>
-</mountings>
-<mountings mountingId="mounting_182" name="Wooden floor infill cinder aggregate_RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_7" thickness="0.18 m"/>
-<layers material="material_55" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.03 m"/>
-</mountings>
-<mountings mountingId="mounting_183" name="Wooden floor infill cinder aggregate_RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_7" thickness="0.18 m"/>
-<layers material="material_55" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.03 m"/>
-</mountings>
-<mountings mountingId="mounting_184" name="Wooden floor infill cob ">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_94" thickness="0.1 m"/>
-<layers material="material_89" thickness="0.02 m"/>
-</mountings>
-<mountings mountingId="mounting_185" name="Wooden floor infill cob _EnEV2016">
-<layers material="material_30" thickness="0.075 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_94" thickness="0.1 m"/>
-<layers material="material_89" thickness="0.02 m"/>
-</mountings>
-<mountings mountingId="mounting_186" name="Wooden floor infill cob _RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_94" thickness="0.1 m"/>
-<layers material="material_89" thickness="0.02 m"/>
-</mountings>
-<mountings mountingId="mounting_187" name="Wooden floor infill cob _RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_94" thickness="0.1 m"/>
-<layers material="material_89" thickness="0.02 m"/>
-</mountings>
-<mountings mountingId="mounting_188" name="Wooden floor infill sand">
-<layers material="material_7" thickness="0.18 m"/>
-<layers material="material_54" thickness="0.03 m"/>
-<layers material="material_82" thickness="0.03 m"/>
-</mountings>
-<mountings mountingId="mounting_189" name="Wooden floor infill sand_EnEV2016">
-<layers material="material_30" thickness="0.085 m"/>
-<layers material="material_7" thickness="0.18 m"/>
-<layers material="material_54" thickness="0.03 m"/>
-<layers material="material_82" thickness="0.03 m"/>
-</mountings>
-<mountings mountingId="mounting_190" name="Wooden floor infill sand_RefAdv">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_7" thickness="0.18 m"/>
-<layers material="material_54" thickness="0.03 m"/>
-<layers material="material_82" thickness="0.03 m"/>
-</mountings>
-<mountings mountingId="mounting_191" name="Wooden floor infill sand_RefMed">
-<layers material="material_30" thickness="0.08 m"/>
-<layers material="material_7" thickness="0.18 m"/>
-<layers material="material_54" thickness="0.03 m"/>
-<layers material="material_82" thickness="0.03 m"/>
-</mountings>
-</constructionCategories>
-<constructionCategories name="pitchedRoof">
-<mountings mountingId="mounting_152" name="Timber rafters closed">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_95" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_153" name="Timber rafters closed with fibreboard">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_95" thickness="0.1 m"/>
-<layers material="material_92" thickness="0.025 m"/>
-</mountings>
-<mountings mountingId="mounting_154" name="Timber rafters insul-10cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.1 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_155" name="Timber rafters insul-12cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.12 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_156" name="Timber rafters insul-14cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.14 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_157" name="Timber rafters insul-16cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.16 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_158" name="Timber rafters insul-18cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.18 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_159" name="Timber rafters insul-18cm_EnEV2016">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.18 m"/>
-<layers material="material_30" thickness="0.01 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_160" name="Timber rafters insul-20cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.2 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_161" name="Timber rafters insul-24cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.24 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_162" name="Timber rafters insul-28cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.28 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_163" name="Timber rafters insul-34cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.34 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_164" name="Timber rafters insul-42cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.42 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_165" name="Timber rafters insul-4cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.04 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_166" name="Timber rafters insul-5cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.05 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_167" name="Timber rafters insul-6cm">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.06 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_168" name="Timber rafters with pumicestone">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_53" thickness="0.3 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_169" name="Timber rafters_EnEV2016">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.1 m"/>
-<layers material="material_30" thickness="0.065 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_170" name="Timber rafters_RefAdv">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_21" thickness="0.18 m"/>
-<layers material="material_96" thickness="0.12 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-<mountings mountingId="mounting_171" name="Timber rafters_RefMed">
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_96" thickness="0.12 m"/>
-<layers material="material_41" thickness="0.013 m"/>
-</mountings>
-</constructionCategories>
-<constructionCategories name="topCeiling">
-<mountings mountingId="mounting_13" name="Breeze block ceiling">
-<layers material="material_76" thickness="0.01 m"/>
-<layers material="material_6" thickness="0.13 m"/>
-</mountings>
-<mountings mountingId="mounting_14" name="Breeze block ceiling insul-15cm">
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_30" thickness="0.15 m"/>
-<layers material="material_6" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_15" name="Breeze block ceiling insul-18cm">
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_30" thickness="0.18 m"/>
-<layers material="material_6" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_16" name="Breeze block ceiling insul-22cm">
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_30" thickness="0.22 m"/>
-<layers material="material_6" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_17" name="Breeze block ceiling insul-2cm">
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_29" thickness="0.02 m"/>
-<layers material="material_6" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_18" name="Breeze block ceiling insul-2cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_29" thickness="0.02 m"/>
-<layers material="material_6" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_19" name="Breeze block ceiling insul-2cm_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_29" thickness="0.02 m"/>
-<layers material="material_6" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_20" name="Breeze block ceiling insul-30cm">
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_6" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_21" name="Breeze block ceiling_EnEV2016">
-<layers material="material_76" thickness="0.01 m"/>
-<layers material="material_30" thickness="0.13 m"/>
-<layers material="material_6" thickness="0.13 m"/>
-</mountings>
-<mountings mountingId="mounting_22" name="Breeze block ceiling_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.01 m"/>
-<layers material="material_6" thickness="0.13 m"/>
-</mountings>
-<mountings mountingId="mounting_23" name="Breeze block ceiling_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.01 m"/>
-<layers material="material_6" thickness="0.13 m"/>
-</mountings>
-<mountings mountingId="mounting_32" name="Concrete ceiling foam insul-6cm">
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_26" thickness="0.06 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_33" name="Concrete ceiling foam insul-6cm_EnEV2016">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.09 m"/>
-<layers material="material_26" thickness="0.06 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_34" name="Concrete ceiling foam insul-6cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_26" thickness="0.06 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_35" name="Concrete ceiling foam insul-6cm_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.03 m"/>
-<layers material="material_26" thickness="0.06 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_36" name="Concrete ceiling insul-10cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.1 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_37" name="Concrete ceiling insul-10cm_EnEV2016">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.045 m"/>
-<layers material="material_29" thickness="0.1 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_38" name="Concrete ceiling insul-10cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.1 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_39" name="Concrete ceiling insul-10cm_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.1 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_40" name="Concrete ceiling insul-12cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_41" name="Concrete ceiling insul-12cm_EnEV2016">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.03 m"/>
-<layers material="material_29" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_42" name="Concrete ceiling insul-12cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_43" name="Concrete ceiling insul-12cm_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.12 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_44" name="Concrete ceiling insul-14cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.14 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_45" name="Concrete ceiling insul-14cm_EnEV2016">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.015 m"/>
-<layers material="material_29" thickness="0.14 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_46" name="Concrete ceiling insul-14cm_EnEv2014">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.13 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_47" name="Concrete ceiling insul-14cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.14 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_48" name="Concrete ceiling insul-16cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.16 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_49" name="Concrete ceiling insul-16cmEPS035">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.16 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_50" name="Concrete ceiling insul-16cmEPS040">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.16 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_51" name="Concrete ceiling insul-16cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.16 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_52" name="Concrete ceiling insul-20cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.2 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_53" name="Concrete ceiling insul-24cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.24 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_54" name="Concrete ceiling insul-2cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.02 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_55" name="Concrete ceiling insul-2cm_EnEV2016">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_29" thickness="0.02 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_56" name="Concrete ceiling insul-2cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.02 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_57" name="Concrete ceiling insul-2cm_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.02 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_58" name="Concrete ceiling insul-30cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_59" name="Concrete ceiling insul-4cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.04 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_60" name="Concrete ceiling insul-4cm_EnEV2016">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.1 m"/>
-<layers material="material_29" thickness="0.04 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_61" name="Concrete ceiling insul-4cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.04 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_62" name="Concrete ceiling insul-4cm_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.04 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_63" name="Concrete ceiling insul-5cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.05 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_64" name="Concrete ceiling insul-5cm_EnEV2016">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.09 m"/>
-<layers material="material_29" thickness="0.05 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_65" name="Concrete ceiling insul-5cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.05 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_66" name="Concrete ceiling insul-5cm_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.05 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_67" name="Concrete ceiling insul-8cm">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_68" name="Concrete ceiling insul-8cm_EnEV2016">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.065 m"/>
-<layers material="material_29" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_69" name="Concrete ceiling insul-8cm_RefAdv">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_70" name="Concrete ceiling insul-8cm_RefMed">
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_76" thickness="0.02 m"/>
-<layers material="material_29" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_71" name="Concrete ceiling with gravel insul-8cm">
-<layers material="material_51" thickness="0.1 m"/>
-<layers material="material_29" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_72" name="Concrete ceiling with gravel insul-8cm_EnEV2016">
-<layers material="material_51" thickness="0.1 m"/>
-<layers material="material_30" thickness="0.06 m"/>
-<layers material="material_29" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_73" name="Concrete ceiling with gravel insul-8cm_RefAdv">
-<layers material="material_51" thickness="0.1 m"/>
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_29" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_74" name="Concrete ceiling with gravel insul-8cm_RefMed">
-<layers material="material_51" thickness="0.1 m"/>
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_29" thickness="0.08 m"/>
-<layers material="material_14" thickness="0.15 m"/>
-</mountings>
-<mountings mountingId="mounting_172" name="Wood ceiling infill cob">
-<layers material="material_89" thickness="0.02 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_173" name="Wood ceiling infill cob and dead floor">
-<layers material="material_82" thickness="0.02 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_94" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_174" name="Wood ceiling infill cob and dead floor_EnEV2016">
-<layers material="material_30" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.02 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_94" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_175" name="Wood ceiling infill cob and dead floor_RefAdv">
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_82" thickness="0.02 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_94" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_176" name="Wood ceiling infill cob and dead floor_RefMed">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_82" thickness="0.02 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-<layers material="material_94" thickness="0.1 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_177" name="Wood ceiling infill cob_EnEV2016">
-<layers material="material_30" thickness="0.115 m"/>
-<layers material="material_89" thickness="0.02 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_178" name="Wood ceiling infill cob_RefAdv">
-<layers material="material_30" thickness="0.3 m"/>
-<layers material="material_89" thickness="0.02 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-<mountings mountingId="mounting_179" name="Wood ceiling infill cob_RefMed">
-<layers material="material_30" thickness="0.12 m"/>
-<layers material="material_89" thickness="0.02 m"/>
-<layers material="material_93" thickness="0.25 m"/>
-<layers material="material_82" thickness="0.01 m"/>
-</mountings>
-</constructionCategories>
-<constructionCategories name="sharedWall">
-<mountings mountingId="mounting_12" name="Beton shared wall">
-<layers material="material_6" thickness="0.15 m"/>
-</mountings>
-</constructionCategories>
-<constructionCategories name="internalWall">
-<mountings mountingId="mounting_11" name="Beton internal wall">
-<layers material="material_6" thickness="0.06 m"/>
-</mountings>
-</constructionCategories>
-<constructionCategories name="intermediaryFloor">
-<mountings mountingId="mounting_10" name="Beton intermediary floor">
-<layers material="material_6" thickness="0.2 m"/>
-</mountings>
-</constructionCategories>
-</materialCatalog>
+<?xml version="1.0" encoding="UTF-8"?>
+<buildphys:BuildingPhysicsCatalog xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:buildphys="http://www.hftstuttgart.de/buildingphysics" author="Verena Weiler, HfT Stuttgart">
+  <windowCatalog name="German Building Typology Library IWU" description="Window catalog from German Building Typology Library IWU" source="http://www.iwu.de">
+    <windowTypes windowTypeId="window_0" name="Double-glazed window with old wooden/aluminum frame" uValue="3.2 W/(m²·K)" gValue="0.76" glazingNumber="2" frameRatio="0.3" embodiedEnergy="809.02 kW·h/m²" embodiedCarbon="143.4 kg" constructionDescription="double glazing with old wooden/aluminum frame, produced in Germany, transportation 50 km " disposalEnergy="5.16 kW·h/m²" disposalCarbon="1.5 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    <windowTypes windowTypeId="window_1" name="Double-glazed window with plastic frame" uValue="2.57 W/(m²·K)" gValue="0.76" glazingNumber="2" frameRatio="0.3" embodiedEnergy="577.53 kW·h/m²" embodiedCarbon="106.92 kg" constructionDescription="double glazing with plastic frame, produced in Germany, transportation 50 km " disposalEnergy="4.48 kW·h/m²" disposalCarbon="2.26 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    <windowTypes windowTypeId="window_2" name="Low-E double-glazed window" uValue="1.6 W/(m²·K)" gValue="0.63" glazingNumber="2" frameRatio="0.3" embodiedEnergy="628.89 kW·h/m²" embodiedCarbon="81.57 kg" constructionDescription="double glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="3.97 kW·h/m²" disposalCarbon="4.48 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    <windowTypes windowTypeId="window_3" name="Low-E double-glazed window EnEV2016" uValue="1.3 W/(m²·K)" gValue="0.6" glazingNumber="2" frameRatio="0.3" embodiedEnergy="628.89 kW·h/m²" embodiedCarbon="81.57 kg" constructionDescription="double glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="3.97 kW·h/m²" disposalCarbon="4.48 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    <windowTypes windowTypeId="window_4" name="Low-E triple-glazed window" uValue="1.05 W/(m²·K)" gValue="0.5" glazingNumber="3" frameRatio="0.3" embodiedEnergy="694.42 kW·h/m²" embodiedCarbon="98.5 kg" constructionDescription="triple glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="4.56 kW·h/m²" disposalCarbon="4.93 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    <windowTypes windowTypeId="window_5" name="Low-E triple-glazed window KfW 40" uValue="0.91 W/(m²·K)" gValue="0.5" glazingNumber="3" frameRatio="0.3" embodiedEnergy="694.42 kW·h/m²" embodiedCarbon="98.5 kg" constructionDescription="triple glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="4.56 kW·h/m²" disposalCarbon="4.93 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    <windowTypes windowTypeId="window_6" name="Low-E triple-glazed window KfW 55" uValue="0.91 W/(m²·K)" gValue="0.5" glazingNumber="3" frameRatio="0.3" embodiedEnergy="694.42 kW·h/m²" embodiedCarbon="98.5 kg" constructionDescription="triple glazing with wooden frame, produced in Germany, transportation 50 km " disposalEnergy="4.56 kW·h/m²" disposalCarbon="4.93 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    <windowTypes windowTypeId="window_7" name="Single-glazed window" uValue="5 W/(m²·K)" gValue="0.86" frameRatio="0.3" constructionDescription="" disposalDescription=""/>
+  </windowCatalog>
+  <materialCatalog name="German Building Typology Library IWU" description="Construction catalog from German Building Typology Library IWU" source="http://www.iwu.de">
+    <materialCategories name="Brick">
+      <materials materialId="material_0" name="Solid brick" density="2000 kg/m³" heatCapacity="840 J/K" conductivity="0.96 W/(m·K)" embodiedEnergy="0.8 kW·h/kg" embodiedCarbon="0.25 kg" constructionDescription="solid brick made of clay, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_1" name="Cored brick" density="1500 kg/m³" heatCapacity="920 J/K" conductivity="0.71 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_2" name="Honeycomb brick" density="1120 kg/m³" heatCapacity="790 J/K" conductivity="0.3 W/(m·K)" embodiedEnergy="0.77 kW·h/kg" embodiedCarbon="0.14 kg" constructionDescription="light clay brick, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_3" name="Inner leaf brick" density="1800 kg/m³" heatCapacity="840 J/K" conductivity="0.62 W/(m·K)" embodiedEnergy="1.1 kW·h/kg" embodiedCarbon="0.95 kg" constructionDescription="made of portland clinker, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_4" name="Outer leaf brick" density="2000 kg/m³" heatCapacity="650 J/K" conductivity="0.96 W/(m·K)" embodiedEnergy="1.1 kW·h/kg" embodiedCarbon="0.95 kg" constructionDescription="made of portland clinker, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_5" name="Vermiculite insulated brick" density="700 kg/m³" heatCapacity="840 J/K" conductivity="0.27 W/(m·K)" constructionDescription="" disposalDescription=""/>
+    </materialCategories>
+    <materialCategories name="Concrete">
+      <materials materialId="material_6" name="Breeze block" density="1500 kg/m³" heatCapacity="650 J/K" conductivity="0.44 W/(m·K)" embodiedEnergy="0.3 kW·h/kg" embodiedCarbon="0.12 kg" constructionDescription="concrete block, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_7" name="Concrete dense" density="2000 kg/m³" heatCapacity="1014 J/K" conductivity="1.13 W/(m·K)" embodiedEnergy="0.3 kW·h/kg" embodiedCarbon="0.16 kg" constructionDescription="concrete 50MPa, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_8" name="Concrete lightweight" density="1200 kg/m³" heatCapacity="1014 J/K" conductivity="0.38 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_9" name="Aerated concrete block" density="500 kg/m³" heatCapacity="840 J/K" conductivity="0.16 W/(m·K)" embodiedEnergy="1.01 kW·h/kg" embodiedCarbon="0.48 kg" constructionDescription="autoclaved aerated concrete, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_10" name="Foamed slag concrete" density="1040 kg/m³" heatCapacity="960 J/K" conductivity="0.25 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_11" name="Vermiculite aggregate concrete" density="450 kg/m³" heatCapacity="833 J/K" conductivity="0.17 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_12" name="No fines concrete" density="1800 kg/m³" heatCapacity="840 J/K" conductivity="0.96 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_13" name="Glass reinforced concrete" density="1950 kg/m³" heatCapacity="840 J/K" conductivity="0.9 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_14" name="Reinforced concrete" density="2240 kg/m³" heatCapacity="900 J/K" conductivity="1.95 W/(m·K)" embodiedEnergy="0.46 kW·h/kg" embodiedCarbon="0.18 kg" constructionDescription="concrete 25 MPa, steel low alloyed, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    </materialCategories>
+    <materialCategories name="Ground covering">
+      <materials materialId="material_15" name="Infusorial (9% mc)" density="480 kg/m³" heatCapacity="180 J/K" conductivity="0.09 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_16" name="Gravel based" density="2050 kg/m³" heatCapacity="184 J/K" conductivity="0.52 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_17" name="Common earth" density="1460 kg/m³" heatCapacity="879 J/K" conductivity="1.28 W/(m·K)" constructionDescription="" disposalDescription=""/>
+    </materialCategories>
+    <materialCategories name="Insulation">
+      <materials materialId="material_18" name="Asbestos insulation" density="577 kg/m³" heatCapacity="833 J/K" conductivity="0.16 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_19" name="Cork insulation" density="105 kg/m³" heatCapacity="1810 J/K" conductivity="0.045 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_20" name="Woodwool" density="500 kg/m³" heatCapacity="1014 J/K" conductivity="0.1 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_21" name="Glasswool" density="250 kg/m³" heatCapacity="840 J/K" conductivity="0.04 W/(m·K)" embodiedEnergy="2.98 kW·h/kg" embodiedCarbon="0.54 kg" constructionDescription="glaswool mat for insulation, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_22" name="Sheeps wool" density="198 kg/m³" heatCapacity="1360 J/K" conductivity="0.06 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_23" name="Mineral fibre" density="105 kg/m³" heatCapacity="1800 J/K" conductivity="0.045 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_24" name="Urea formaldehyde foam (UFFI)" density="30 kg/m³" heatCapacity="1764 J/K" conductivity="0.03 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_25" name="Polyurethane (PUR)" density="30 kg/m³" heatCapacity="837 J/K" conductivity="0.025 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_26" name="Foamed glass" density="125 kg/m³" heatCapacity="833 J/K" conductivity="0.05 W/(m·K)" embodiedEnergy="9.04 kW·h/kg" embodiedCarbon="2.04 kg" constructionDescription="foamed glass, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_27" name="Cellulose (loose fill)" density="300 kg/m³" heatCapacity="1000 J/K" conductivity="0.037 W/(m·K)" embodiedEnergy="2.98 kW·h/kg" embodiedCarbon="0.54 kg" constructionDescription="cellulose loose fill including blow in, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_28" name="Extruded polystyrene (XPS 030)" density="32 kg/m³" heatCapacity="1412 J/K" conductivity="0.03 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_29" name="Expanded polystyrene (EPS 040)" density="25 kg/m³" heatCapacity="1014 J/K" conductivity="0.04 W/(m·K)" embodiedEnergy="27.2 kW·h/kg" embodiedCarbon="3.83 kg" constructionDescription="polystyrene, CO2 blown, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.13 kg" disposalDescription="100% sent to sanitary landfill, transportation 50 km"/>
+      <materials materialId="material_30" name="Expanded polystyrene (EPS 035)" density="25 kg/m³" heatCapacity="1014 J/K" conductivity="0.035 W/(m·K)" embodiedEnergy="27.2 kW·h/kg" embodiedCarbon="3.83 kg" constructionDescription="polystyrene, CO2 blown, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.13 kg" disposalDescription="100% sent to sanitary landfill, transportation 50 km"/>
+      <materials materialId="material_31" name="Expanded PVC" density="55 kg/m³" heatCapacity="1014 J/K" conductivity="0.04 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_32" name="Silicon" density="700 kg/m³" heatCapacity="1004 J/K" conductivity="0.18 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_33" name="Wool felt underlay" density="160 kg/m³" heatCapacity="1360 J/K" conductivity="0.04 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_34" name="Cellular rubber underlay" density="400 kg/m³" heatCapacity="1360 J/K" conductivity="0.1 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_35" name="Synthetic carpet" density="160 kg/m³" heatCapacity="2500 J/K" conductivity="0.06 W/(m·K)" constructionDescription="" disposalDescription=""/>
+    </materialCategories>
+    <materialCategories name="Metal">
+      <materials materialId="material_36" name="Copper" density="8900 kg/m³" heatCapacity="434 J/K" conductivity="200 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_37" name="Steel" density="7800 kg/m³" heatCapacity="507 J/K" conductivity="50 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_38" name="Aluminium" density="2800 kg/m³" heatCapacity="905 J/K" conductivity="160 W/(m·K)" constructionDescription="" disposalDescription=""/>
+    </materialCategories>
+    <materialCategories name="Plaster">
+      <materials materialId="material_39" name="Dense plaster" density="1300 kg/m³" heatCapacity="1000 J/K" conductivity="0.5 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_40" name="Light plaster" density="600 kg/m³" heatCapacity="1000 J/K" conductivity="0.16 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_41" name="Gypsum plasterboard" density="950 kg/m³" heatCapacity="833 J/K" conductivity="0.16 W/(m·K)" embodiedEnergy="1.61 kW·h/kg" embodiedCarbon="0.43 kg" constructionDescription="produced from 100% natural gypsum, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_42" name="Perlite plasterboard" density="800 kg/m³" heatCapacity="833 J/K" conductivity="0.18 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_43" name="Gypsum plastering" density="1200 kg/m³" heatCapacity="833 J/K" conductivity="0.42 W/(m·K)" embodiedEnergy="0.3 kW·h/kg" embodiedCarbon="0.07 kg" constructionDescription="gypsum plastering made of gypsum, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_44" name="Perlite plastering" density="400 kg/m³" heatCapacity="833 J/K" conductivity="0.08 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_45" name="Vermiculite plastering" density="720 kg/m³" heatCapacity="833 J/K" conductivity="0.2 W/(m·K)" constructionDescription="" disposalDescription=""/>
+    </materialCategories>
+    <materialCategories name="Stone">
+      <materials materialId="material_46" name="Sandstone" density="2000 kg/m³" heatCapacity="724 J/K" conductivity="1.3 W/(m·K)" embodiedEnergy="0.45 kW·h/kg" embodiedCarbon="0.17 kg" constructionDescription="sand-lime brick, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_47" name="Granite" density="2600 kg/m³" heatCapacity="905 J/K" conductivity="2.5 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_48" name="Marble" density="2500 kg/m³" heatCapacity="796 J/K" conductivity="2 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_49" name="Limestone" density="2180 kg/m³" heatCapacity="724 J/K" conductivity="1.5 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_50" name="Slate" density="2700 kg/m³" heatCapacity="760 J/K" conductivity="2 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_51" name="Gravel" density="1840 kg/m³" heatCapacity="833 J/K" conductivity="0.36 W/(m·K)" embodiedEnergy="0.08 kW·h/kg" embodiedCarbon="0.02 kg" constructionDescription="gravel, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_52" name="Chippings" density="1800 kg/m³" heatCapacity="1000 J/K" conductivity="0.96 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_53" name="Pumice stone" density="1280 kg/m³" heatCapacity="840 J/K" conductivity="0.53 W/(m·K)" embodiedEnergy="0.44 kW·h/kg" embodiedCarbon="0.24 kg" constructionDescription="light weight concrete block - pumice, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_54" name="Sand" density="1500 kg/m³" heatCapacity="830 J/K" conductivity="0.2 W/(m·K)" embodiedEnergy="0.05 kW·h/kg" embodiedCarbon="0.01 kg" constructionDescription="sand, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_55" name="Cinder aggregate" density="1000 kg/m³" heatCapacity="800 J/K" conductivity="0.4 W/(m·K)" embodiedEnergy="0.04 kW·h/kg" embodiedCarbon="0.01 kg" constructionDescription="ground granulated plast furnace slag, produced in Germany, transportation 50 km" disposalEnergy="0.07 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    </materialCategories>
+    <materialCategories name="Tile">
+      <materials materialId="material_56" name="Concrete lightweight screed" density="1200 kg/m³" heatCapacity="833 J/K" conductivity="0.41 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_57" name="Concrete screed" density="2100 kg/m³" heatCapacity="1014 J/K" conductivity="1.28 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_58" name="Granolithic screed" density="2085 kg/m³" heatCapacity="833 J/K" conductivity="0.87 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_59" name="Cement screed" density="2100 kg/m³" heatCapacity="650 J/K" conductivity="1.4 W/(m·K)" embodiedEnergy="0.36 kW·h/kg" embodiedCarbon="0.2 kg" constructionDescription=" cement is portland cement, strength class Z 42.5, produced in Germany, transportation 50 km" disposalEnergy="0.12 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to material landfill, transportation 50 km"/>
+      <materials materialId="material_60" name="Rendering dry" density="1300 kg/m³" heatCapacity="1014 J/K" conductivity="0.5 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_61" name="Rendering (1% mc)" density="1431 kg/m³" heatCapacity="1014 J/K" conductivity="1.13 W/(m·K)" embodiedEnergy="0.21 kW·h/kg" embodiedCarbon="0.06 kg" constructionDescription="clay plaster (sand: 0.55kg, clay: 0.25kg, water: 0.2kg), produced in Germany, transportation 50 km" disposalEnergy="0.1 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_62" name="Rendering (8% mc)" density="1329 kg/m³" heatCapacity="1014 J/K" conductivity="0.79 W/(m·K)" embodiedEnergy="0.21 kW·h/kg" embodiedCarbon="0.06 kg" constructionDescription="clay plaster (sand: 0.55kg, clay: 0.25kg, water: 0.2kg), produced in Germany, transportation 50 km" disposalEnergy="0.1 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_63" name="Aged rendering" density="1329 kg/m³" heatCapacity="1000 J/K" conductivity="0.79 W/(m·K)" embodiedEnergy="0.21 kW·h/kg" embodiedCarbon="0.06 kg" constructionDescription="clay plaster (sand: 0.55kg, clay: 0.25kg, water: 0.2kg), produced in Germany, transportation 50 km" disposalEnergy="0.1 kW·h/kg" disposalCarbon="0.02 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_64" name="Clay tile" density="1900 kg/m³" heatCapacity="837 J/K" conductivity="0.85 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_65" name="Concrete tile" density="2100 kg/m³" heatCapacity="837 J/K" conductivity="1.1 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_66" name="Slate tile" density="2700 kg/m³" heatCapacity="760 J/K" conductivity="2 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_67" name="Plastic tile" density="1050 kg/m³" heatCapacity="837 J/K" conductivity="0.5 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_68" name="Rubber tile" density="1600 kg/m³" heatCapacity="2000 J/K" conductivity="0.3 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_69" name="Cork tile" density="530 kg/m³" heatCapacity="1800 J/K" conductivity="0.08 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_70" name="Asphalt/asbestos roof" density="1900 kg/m³" heatCapacity="833 J/K" conductivity="0.55 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_71" name="P.V.C./asbestos roof" density="2000 kg/m³" heatCapacity="833 J/K" conductivity="0.85 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_72" name="Straw thatch" density="240 kg/m³" heatCapacity="180 J/K" conductivity="0.07 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_73" name="Ceiling (mineral)" density="290 kg/m³" heatCapacity="2000 J/K" conductivity="0.03 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_74" name="Ceiling (plaster)" density="1120 kg/m³" heatCapacity="840 J/K" conductivity="0.38 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_75" name="Bitumen felt" density="1700 kg/m³" heatCapacity="1000 J/K" conductivity="0.5 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_76" name="Roofing felt" density="960 kg/m³" heatCapacity="837 J/K" conductivity="0.19 W/(m·K)" embodiedEnergy="12.41 kW·h/kg" embodiedCarbon="0.85 kg" constructionDescription="plastic liner consisting of polymer EP4 flame retardant and bitumen seal, produced in Germany, transportation 50 km" disposalEnergy="0.12 kW·h/kg" disposalCarbon="0.11 kg" disposalDescription="100% sent to sanitary landfill, transportation 50 km"/>
+      <materials materialId="material_77" name="Asphalt mastic roofing" density="2325 kg/m³" heatCapacity="837 J/K" conductivity="1.15 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_78" name="Asphalt" density="1907 kg/m³" heatCapacity="833 J/K" conductivity="0.62 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_79" name="Asbestos cement" density="1500 kg/m³" heatCapacity="1000 J/K" conductivity="0.36 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_80" name="Cement sheet" density="700 kg/m³" heatCapacity="1050 J/K" conductivity="0.36 W/(m·K)" constructionDescription="" disposalDescription=""/>
+    </materialCategories>
+    <materialCategories name="Wood">
+      <materials materialId="material_81" name="Wood block" density="800 kg/m³" heatCapacity="2093 J/K" conductivity="0.16 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_82" name="Hardboard medium" density="600 kg/m³" heatCapacity="2027 J/K" conductivity="0.08 W/(m·K)" embodiedEnergy="13.13 kW·h/kg" embodiedCarbon="1.3 kg" constructionDescription="fibreboard hard, produced in Germany, transportation 50 km" disposalEnergy="0.12 kW·h/kg" disposalCarbon="0.08 kg" disposalDescription="100% sent to sanitary landfill, transportation 50 km"/>
+      <materials materialId="material_83" name="Hardboard standard" density="900 kg/m³" heatCapacity="2027 J/K" conductivity="0.13 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_84" name="Timber flooring" density="650 kg/m³" heatCapacity="1195 J/K" conductivity="0.14 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_85" name="Corkboard" density="160 kg/m³" heatCapacity="1888 J/K" conductivity="0.04 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_86" name="Chipboard" density="800 kg/m³" heatCapacity="2093 J/K" conductivity="0.15 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_87" name="Softboard" density="350 kg/m³" heatCapacity="1000 J/K" conductivity="0.56 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_88" name="Weatherboard" density="650 kg/m³" heatCapacity="2000 J/K" conductivity="0.14 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_89" name="Hardwood (oak, mapple, walnut...)" density="700 kg/m³" heatCapacity="1412 J/K" conductivity="0.15 W/(m·K)" embodiedEnergy="1.59 kW·h/kg" embodiedCarbon="0.03 kg" constructionDescription="sawing of hardwood, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.08 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_90" name="Softwood (pine, spruce...)" density="630 kg/m³" heatCapacity="2760 J/K" conductivity="0.13 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_91" name="Plywood" density="560 kg/m³" heatCapacity="2500 J/K" conductivity="0.15 W/(m·K)" constructionDescription="" disposalDescription=""/>
+      <materials materialId="material_92" name="Fibreboard" density="300 kg/m³" heatCapacity="1000 J/K" conductivity="0.06 W/(m·K)" embodiedEnergy="5.23 kW·h/kg" embodiedCarbon="1.2 kg" constructionDescription="fibreboard soft without adhesives, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.08 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    </materialCategories>
+    <materialCategories name="Others">
+      <materials materialId="material_93" name="Loam" density="1280 kg/m³" heatCapacity="1000 J/K" conductivity="0.55 W/(m·K)" embodiedEnergy="0.06 kW·h/kg" embodiedCarbon="0.01 kg" constructionDescription="market for clay, produced in Germany, transportation 50 km" disposalEnergy="0.08 kW·h/kg" disposalCarbon="0.01 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+      <materials materialId="material_94" name="Air layer (horizontal 10cm)" density="1.2 kg/m³" heatCapacity="1400 J/K" conductivity="0.45 W/(m·K)" constructionDescription="air layer inbetween different construction types" disposalDescription="no disposal for air layer"/>
+      <materials materialId="material_95" name="Air layer (vertical 10cm)" density="1.2 kg/m³" heatCapacity="1400 J/K" conductivity="0.55 W/(m·K)" constructionDescription="air layer inbetween different construction types" disposalDescription="no disposal for air layer"/>
+      <materials materialId="material_96" name="Rafters with glasswool insulation" density="288 kg/m³" heatCapacity="1032 J/K" conductivity="0.05 W/(m·K)" embodiedEnergy="15.18 kW·h/kg" embodiedCarbon="0.71 kg" constructionDescription="ratio 80/20 Vol.-% (glasswool/rafters), glued laminated timber used as rafters, produced in Germany, transportation 50 km" disposalEnergy="0.11 kW·h/kg" disposalCarbon="0.06 kg" disposalDescription="100% sent to landfill, transportation 50 km"/>
+    </materialCategories>
+    <constructionCategories name="outWall">
+      <constructions constructionId="construction_0" name="Aerated concrete-25cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_9" thickness="0.25 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_1" name="Aerated concrete-25cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_9" thickness="0.25 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_2" name="Aerated concrete-25cm_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_9" thickness="0.25 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_3" name="Aerated concrete-25cm_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_9" thickness="0.25 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_4" name="Aerated concrete-30cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_9" thickness="0.3 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_5" name="Aerated concrete-30cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.075 m"/>
+        <layers material="material_9" thickness="0.3 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_6" name="Aerated concrete-30cm_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_61" thickness="0.01 m"/>
+        <layers material="material_9" thickness="0.3 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_7" name="Aerated concrete-30cm_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_61" thickness="0.01 m"/>
+        <layers material="material_9" thickness="0.3 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_8" name="Aerated concrete-50cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_9" thickness="0.5 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_9" name="Aerated concrete-50cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.03 m"/>
+        <layers material="material_9" thickness="0.5 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_24" name="Breeze block-28cm">
+        <layers material="material_63" thickness="0.01 m"/>
+        <layers material="material_6" thickness="0.27 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_25" name="Breeze block-28cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_63" thickness="0.01 m"/>
+        <layers material="material_6" thickness="0.27 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_26" name="Breeze block-28cm_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_63" thickness="0.01 m"/>
+        <layers material="material_6" thickness="0.27 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_27" name="Breeze block-28cm_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_63" thickness="0.01 m"/>
+        <layers material="material_6" thickness="0.27 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_28" name="Cavity wall">
+        <layers material="material_4" thickness="0.12 m"/>
+        <layers material="material_95" thickness="0.1 m"/>
+        <layers material="material_3" thickness="0.17 m"/>
+      </constructions>
+      <constructions constructionId="construction_29" name="Cavity wall_EnEV2016">
+        <layers material="material_4" thickness="0.12 m"/>
+        <layers material="material_27" thickness="0.1 m"/>
+        <layers material="material_3" thickness="0.17 m"/>
+        <layers material="material_30" thickness="0.03 m"/>
+      </constructions>
+      <constructions constructionId="construction_30" name="Cavity wall_RefAdv">
+        <layers material="material_4" thickness="0.12 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_3" thickness="0.17 m"/>
+      </constructions>
+      <constructions constructionId="construction_31" name="Cavity wall_RefMed">
+        <layers material="material_4" thickness="0.12 m"/>
+        <layers material="material_27" thickness="0.06 m"/>
+        <layers material="material_3" thickness="0.17 m"/>
+      </constructions>
+      <constructions constructionId="construction_75" name="Concrete sandwich wall_1970s">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.03 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_76" name="Concrete sandwich wall_1970s_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.11 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.03 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_77" name="Concrete sandwich wall_1970s_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.03 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_78" name="Concrete sandwich wall_1970s_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.03 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_79" name="Concrete sandwich wall_1980s">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.04 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_80" name="Concrete sandwich wall_1980s_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.105 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.04 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_81" name="Concrete sandwich wall_1980s_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.04 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_82" name="Concrete sandwich wall_1980s_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.04 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_83" name="Concrete sandwich wall_1990s">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.07 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_84" name="Concrete sandwich wall_1990s_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.085 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.07 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_85" name="Concrete sandwich wall_1990s_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.07 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_86" name="Concrete sandwich wall_1990s_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_14" thickness="0.05 m"/>
+        <layers material="material_26" thickness="0.07 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_118" name="Dense brickwork-32cm">
+        <layers material="material_63" thickness="0.01 m"/>
+        <layers material="material_0" thickness="0.32 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_119" name="Dense brickwork-32cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.125 m"/>
+        <layers material="material_0" thickness="0.32 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_120" name="Dense brickwork-32cm_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_63" thickness="0.01 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_0" thickness="0.32 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_121" name="Dense brickwork-32cm_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_63" thickness="0.01 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_0" thickness="0.32 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_122" name="Honeycomb brick insul-10cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_29" thickness="0.1 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_123" name="Honeycomb brick insul-10cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_29" thickness="0.125 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_124" name="Honeycomb brick insul-12cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_29" thickness="0.12 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_125" name="Honeycomb brick insul-12cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_29" thickness="0.125 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_126" name="Honeycomb brick insul-13cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_29" thickness="0.13 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_127" name="Honeycomb brick insul-16cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_29" thickness="0.16 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_128" name="Honeycomb brick insul-22cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_29" thickness="0.22 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_129" name="Honeycomb brick insul-6cm">
+        <layers material="material_43" thickness="0.01 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_29" thickness="0.06 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+      </constructions>
+      <constructions constructionId="construction_130" name="Honeycomb brick insul-6cm-EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.06 m"/>
+        <layers material="material_29" thickness="0.06 m"/>
+        <layers material="material_2" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_131" name="Honeycomb brick-22cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_2" thickness="0.22 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_132" name="Honeycomb brick-22cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.11 m"/>
+        <layers material="material_2" thickness="0.22 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_133" name="Honeycomb brick-22cm_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_2" thickness="0.22 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_134" name="Honeycomb brick-22cm_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_2" thickness="0.22 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_135" name="Honeycomb brick-30cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_2" thickness="0.3 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_136" name="Honeycomb brick-30cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.105 m"/>
+        <layers material="material_2" thickness="0.3 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_137" name="Honeycomb brick-30cm_RefAdv">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_61" thickness="0.01 m"/>
+        <layers material="material_2" thickness="0.3 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_138" name="Honeycomb brick-30cm_RefMed">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_61" thickness="0.01 m"/>
+        <layers material="material_2" thickness="0.3 m"/>
+        <layers material="material_43" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_139" name="Loam-timber-frames">
+        <layers material="material_93" thickness="0.2 m"/>
+      </constructions>
+      <constructions constructionId="construction_140" name="Loam-timber-frames_ EnEV2016">
+        <layers material="material_93" thickness="0.2 m"/>
+        <layers material="material_30" thickness="0.125 m"/>
+      </constructions>
+      <constructions constructionId="construction_141" name="Loam-timber-frames_ ref adv">
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_93" thickness="0.2 m"/>
+      </constructions>
+      <constructions constructionId="construction_142" name="Loam-timber-frames_ ref med">
+        <layers material="material_93" thickness="0.2 m"/>
+        <layers material="material_21" thickness="0.1 m"/>
+      </constructions>
+      <constructions constructionId="construction_143" name="Reinforced concrete insul-11cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.11 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_144" name="Reinforced concrete insul-11cm_EnEV2016">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.025 m"/>
+        <layers material="material_30" thickness="0.11 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_145" name="Reinforced concrete insul-14cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.14 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_146" name="Reinforced concrete insul-16cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.16 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_147" name="Reinforced concrete insul-22cm">
+        <layers material="material_62" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.22 m"/>
+        <layers material="material_14" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.01 m"/>
+      </constructions>
+    </constructionCategories>
+    <constructionCategories name="groundShell">
+      <constructions constructionId="construction_87" name="Concrete slab insul-10cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_29" thickness="0.1 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_88" name="Concrete slab insul-10cm_EnEV2016">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_29" thickness="0.12 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_89" name="Concrete slab insul-12cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_29" thickness="0.12 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_90" name="Concrete slab insul-14cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.14 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_91" name="Concrete slab insul-16cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.16 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_92" name="Concrete slab insul-1cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.01 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_93" name="Concrete slab insul-1cm_EnEV2016">
+        <layers material="material_30" thickness="0.095 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.01 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_94" name="Concrete slab insul-1cm_RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.01 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_95" name="Concrete slab insul-1cm_RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.01 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_96" name="Concrete slab insul-2.5cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.025 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_97" name="Concrete slab insul-2.5cm_EnEV2016">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.025 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_98" name="Concrete slab insul-2.5cm_RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.025 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_99" name="Concrete slab insul-2.5cm_RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.025 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_100" name="Concrete slab insul-3cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.03 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_101" name="Concrete slab insul-3cm_EnEV2016">
+        <layers material="material_30" thickness="0.075 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.03 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_102" name="Concrete slab insul-3cm_RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.03 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_103" name="Concrete slab insul-3cm_RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.03 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_104" name="Concrete slab insul-4.5cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.045 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_105" name="Concrete slab insul-4.5cm_EnEV2016">
+        <layers material="material_30" thickness="0.06 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.045 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_106" name="Concrete slab insul-4.5cm_RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.045 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_107" name="Concrete slab insul-4.5cm_RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.045 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_108" name="Concrete slab insul-4cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.04 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_109" name="Concrete slab insul-4cm_EnEV2016">
+        <layers material="material_30" thickness="0.065 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.04 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_110" name="Concrete slab insul-4cm_RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.04 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_111" name="Concrete slab insul-4cm_RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.04 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_112" name="Concrete slab insul-6cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.06 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_113" name="Concrete slab insul-6cm_EnEV2016">
+        <layers material="material_30" thickness="0.045 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.06 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_114" name="Concrete slab insul-6cm_RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.06 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_115" name="Concrete slab insul-6cm_RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.06 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_116" name="Concrete slab insul-7cm">
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.07 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_117" name="Concrete slab insul-7cm_EnEV2016">
+        <layers material="material_30" thickness="0.035 m"/>
+        <layers material="material_14" thickness="0.16 m"/>
+        <layers material="material_30" thickness="0.07 m"/>
+        <layers material="material_59" thickness="0.04 m"/>
+      </constructions>
+      <constructions constructionId="construction_148" name="Sand stone on sand">
+        <layers material="material_54" thickness="0.01 m"/>
+        <layers material="material_46" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_149" name="Sand stone on sand_EnEV2016">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.095 m"/>
+        <layers material="material_54" thickness="0.035 m"/>
+        <layers material="material_46" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_150" name="Sand stone on sand_RefAdv">
+        <layers material="material_54" thickness="0.01 m"/>
+        <layers material="material_46" thickness="0.15 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+      </constructions>
+      <constructions constructionId="construction_151" name="Sand stone on sand_RefMed">
+        <layers material="material_54" thickness="0.01 m"/>
+        <layers material="material_46" thickness="0.15 m"/>
+        <layers material="material_30" thickness="0.06 m"/>
+      </constructions>
+      <constructions constructionId="construction_180" name="Wooden floor infill cinder aggregate">
+        <layers material="material_7" thickness="0.18 m"/>
+        <layers material="material_55" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.03 m"/>
+      </constructions>
+      <constructions constructionId="construction_181" name="Wooden floor infill cinder aggregate_EnEV2016">
+        <layers material="material_30" thickness="0.084 m"/>
+        <layers material="material_7" thickness="0.18 m"/>
+        <layers material="material_55" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.03 m"/>
+      </constructions>
+      <constructions constructionId="construction_182" name="Wooden floor infill cinder aggregate_RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_7" thickness="0.18 m"/>
+        <layers material="material_55" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.03 m"/>
+      </constructions>
+      <constructions constructionId="construction_183" name="Wooden floor infill cinder aggregate_RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_7" thickness="0.18 m"/>
+        <layers material="material_55" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.03 m"/>
+      </constructions>
+      <constructions constructionId="construction_184" name="Wooden floor infill cob ">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_94" thickness="0.1 m"/>
+        <layers material="material_89" thickness="0.02 m"/>
+      </constructions>
+      <constructions constructionId="construction_185" name="Wooden floor infill cob _EnEV2016">
+        <layers material="material_30" thickness="0.075 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_94" thickness="0.1 m"/>
+        <layers material="material_89" thickness="0.02 m"/>
+      </constructions>
+      <constructions constructionId="construction_186" name="Wooden floor infill cob _RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_94" thickness="0.1 m"/>
+        <layers material="material_89" thickness="0.02 m"/>
+      </constructions>
+      <constructions constructionId="construction_187" name="Wooden floor infill cob _RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_94" thickness="0.1 m"/>
+        <layers material="material_89" thickness="0.02 m"/>
+      </constructions>
+      <constructions constructionId="construction_188" name="Wooden floor infill sand">
+        <layers material="material_7" thickness="0.18 m"/>
+        <layers material="material_54" thickness="0.03 m"/>
+        <layers material="material_82" thickness="0.03 m"/>
+      </constructions>
+      <constructions constructionId="construction_189" name="Wooden floor infill sand_EnEV2016">
+        <layers material="material_30" thickness="0.085 m"/>
+        <layers material="material_7" thickness="0.18 m"/>
+        <layers material="material_54" thickness="0.03 m"/>
+        <layers material="material_82" thickness="0.03 m"/>
+      </constructions>
+      <constructions constructionId="construction_190" name="Wooden floor infill sand_RefAdv">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_7" thickness="0.18 m"/>
+        <layers material="material_54" thickness="0.03 m"/>
+        <layers material="material_82" thickness="0.03 m"/>
+      </constructions>
+      <constructions constructionId="construction_191" name="Wooden floor infill sand_RefMed">
+        <layers material="material_30" thickness="0.08 m"/>
+        <layers material="material_7" thickness="0.18 m"/>
+        <layers material="material_54" thickness="0.03 m"/>
+        <layers material="material_82" thickness="0.03 m"/>
+      </constructions>
+    </constructionCategories>
+    <constructionCategories name="pitchedRoof">
+      <constructions constructionId="construction_152" name="Timber rafters closed">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_95" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_153" name="Timber rafters closed with fibreboard">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_95" thickness="0.1 m"/>
+        <layers material="material_92" thickness="0.025 m"/>
+      </constructions>
+      <constructions constructionId="construction_154" name="Timber rafters insul-10cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.1 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_155" name="Timber rafters insul-12cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.12 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_156" name="Timber rafters insul-14cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.14 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_157" name="Timber rafters insul-16cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.16 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_158" name="Timber rafters insul-18cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.18 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_159" name="Timber rafters insul-18cm_EnEV2016">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.18 m"/>
+        <layers material="material_30" thickness="0.01 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_160" name="Timber rafters insul-20cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.2 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_161" name="Timber rafters insul-24cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.24 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_162" name="Timber rafters insul-28cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.28 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_163" name="Timber rafters insul-34cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.34 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_164" name="Timber rafters insul-42cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.42 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_165" name="Timber rafters insul-4cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.04 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_166" name="Timber rafters insul-5cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.05 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_167" name="Timber rafters insul-6cm">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.06 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_168" name="Timber rafters with pumicestone">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_53" thickness="0.3 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_169" name="Timber rafters_EnEV2016">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.1 m"/>
+        <layers material="material_30" thickness="0.065 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_170" name="Timber rafters_RefAdv">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_21" thickness="0.18 m"/>
+        <layers material="material_96" thickness="0.12 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+      <constructions constructionId="construction_171" name="Timber rafters_RefMed">
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_96" thickness="0.12 m"/>
+        <layers material="material_41" thickness="0.013 m"/>
+      </constructions>
+    </constructionCategories>
+    <constructionCategories name="topCeiling">
+      <constructions constructionId="construction_13" name="Breeze block ceiling">
+        <layers material="material_76" thickness="0.01 m"/>
+        <layers material="material_6" thickness="0.13 m"/>
+      </constructions>
+      <constructions constructionId="construction_14" name="Breeze block ceiling insul-15cm">
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_30" thickness="0.15 m"/>
+        <layers material="material_6" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_15" name="Breeze block ceiling insul-18cm">
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_30" thickness="0.18 m"/>
+        <layers material="material_6" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_16" name="Breeze block ceiling insul-22cm">
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_30" thickness="0.22 m"/>
+        <layers material="material_6" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_17" name="Breeze block ceiling insul-2cm">
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_29" thickness="0.02 m"/>
+        <layers material="material_6" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_18" name="Breeze block ceiling insul-2cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_29" thickness="0.02 m"/>
+        <layers material="material_6" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_19" name="Breeze block ceiling insul-2cm_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_29" thickness="0.02 m"/>
+        <layers material="material_6" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_20" name="Breeze block ceiling insul-30cm">
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_6" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_21" name="Breeze block ceiling_EnEV2016">
+        <layers material="material_76" thickness="0.01 m"/>
+        <layers material="material_30" thickness="0.13 m"/>
+        <layers material="material_6" thickness="0.13 m"/>
+      </constructions>
+      <constructions constructionId="construction_22" name="Breeze block ceiling_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.01 m"/>
+        <layers material="material_6" thickness="0.13 m"/>
+      </constructions>
+      <constructions constructionId="construction_23" name="Breeze block ceiling_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.01 m"/>
+        <layers material="material_6" thickness="0.13 m"/>
+      </constructions>
+      <constructions constructionId="construction_32" name="Concrete ceiling foam insul-6cm">
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_26" thickness="0.06 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_33" name="Concrete ceiling foam insul-6cm_EnEV2016">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.09 m"/>
+        <layers material="material_26" thickness="0.06 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_34" name="Concrete ceiling foam insul-6cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_26" thickness="0.06 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_35" name="Concrete ceiling foam insul-6cm_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.03 m"/>
+        <layers material="material_26" thickness="0.06 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_36" name="Concrete ceiling insul-10cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.1 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_37" name="Concrete ceiling insul-10cm_EnEV2016">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.045 m"/>
+        <layers material="material_29" thickness="0.1 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_38" name="Concrete ceiling insul-10cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.1 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_39" name="Concrete ceiling insul-10cm_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.1 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_40" name="Concrete ceiling insul-12cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_41" name="Concrete ceiling insul-12cm_EnEV2016">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.03 m"/>
+        <layers material="material_29" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_42" name="Concrete ceiling insul-12cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_43" name="Concrete ceiling insul-12cm_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.12 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_44" name="Concrete ceiling insul-14cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.14 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_45" name="Concrete ceiling insul-14cm_EnEV2016">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.015 m"/>
+        <layers material="material_29" thickness="0.14 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_46" name="Concrete ceiling insul-14cm_EnEv2014">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.13 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_47" name="Concrete ceiling insul-14cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.14 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_48" name="Concrete ceiling insul-16cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.16 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_49" name="Concrete ceiling insul-16cmEPS035">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.16 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_50" name="Concrete ceiling insul-16cmEPS040">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.16 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_51" name="Concrete ceiling insul-16cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.16 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_52" name="Concrete ceiling insul-20cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.2 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_53" name="Concrete ceiling insul-24cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.24 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_54" name="Concrete ceiling insul-2cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.02 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_55" name="Concrete ceiling insul-2cm_EnEV2016">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_29" thickness="0.02 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_56" name="Concrete ceiling insul-2cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.02 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_57" name="Concrete ceiling insul-2cm_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.02 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_58" name="Concrete ceiling insul-30cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_59" name="Concrete ceiling insul-4cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.04 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_60" name="Concrete ceiling insul-4cm_EnEV2016">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.1 m"/>
+        <layers material="material_29" thickness="0.04 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_61" name="Concrete ceiling insul-4cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.04 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_62" name="Concrete ceiling insul-4cm_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.04 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_63" name="Concrete ceiling insul-5cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.05 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_64" name="Concrete ceiling insul-5cm_EnEV2016">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.09 m"/>
+        <layers material="material_29" thickness="0.05 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_65" name="Concrete ceiling insul-5cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.05 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_66" name="Concrete ceiling insul-5cm_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.05 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_67" name="Concrete ceiling insul-8cm">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_68" name="Concrete ceiling insul-8cm_EnEV2016">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.065 m"/>
+        <layers material="material_29" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_69" name="Concrete ceiling insul-8cm_RefAdv">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_70" name="Concrete ceiling insul-8cm_RefMed">
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_76" thickness="0.02 m"/>
+        <layers material="material_29" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_71" name="Concrete ceiling with gravel insul-8cm">
+        <layers material="material_51" thickness="0.1 m"/>
+        <layers material="material_29" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_72" name="Concrete ceiling with gravel insul-8cm_EnEV2016">
+        <layers material="material_51" thickness="0.1 m"/>
+        <layers material="material_30" thickness="0.06 m"/>
+        <layers material="material_29" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_73" name="Concrete ceiling with gravel insul-8cm_RefAdv">
+        <layers material="material_51" thickness="0.1 m"/>
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_29" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_74" name="Concrete ceiling with gravel insul-8cm_RefMed">
+        <layers material="material_51" thickness="0.1 m"/>
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_29" thickness="0.08 m"/>
+        <layers material="material_14" thickness="0.15 m"/>
+      </constructions>
+      <constructions constructionId="construction_172" name="Wood ceiling infill cob">
+        <layers material="material_89" thickness="0.02 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_173" name="Wood ceiling infill cob and dead floor">
+        <layers material="material_82" thickness="0.02 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_94" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_174" name="Wood ceiling infill cob and dead floor_EnEV2016">
+        <layers material="material_30" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.02 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_94" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_175" name="Wood ceiling infill cob and dead floor_RefAdv">
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_82" thickness="0.02 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_94" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_176" name="Wood ceiling infill cob and dead floor_RefMed">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_82" thickness="0.02 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+        <layers material="material_94" thickness="0.1 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_177" name="Wood ceiling infill cob_EnEV2016">
+        <layers material="material_30" thickness="0.115 m"/>
+        <layers material="material_89" thickness="0.02 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_178" name="Wood ceiling infill cob_RefAdv">
+        <layers material="material_30" thickness="0.3 m"/>
+        <layers material="material_89" thickness="0.02 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+      <constructions constructionId="construction_179" name="Wood ceiling infill cob_RefMed">
+        <layers material="material_30" thickness="0.12 m"/>
+        <layers material="material_89" thickness="0.02 m"/>
+        <layers material="material_93" thickness="0.25 m"/>
+        <layers material="material_82" thickness="0.01 m"/>
+      </constructions>
+    </constructionCategories>
+    <constructionCategories name="sharedWall">
+      <constructions constructionId="construction_12" name="Beton shared wall">
+        <layers material="material_6" thickness="0.15 m"/>
+      </constructions>
+    </constructionCategories>
+    <constructionCategories name="internalWall">
+      <constructions constructionId="construction_11" name="Beton internal wall">
+        <layers material="material_6" thickness="0.06 m"/>
+      </constructions>
+    </constructionCategories>
+    <constructionCategories name="intermediaryFloor">
+      <constructions constructionId="construction_10" name="Beton intermediary floor">
+        <layers material="material_6" thickness="0.2 m"/>
+      </constructions>
+    </constructionCategories>
+  </materialCatalog>
 </buildphys:BuildingPhysicsCatalog>
diff --git a/de.hftstuttgart.buildingphysics/catalogs/migrateFromSimStadt.xsl b/de.hftstuttgart.buildingphysics/catalogs/migrateFromSimStadt.xsl
index 14fe5d89fa8366e1d565ace348a3f4bbd0bba946..1a8565a2d2144636f7cb8e89cb9dc82c32faf296 100644
--- a/de.hftstuttgart.buildingphysics/catalogs/migrateFromSimStadt.xsl
+++ b/de.hftstuttgart.buildingphysics/catalogs/migrateFromSimStadt.xsl
@@ -91,9 +91,9 @@
 	</xsl:template>
 
 	<xsl:template match="constructionType">
-		<xsl:element name="mountings">
-			<xsl:attribute name="mountingId">
-				<xsl:value-of select="'mounting_'" /><xsl:value-of select="id" />
+		<xsl:element name="constructions">
+			<xsl:attribute name="constructionId">
+				<xsl:value-of select="'construction_'" /><xsl:value-of select="id" />
 			</xsl:attribute>
 			<xsl:attribute name="name"><xsl:value-of select="name" /></xsl:attribute>
 			<xsl:apply-templates select="layer" />
diff --git a/de.hftstuttgart.buildingphysics/model/buildingphysics.aird b/de.hftstuttgart.buildingphysics/model/buildingphysics.aird
index a967b96c1225aa0e8b79061addccc9f4e85ff517..53f859a38fff0d235e618dcf49da7ab35cd22d1b 100644
--- a/de.hftstuttgart.buildingphysics/model/buildingphysics.aird
+++ b/de.hftstuttgart.buildingphysics/model/buildingphysics.aird
@@ -6,9 +6,10 @@
     <semanticResources>platform:/resource/de.hftstuttgart.cityunits.model/model/Quantities.ecore</semanticResources>
     <semanticResources>platform:/resource/de.hftstuttgart.cityunits.model/model/Quantities.genmodel</semanticResources>
     <semanticResources>http://www.hftstuttgart.de/buildingphysics</semanticResources>
+    <semanticResources>../catalogs/2020%20German%20Buildings%20IWU.xmi</semanticResources>
     <ownedViews xmi:type="viewpoint:DView" uid="_nfHygB3ZEeuNsK3dZmTkbQ">
       <viewpoint xmi:type="description:Viewpoint" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']"/>
-      <ownedRepresentationDescriptors xmi:type="viewpoint:DRepresentationDescriptor" uid="_JKPtIZUqEeudooziRGqkJA" name="Buildingphysics Class Diagram" repPath="#_JKN38JUqEeudooziRGqkJA" changeId="5910fc7c-ffb8-4a2a-9d44-0858cf3e2591">
+      <ownedRepresentationDescriptors xmi:type="viewpoint:DRepresentationDescriptor" uid="_JKPtIZUqEeudooziRGqkJA" name="Buildingphysics Class Diagram" repPath="#_JKN38JUqEeudooziRGqkJA" changeId="71726de9-de49-46bf-ba79-c7575f2c14bd">
         <description xmi:type="description_1:DiagramDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']"/>
         <target xmi:type="ecore:EPackage" href="buildingphysics.ecore#/"/>
       </ownedRepresentationDescriptors>
@@ -880,9 +881,9 @@
         <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/>
       </ownedElements>
     </ownedDiagramElements>
-    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_i_7mkbCmEeup29SeaUMpQQ" name="Mounting" tooltipText="" outgoingEdges="_jAMFQLCmEeup29SeaUMpQQ" incomingEdges="_jAK3JrCmEeup29SeaUMpQQ" width="12" height="10">
-      <target xmi:type="ecore:EClass" href="buildingphysics.ecore#//Mounting"/>
-      <semanticElements xmi:type="ecore:EClass" href="buildingphysics.ecore#//Mounting"/>
+    <ownedDiagramElements xmi:type="diagram:DNodeList" uid="_i_7mkbCmEeup29SeaUMpQQ" name="Construction" tooltipText="" outgoingEdges="_jAMFQLCmEeup29SeaUMpQQ" incomingEdges="_jAK3JrCmEeup29SeaUMpQQ" width="12" height="10">
+      <target xmi:type="ecore:EClass" href="buildingphysics.ecore#//Construction"/>
+      <semanticElements xmi:type="ecore:EClass" href="buildingphysics.ecore#//Construction"/>
       <arrangeConstraints>KEEP_LOCATION</arrangeConstraints>
       <arrangeConstraints>KEEP_SIZE</arrangeConstraints>
       <arrangeConstraints>KEEP_RATIO</arrangeConstraints>
@@ -890,40 +891,35 @@
         <description xmi:type="style:FlatContainerStyleDescription" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@style"/>
       </ownedStyle>
       <actualMapping xmi:type="description_1:ContainerMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']"/>
-      <ownedElements xmi:type="diagram:DNodeListElement" uid="_eYlQYL4tEeuIHZm4y-I19A" name="mountingId : EString" tooltipText="">
-        <target xmi:type="ecore:EAttribute" href="buildingphysics.ecore#//Mounting/mountingId"/>
-        <semanticElements xmi:type="ecore:EAttribute" href="buildingphysics.ecore#//Mounting/mountingId"/>
+      <ownedElements xmi:type="diagram:DNodeListElement" uid="_eYlQYL4tEeuIHZm4y-I19A" name="constructionId : EString" tooltipText="">
+        <target xmi:type="ecore:EAttribute" href="buildingphysics.ecore#//Construction/constructionId"/>
+        <semanticElements xmi:type="ecore:EAttribute" href="buildingphysics.ecore#//Construction/constructionId"/>
         <ownedStyle xmi:type="diagram:BundledImage" uid="_eYlQYb4tEeuIHZm4y-I19A" labelAlignment="LEFT" description="_J2qHNJUqEeudooziRGqkJA">
           <labelFormat>bold</labelFormat>
         </ownedStyle>
         <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/>
       </ownedElements>
       <ownedElements xmi:type="diagram:DNodeListElement" uid="_jAIa4bCmEeup29SeaUMpQQ" name="name : EString" tooltipText="">
-        <target xmi:type="ecore:EAttribute" href="buildingphysics.ecore#//Mounting/name"/>
-        <semanticElements xmi:type="ecore:EAttribute" href="buildingphysics.ecore#//Mounting/name"/>
+        <target xmi:type="ecore:EAttribute" href="buildingphysics.ecore#//Construction/name"/>
+        <semanticElements xmi:type="ecore:EAttribute" href="buildingphysics.ecore#//Construction/name"/>
         <ownedStyle xmi:type="diagram:BundledImage" uid="_jAIa4rCmEeup29SeaUMpQQ" labelAlignment="LEFT" description="_J2qHNJUqEeudooziRGqkJA">
           <labelFormat>bold</labelFormat>
         </ownedStyle>
         <actualMapping xmi:type="description_1:NodeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@containerMappings[name='EC%20EClass']/@subNodeMappings[name='EC%20EAttribute']"/>
       </ownedElements>
     </ownedDiagramElements>
-    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_jAKQHLCmEeup29SeaUMpQQ" name="[1..*] constructionCategories" sourceNode="_J2mc05UqEeudooziRGqkJA" targetNode="_i_5KU7CmEeup29SeaUMpQQ">
+    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_jAKQHLCmEeup29SeaUMpQQ" name="[0..*] constructionCategories" sourceNode="_J2mc05UqEeudooziRGqkJA" targetNode="_i_5KU7CmEeup29SeaUMpQQ">
       <target xmi:type="ecore:EReference" href="buildingphysics.ecore#//MaterialCatalog/constructionCategories"/>
       <semanticElements xmi:type="ecore:EReference" href="buildingphysics.ecore#//MaterialCatalog/constructionCategories"/>
-      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_jAK3ILCmEeup29SeaUMpQQ" description="_J2uYoZUqEeudooziRGqkJA" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
-        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_jAK3IrCmEeup29SeaUMpQQ" showIcon="false">
-          <customFeatures>labelSize</customFeatures>
-          <labelFormat>bold</labelFormat>
-        </centerLabelStyle>
-        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_jAK3IbCmEeup29SeaUMpQQ" showIcon="false" labelColor="39,76,114">
-          <customFeatures>labelSize</customFeatures>
-        </endLabelStyle>
+      <ownedStyle xmi:type="diagram:EdgeStyle" uid="_NLg8jMBTEeuIHZm4y-I19A" description="_J2u_t5UqEeudooziRGqkJA" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
+        <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_NLg8jsBTEeuIHZm4y-I19A" showIcon="false"/>
+        <endLabelStyle xmi:type="diagram:EndLabelStyle" uid="_NLg8jcBTEeuIHZm4y-I19A" labelSize="6" showIcon="false" labelColor="39,76,114"/>
       </ownedStyle>
       <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
     </ownedDiagramElements>
-    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_jAK3JrCmEeup29SeaUMpQQ" name="[0..*] mountings" sourceNode="_i_5KU7CmEeup29SeaUMpQQ" targetNode="_i_7mkbCmEeup29SeaUMpQQ">
-      <target xmi:type="ecore:EReference" href="buildingphysics.ecore#//ConstructionCategory/mountings"/>
-      <semanticElements xmi:type="ecore:EReference" href="buildingphysics.ecore#//ConstructionCategory/mountings"/>
+    <ownedDiagramElements xmi:type="diagram:DEdge" uid="_jAK3JrCmEeup29SeaUMpQQ" name="[0..*] constructions" sourceNode="_i_5KU7CmEeup29SeaUMpQQ" targetNode="_i_7mkbCmEeup29SeaUMpQQ">
+      <target xmi:type="ecore:EReference" href="buildingphysics.ecore#//ConstructionCategory/constructions"/>
+      <semanticElements xmi:type="ecore:EReference" href="buildingphysics.ecore#//ConstructionCategory/constructions"/>
       <ownedStyle xmi:type="diagram:EdgeStyle" uid="_jALeMLCmEeup29SeaUMpQQ" description="_J2u_t5UqEeudooziRGqkJA" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
         <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_jALeMrCmEeup29SeaUMpQQ" showIcon="false">
           <customFeatures>labelSize</customFeatures>
@@ -949,8 +945,8 @@
       <actualMapping xmi:type="description_1:EdgeMapping" href="platform:/plugin/org.eclipse.emf.ecoretools.design/description/ecore.odesign#//@ownedViewpoints[name='Design']/@ownedRepresentations[name='Entities']/@defaultLayer/@edgeMappings[name='EC_EReference']"/>
     </ownedDiagramElements>
     <ownedDiagramElements xmi:type="diagram:DEdge" uid="_jAMFQLCmEeup29SeaUMpQQ" name="[1..*] layers" sourceNode="_i_7mkbCmEeup29SeaUMpQQ" targetNode="_i_5xYrCmEeup29SeaUMpQQ">
-      <target xmi:type="ecore:EReference" href="buildingphysics.ecore#//Mounting/layers"/>
-      <semanticElements xmi:type="ecore:EReference" href="buildingphysics.ecore#//Mounting/layers"/>
+      <target xmi:type="ecore:EReference" href="buildingphysics.ecore#//Construction/layers"/>
+      <semanticElements xmi:type="ecore:EReference" href="buildingphysics.ecore#//Construction/layers"/>
       <ownedStyle xmi:type="diagram:EdgeStyle" uid="_jAMFQbCmEeup29SeaUMpQQ" description="_J2uYoZUqEeudooziRGqkJA" sourceArrow="FillDiamond" routingStyle="manhattan" strokeColor="0,0,0">
         <centerLabelStyle xmi:type="diagram:CenterLabelStyle" uid="_jAMFQ7CmEeup29SeaUMpQQ" showIcon="false">
           <customFeatures>labelSize</customFeatures>
diff --git a/de.hftstuttgart.buildingphysics/model/buildingphysics.ecore b/de.hftstuttgart.buildingphysics/model/buildingphysics.ecore
index cfa87223b2f1146d46da728e6f82263fbcc84fe4..cde6b2829843dcbcde62ee5e5696a13a5ecb7df2 100644
--- a/de.hftstuttgart.buildingphysics/model/buildingphysics.ecore
+++ b/de.hftstuttgart.buildingphysics/model/buildingphysics.ecore
@@ -102,11 +102,11 @@
   </eClassifiers>
   <eClassifiers xsi:type="ecore:EClass" name="ConstructionCategory">
     <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
-    <eStructuralFeatures xsi:type="ecore:EReference" name="mountings" upperBound="-1"
-        eType="#//Mounting" containment="true"/>
+    <eStructuralFeatures xsi:type="ecore:EReference" name="constructions" upperBound="-1"
+        eType="#//Construction" containment="true"/>
   </eClassifiers>
-  <eClassifiers xsi:type="ecore:EClass" name="Mounting">
-    <eStructuralFeatures xsi:type="ecore:EAttribute" name="mountingId" lowerBound="1"
+  <eClassifiers xsi:type="ecore:EClass" name="Construction">
+    <eStructuralFeatures xsi:type="ecore:EAttribute" name="constructionId" lowerBound="1"
         eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString" iD="true"/>
     <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
     <eStructuralFeatures xsi:type="ecore:EReference" name="layers" lowerBound="1"
diff --git a/de.hftstuttgart.buildingphysics/model/buildingphysics.genmodel b/de.hftstuttgart.buildingphysics/model/buildingphysics.genmodel
index baee9e7992b525d6307bfc7a3ba42149afdae3ba..4f1ce526b57c24bfe0f06d3a8c10214deba02620 100644
--- a/de.hftstuttgart.buildingphysics/model/buildingphysics.genmodel
+++ b/de.hftstuttgart.buildingphysics/model/buildingphysics.genmodel
@@ -63,12 +63,12 @@
     </genClasses>
     <genClasses ecoreClass="buildingphysics.ecore#//ConstructionCategory">
       <genFeatures createChild="false" ecoreFeature="ecore:EAttribute buildingphysics.ecore#//ConstructionCategory/name"/>
-      <genFeatures property="None" createChild="false" ecoreFeature="ecore:EReference buildingphysics.ecore#//ConstructionCategory/mountings"/>
+      <genFeatures property="None" createChild="false" ecoreFeature="ecore:EReference buildingphysics.ecore#//ConstructionCategory/constructions"/>
     </genClasses>
-    <genClasses image="false" ecoreClass="buildingphysics.ecore#//Mounting">
-      <genFeatures createChild="false" ecoreFeature="ecore:EAttribute buildingphysics.ecore#//Mounting/mountingId"/>
-      <genFeatures createChild="false" ecoreFeature="ecore:EAttribute buildingphysics.ecore#//Mounting/name"/>
-      <genFeatures property="None" children="true" createChild="true" ecoreFeature="ecore:EReference buildingphysics.ecore#//Mounting/layers"/>
+    <genClasses image="false" ecoreClass="buildingphysics.ecore#//Construction">
+      <genFeatures createChild="false" ecoreFeature="ecore:EAttribute buildingphysics.ecore#//Construction/constructionId"/>
+      <genFeatures createChild="false" ecoreFeature="ecore:EAttribute buildingphysics.ecore#//Construction/name"/>
+      <genFeatures property="None" children="true" createChild="true" ecoreFeature="ecore:EReference buildingphysics.ecore#//Construction/layers"/>
     </genClasses>
     <genClasses image="false" ecoreClass="buildingphysics.ecore#//Layer">
       <genFeatures notify="false" createChild="false" propertySortChoices="true" ecoreFeature="ecore:EReference buildingphysics.ecore#//Layer/material"
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/BuildingPhysicsFactory.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/BuildingPhysicsFactory.java
index 72f24c573a5d61d13a678c65e17d235165a4a281..c5c78a1b11fbee975697941ce2a76830b7cc9c01 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/BuildingPhysicsFactory.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/BuildingPhysicsFactory.java
@@ -85,13 +85,13 @@ public interface BuildingPhysicsFactory extends EFactory {
 	ConstructionCategory createConstructionCategory();
 
 	/**
-	 * Returns a new object of class '<em>Mounting</em>'.
+	 * Returns a new object of class '<em>Construction</em>'.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @return a new object of class '<em>Mounting</em>'.
+	 * @return a new object of class '<em>Construction</em>'.
 	 * @generated
 	 */
-	Mounting createMounting();
+	Construction createConstruction();
 
 	/**
 	 * Returns a new object of class '<em>Layer</em>'.
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/BuildingPhysicsPackage.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/BuildingPhysicsPackage.java
index d5927917649feddd43613c46caf8046e9f02b11d..74cf0fa7c168d38a1f9783aa2d1103cc8e7e95e1 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/BuildingPhysicsPackage.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/BuildingPhysicsPackage.java
@@ -641,13 +641,13 @@ public interface BuildingPhysicsPackage extends EPackage {
 	int CONSTRUCTION_CATEGORY__NAME = 0;
 
 	/**
-	 * The feature id for the '<em><b>Mountings</b></em>' containment reference list.
+	 * The feature id for the '<em><b>Constructions</b></em>' containment reference list.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @generated
 	 * @ordered
 	 */
-	int CONSTRUCTION_CATEGORY__MOUNTINGS = 1;
+	int CONSTRUCTION_CATEGORY__CONSTRUCTIONS = 1;
 
 	/**
 	 * The number of structural features of the '<em>Construction Category</em>' class.
@@ -668,23 +668,23 @@ public interface BuildingPhysicsPackage extends EPackage {
 	int CONSTRUCTION_CATEGORY_OPERATION_COUNT = 0;
 
 	/**
-	 * The meta object id for the '{@link de.hftstuttgart.buildingphysics.impl.MountingImpl <em>Mounting</em>}' class.
+	 * The meta object id for the '{@link de.hftstuttgart.buildingphysics.impl.ConstructionImpl <em>Construction</em>}' class.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @see de.hftstuttgart.buildingphysics.impl.MountingImpl
-	 * @see de.hftstuttgart.buildingphysics.impl.BuildingPhysicsPackageImpl#getMounting()
+	 * @see de.hftstuttgart.buildingphysics.impl.ConstructionImpl
+	 * @see de.hftstuttgart.buildingphysics.impl.BuildingPhysicsPackageImpl#getConstruction()
 	 * @generated
 	 */
-	int MOUNTING = 8;
+	int CONSTRUCTION = 8;
 
 	/**
-	 * The feature id for the '<em><b>Mounting Id</b></em>' attribute.
+	 * The feature id for the '<em><b>Construction Id</b></em>' attribute.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @generated
 	 * @ordered
 	 */
-	int MOUNTING__MOUNTING_ID = 0;
+	int CONSTRUCTION__CONSTRUCTION_ID = 0;
 
 	/**
 	 * The feature id for the '<em><b>Name</b></em>' attribute.
@@ -693,7 +693,7 @@ public interface BuildingPhysicsPackage extends EPackage {
 	 * @generated
 	 * @ordered
 	 */
-	int MOUNTING__NAME = 1;
+	int CONSTRUCTION__NAME = 1;
 
 	/**
 	 * The feature id for the '<em><b>Layers</b></em>' containment reference list.
@@ -702,25 +702,25 @@ public interface BuildingPhysicsPackage extends EPackage {
 	 * @generated
 	 * @ordered
 	 */
-	int MOUNTING__LAYERS = 2;
+	int CONSTRUCTION__LAYERS = 2;
 
 	/**
-	 * The number of structural features of the '<em>Mounting</em>' class.
+	 * The number of structural features of the '<em>Construction</em>' class.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @generated
 	 * @ordered
 	 */
-	int MOUNTING_FEATURE_COUNT = 3;
+	int CONSTRUCTION_FEATURE_COUNT = 3;
 
 	/**
-	 * The number of operations of the '<em>Mounting</em>' class.
+	 * The number of operations of the '<em>Construction</em>' class.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @generated
 	 * @ordered
 	 */
-	int MOUNTING_OPERATION_COUNT = 0;
+	int CONSTRUCTION_OPERATION_COUNT = 0;
 
 	/**
 	 * The meta object id for the '{@link de.hftstuttgart.buildingphysics.impl.LayerImpl <em>Layer</em>}' class.
@@ -1245,58 +1245,58 @@ public interface BuildingPhysicsPackage extends EPackage {
 	EAttribute getConstructionCategory_Name();
 
 	/**
-	 * Returns the meta object for the containment reference list '{@link de.hftstuttgart.buildingphysics.ConstructionCategory#getMountings <em>Mountings</em>}'.
+	 * Returns the meta object for the containment reference list '{@link de.hftstuttgart.buildingphysics.ConstructionCategory#getConstructions <em>Constructions</em>}'.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @return the meta object for the containment reference list '<em>Mountings</em>'.
-	 * @see de.hftstuttgart.buildingphysics.ConstructionCategory#getMountings()
+	 * @return the meta object for the containment reference list '<em>Constructions</em>'.
+	 * @see de.hftstuttgart.buildingphysics.ConstructionCategory#getConstructions()
 	 * @see #getConstructionCategory()
 	 * @generated
 	 */
-	EReference getConstructionCategory_Mountings();
+	EReference getConstructionCategory_Constructions();
 
 	/**
-	 * Returns the meta object for class '{@link de.hftstuttgart.buildingphysics.Mounting <em>Mounting</em>}'.
+	 * Returns the meta object for class '{@link de.hftstuttgart.buildingphysics.Construction <em>Construction</em>}'.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @return the meta object for class '<em>Mounting</em>'.
-	 * @see de.hftstuttgart.buildingphysics.Mounting
+	 * @return the meta object for class '<em>Construction</em>'.
+	 * @see de.hftstuttgart.buildingphysics.Construction
 	 * @generated
 	 */
-	EClass getMounting();
+	EClass getConstruction();
 
 	/**
-	 * Returns the meta object for the attribute '{@link de.hftstuttgart.buildingphysics.Mounting#getMountingId <em>Mounting Id</em>}'.
+	 * Returns the meta object for the attribute '{@link de.hftstuttgart.buildingphysics.Construction#getConstructionId <em>Construction Id</em>}'.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @return the meta object for the attribute '<em>Mounting Id</em>'.
-	 * @see de.hftstuttgart.buildingphysics.Mounting#getMountingId()
-	 * @see #getMounting()
+	 * @return the meta object for the attribute '<em>Construction Id</em>'.
+	 * @see de.hftstuttgart.buildingphysics.Construction#getConstructionId()
+	 * @see #getConstruction()
 	 * @generated
 	 */
-	EAttribute getMounting_MountingId();
+	EAttribute getConstruction_ConstructionId();
 
 	/**
-	 * Returns the meta object for the attribute '{@link de.hftstuttgart.buildingphysics.Mounting#getName <em>Name</em>}'.
+	 * Returns the meta object for the attribute '{@link de.hftstuttgart.buildingphysics.Construction#getName <em>Name</em>}'.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @return the meta object for the attribute '<em>Name</em>'.
-	 * @see de.hftstuttgart.buildingphysics.Mounting#getName()
-	 * @see #getMounting()
+	 * @see de.hftstuttgart.buildingphysics.Construction#getName()
+	 * @see #getConstruction()
 	 * @generated
 	 */
-	EAttribute getMounting_Name();
+	EAttribute getConstruction_Name();
 
 	/**
-	 * Returns the meta object for the containment reference list '{@link de.hftstuttgart.buildingphysics.Mounting#getLayers <em>Layers</em>}'.
+	 * Returns the meta object for the containment reference list '{@link de.hftstuttgart.buildingphysics.Construction#getLayers <em>Layers</em>}'.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @return the meta object for the containment reference list '<em>Layers</em>'.
-	 * @see de.hftstuttgart.buildingphysics.Mounting#getLayers()
-	 * @see #getMounting()
+	 * @see de.hftstuttgart.buildingphysics.Construction#getLayers()
+	 * @see #getConstruction()
 	 * @generated
 	 */
-	EReference getMounting_Layers();
+	EReference getConstruction_Layers();
 
 	/**
 	 * Returns the meta object for class '{@link de.hftstuttgart.buildingphysics.Layer <em>Layer</em>}'.
@@ -1722,30 +1722,30 @@ public interface BuildingPhysicsPackage extends EPackage {
 		EAttribute CONSTRUCTION_CATEGORY__NAME = eINSTANCE.getConstructionCategory_Name();
 
 		/**
-		 * The meta object literal for the '<em><b>Mountings</b></em>' containment reference list feature.
+		 * The meta object literal for the '<em><b>Constructions</b></em>' containment reference list feature.
 		 * <!-- begin-user-doc -->
 		 * <!-- end-user-doc -->
 		 * @generated
 		 */
-		EReference CONSTRUCTION_CATEGORY__MOUNTINGS = eINSTANCE.getConstructionCategory_Mountings();
+		EReference CONSTRUCTION_CATEGORY__CONSTRUCTIONS = eINSTANCE.getConstructionCategory_Constructions();
 
 		/**
-		 * The meta object literal for the '{@link de.hftstuttgart.buildingphysics.impl.MountingImpl <em>Mounting</em>}' class.
+		 * The meta object literal for the '{@link de.hftstuttgart.buildingphysics.impl.ConstructionImpl <em>Construction</em>}' class.
 		 * <!-- begin-user-doc -->
 		 * <!-- end-user-doc -->
-		 * @see de.hftstuttgart.buildingphysics.impl.MountingImpl
-		 * @see de.hftstuttgart.buildingphysics.impl.BuildingPhysicsPackageImpl#getMounting()
+		 * @see de.hftstuttgart.buildingphysics.impl.ConstructionImpl
+		 * @see de.hftstuttgart.buildingphysics.impl.BuildingPhysicsPackageImpl#getConstruction()
 		 * @generated
 		 */
-		EClass MOUNTING = eINSTANCE.getMounting();
+		EClass CONSTRUCTION = eINSTANCE.getConstruction();
 
 		/**
-		 * The meta object literal for the '<em><b>Mounting Id</b></em>' attribute feature.
+		 * The meta object literal for the '<em><b>Construction Id</b></em>' attribute feature.
 		 * <!-- begin-user-doc -->
 		 * <!-- end-user-doc -->
 		 * @generated
 		 */
-		EAttribute MOUNTING__MOUNTING_ID = eINSTANCE.getMounting_MountingId();
+		EAttribute CONSTRUCTION__CONSTRUCTION_ID = eINSTANCE.getConstruction_ConstructionId();
 
 		/**
 		 * The meta object literal for the '<em><b>Name</b></em>' attribute feature.
@@ -1753,7 +1753,7 @@ public interface BuildingPhysicsPackage extends EPackage {
 		 * <!-- end-user-doc -->
 		 * @generated
 		 */
-		EAttribute MOUNTING__NAME = eINSTANCE.getMounting_Name();
+		EAttribute CONSTRUCTION__NAME = eINSTANCE.getConstruction_Name();
 
 		/**
 		 * The meta object literal for the '<em><b>Layers</b></em>' containment reference list feature.
@@ -1761,7 +1761,7 @@ public interface BuildingPhysicsPackage extends EPackage {
 		 * <!-- end-user-doc -->
 		 * @generated
 		 */
-		EReference MOUNTING__LAYERS = eINSTANCE.getMounting_Layers();
+		EReference CONSTRUCTION__LAYERS = eINSTANCE.getConstruction_Layers();
 
 		/**
 		 * The meta object literal for the '{@link de.hftstuttgart.buildingphysics.impl.LayerImpl <em>Layer</em>}' class.
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/Mounting.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/Construction.java
similarity index 63%
rename from de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/Mounting.java
rename to de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/Construction.java
index b438fa4f48cf481a5d53dcc4c3704d2ec170882a..1afbcdb5e7e65e1515bddedcd34576ad57d9fbb6 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/Mounting.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/Construction.java
@@ -8,44 +8,44 @@ import org.eclipse.emf.ecore.EObject;
 
 /**
  * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>Mounting</b></em>'.
+ * A representation of the model object '<em><b>Construction</b></em>'.
  * <!-- end-user-doc -->
  *
  * <p>
  * The following features are supported:
  * </p>
  * <ul>
- *   <li>{@link de.hftstuttgart.buildingphysics.Mounting#getMountingId <em>Mounting Id</em>}</li>
- *   <li>{@link de.hftstuttgart.buildingphysics.Mounting#getName <em>Name</em>}</li>
- *   <li>{@link de.hftstuttgart.buildingphysics.Mounting#getLayers <em>Layers</em>}</li>
+ *   <li>{@link de.hftstuttgart.buildingphysics.Construction#getConstructionId <em>Construction Id</em>}</li>
+ *   <li>{@link de.hftstuttgart.buildingphysics.Construction#getName <em>Name</em>}</li>
+ *   <li>{@link de.hftstuttgart.buildingphysics.Construction#getLayers <em>Layers</em>}</li>
  * </ul>
  *
- * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMounting()
+ * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction()
  * @model
  * @generated
  */
-public interface Mounting extends EObject {
+public interface Construction extends EObject {
 	/**
-	 * Returns the value of the '<em><b>Mounting Id</b></em>' attribute.
+	 * Returns the value of the '<em><b>Construction Id</b></em>' attribute.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @return the value of the '<em>Mounting Id</em>' attribute.
-	 * @see #setMountingId(String)
-	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMounting_MountingId()
+	 * @return the value of the '<em>Construction Id</em>' attribute.
+	 * @see #setConstructionId(String)
+	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_ConstructionId()
 	 * @model id="true" required="true"
 	 * @generated
 	 */
-	String getMountingId();
+	String getConstructionId();
 
 	/**
-	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Mounting#getMountingId <em>Mounting Id</em>}' attribute.
+	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Construction#getConstructionId <em>Construction Id</em>}' attribute.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @param value the new value of the '<em>Mounting Id</em>' attribute.
-	 * @see #getMountingId()
+	 * @param value the new value of the '<em>Construction Id</em>' attribute.
+	 * @see #getConstructionId()
 	 * @generated
 	 */
-	void setMountingId(String value);
+	void setConstructionId(String value);
 
 	/**
 	 * Returns the value of the '<em><b>Name</b></em>' attribute.
@@ -53,14 +53,14 @@ public interface Mounting extends EObject {
 	 * <!-- end-user-doc -->
 	 * @return the value of the '<em>Name</em>' attribute.
 	 * @see #setName(String)
-	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMounting_Name()
+	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_Name()
 	 * @model required="true"
 	 * @generated
 	 */
 	String getName();
 
 	/**
-	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Mounting#getName <em>Name</em>}' attribute.
+	 * Sets the value of the '{@link de.hftstuttgart.buildingphysics.Construction#getName <em>Name</em>}' attribute.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @param value the new value of the '<em>Name</em>' attribute.
@@ -75,10 +75,10 @@ public interface Mounting extends EObject {
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
 	 * @return the value of the '<em>Layers</em>' containment reference list.
-	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getMounting_Layers()
+	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstruction_Layers()
 	 * @model containment="true" required="true"
 	 * @generated
 	 */
 	EList<Layer> getLayers();
 
-} // Mounting
+} // Construction
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/ConstructionCategory.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/ConstructionCategory.java
index 1843e8d7897c7016f10c2a7c347461df909cbfef..d57c912bbfa080877280bf48fd40c84a48d18c29 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/ConstructionCategory.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/ConstructionCategory.java
@@ -16,7 +16,7 @@ import org.eclipse.emf.ecore.EObject;
  * </p>
  * <ul>
  *   <li>{@link de.hftstuttgart.buildingphysics.ConstructionCategory#getName <em>Name</em>}</li>
- *   <li>{@link de.hftstuttgart.buildingphysics.ConstructionCategory#getMountings <em>Mountings</em>}</li>
+ *   <li>{@link de.hftstuttgart.buildingphysics.ConstructionCategory#getConstructions <em>Constructions</em>}</li>
  * </ul>
  *
  * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstructionCategory()
@@ -47,15 +47,15 @@ public interface ConstructionCategory extends EObject {
 	void setName(String value);
 
 	/**
-	 * Returns the value of the '<em><b>Mountings</b></em>' containment reference list.
-	 * The list contents are of type {@link de.hftstuttgart.buildingphysics.Mounting}.
+	 * Returns the value of the '<em><b>Constructions</b></em>' containment reference list.
+	 * The list contents are of type {@link de.hftstuttgart.buildingphysics.Construction}.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @return the value of the '<em>Mountings</em>' containment reference list.
-	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstructionCategory_Mountings()
+	 * @return the value of the '<em>Constructions</em>' containment reference list.
+	 * @see de.hftstuttgart.buildingphysics.BuildingPhysicsPackage#getConstructionCategory_Constructions()
 	 * @model containment="true"
 	 * @generated
 	 */
-	EList<Mounting> getMountings();
+	EList<Construction> getConstructions();
 
 } // ConstructionCategory
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsFactoryImpl.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsFactoryImpl.java
index 87ba9f0d831fc117ed812bd5134e261b500303b6..8730c8e81d57c2e421bd6b42b11b1a8725307c97 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsFactoryImpl.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsFactoryImpl.java
@@ -70,8 +70,8 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
 			return createMaterial();
 		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY:
 			return createConstructionCategory();
-		case BuildingPhysicsPackage.MOUNTING:
-			return createMounting();
+		case BuildingPhysicsPackage.CONSTRUCTION:
+			return createConstruction();
 		case BuildingPhysicsPackage.LAYER:
 			return createLayer();
 		default:
@@ -162,9 +162,9 @@ public class BuildingPhysicsFactoryImpl extends EFactoryImpl implements Building
 	 * @generated
 	 */
 	@Override
-	public Mounting createMounting() {
-		MountingImpl mounting = new MountingImpl();
-		return mounting;
+	public Construction createConstruction() {
+		ConstructionImpl construction = new ConstructionImpl();
+		return construction;
 	}
 
 	/**
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsPackageImpl.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsPackageImpl.java
index 154e60e44cfaf2c31f8f9f2a4a37f1d296e86fd4..7fc23f44a5b6436979e24ee1d7dd4cfd0e53fc00 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsPackageImpl.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/BuildingPhysicsPackageImpl.java
@@ -6,12 +6,12 @@ import de.hftstuttgart.buildingphysics.BuildingPhysicsCatalog;
 import de.hftstuttgart.buildingphysics.BuildingPhysicsFactory;
 import de.hftstuttgart.buildingphysics.BuildingPhysicsPackage;
 import de.hftstuttgart.buildingphysics.Catalog;
+import de.hftstuttgart.buildingphysics.Construction;
 import de.hftstuttgart.buildingphysics.ConstructionCategory;
 import de.hftstuttgart.buildingphysics.Layer;
 import de.hftstuttgart.buildingphysics.Material;
 import de.hftstuttgart.buildingphysics.MaterialCatalog;
 import de.hftstuttgart.buildingphysics.MaterialCategory;
-import de.hftstuttgart.buildingphysics.Mounting;
 import de.hftstuttgart.buildingphysics.WindowCatalog;
 import de.hftstuttgart.buildingphysics.WindowType;
 
@@ -92,7 +92,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
 	 * <!-- end-user-doc -->
 	 * @generated
 	 */
-	private EClass mountingEClass = null;
+	private EClass constructionEClass = null;
 
 	/**
 	 * <!-- begin-user-doc -->
@@ -614,7 +614,7 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
 	 * @generated
 	 */
 	@Override
-	public EReference getConstructionCategory_Mountings() {
+	public EReference getConstructionCategory_Constructions() {
 		return (EReference) constructionCategoryEClass.getEStructuralFeatures().get(1);
 	}
 
@@ -624,8 +624,8 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
 	 * @generated
 	 */
 	@Override
-	public EClass getMounting() {
-		return mountingEClass;
+	public EClass getConstruction() {
+		return constructionEClass;
 	}
 
 	/**
@@ -634,8 +634,8 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
 	 * @generated
 	 */
 	@Override
-	public EAttribute getMounting_MountingId() {
-		return (EAttribute) mountingEClass.getEStructuralFeatures().get(0);
+	public EAttribute getConstruction_ConstructionId() {
+		return (EAttribute) constructionEClass.getEStructuralFeatures().get(0);
 	}
 
 	/**
@@ -644,8 +644,8 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
 	 * @generated
 	 */
 	@Override
-	public EAttribute getMounting_Name() {
-		return (EAttribute) mountingEClass.getEStructuralFeatures().get(1);
+	public EAttribute getConstruction_Name() {
+		return (EAttribute) constructionEClass.getEStructuralFeatures().get(1);
 	}
 
 	/**
@@ -654,8 +654,8 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
 	 * @generated
 	 */
 	@Override
-	public EReference getMounting_Layers() {
-		return (EReference) mountingEClass.getEStructuralFeatures().get(2);
+	public EReference getConstruction_Layers() {
+		return (EReference) constructionEClass.getEStructuralFeatures().get(2);
 	}
 
 	/**
@@ -769,12 +769,12 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
 
 		constructionCategoryEClass = createEClass(CONSTRUCTION_CATEGORY);
 		createEAttribute(constructionCategoryEClass, CONSTRUCTION_CATEGORY__NAME);
-		createEReference(constructionCategoryEClass, CONSTRUCTION_CATEGORY__MOUNTINGS);
+		createEReference(constructionCategoryEClass, CONSTRUCTION_CATEGORY__CONSTRUCTIONS);
 
-		mountingEClass = createEClass(MOUNTING);
-		createEAttribute(mountingEClass, MOUNTING__MOUNTING_ID);
-		createEAttribute(mountingEClass, MOUNTING__NAME);
-		createEReference(mountingEClass, MOUNTING__LAYERS);
+		constructionEClass = createEClass(CONSTRUCTION);
+		createEAttribute(constructionEClass, CONSTRUCTION__CONSTRUCTION_ID);
+		createEAttribute(constructionEClass, CONSTRUCTION__NAME);
+		createEReference(constructionEClass, CONSTRUCTION__LAYERS);
 
 		layerEClass = createEClass(LAYER);
 		createEReference(layerEClass, LAYER__MATERIAL);
@@ -941,17 +941,18 @@ public class BuildingPhysicsPackageImpl extends EPackageImpl implements Building
 		initEAttribute(getConstructionCategory_Name(), ecorePackage.getEString(), "name", null, 1, 1,
 				ConstructionCategory.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID,
 				IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
-		initEReference(getConstructionCategory_Mountings(), this.getMounting(), null, "mountings", null, 0, -1,
-				ConstructionCategory.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE,
+		initEReference(getConstructionCategory_Constructions(), this.getConstruction(), null, "constructions", null, 0,
+				-1, ConstructionCategory.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE,
 				!IS_RESOLVE_PROXIES, !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
 
-		initEClass(mountingEClass, Mounting.class, "Mounting", !IS_ABSTRACT, !IS_INTERFACE,
+		initEClass(constructionEClass, Construction.class, "Construction", !IS_ABSTRACT, !IS_INTERFACE,
 				IS_GENERATED_INSTANCE_CLASS);
-		initEAttribute(getMounting_MountingId(), ecorePackage.getEString(), "mountingId", null, 1, 1, Mounting.class,
-				!IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
-		initEAttribute(getMounting_Name(), ecorePackage.getEString(), "name", null, 1, 1, Mounting.class, !IS_TRANSIENT,
-				!IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
-		initEReference(getMounting_Layers(), this.getLayer(), null, "layers", null, 1, -1, Mounting.class,
+		initEAttribute(getConstruction_ConstructionId(), ecorePackage.getEString(), "constructionId", null, 1, 1,
+				Construction.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, IS_ID, IS_UNIQUE,
+				!IS_DERIVED, IS_ORDERED);
+		initEAttribute(getConstruction_Name(), ecorePackage.getEString(), "name", null, 1, 1, Construction.class,
+				!IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
+		initEReference(getConstruction_Layers(), this.getLayer(), null, "layers", null, 1, -1, Construction.class,
 				!IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES, !IS_UNSETTABLE,
 				IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
 
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/ConstructionCategoryImpl.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/ConstructionCategoryImpl.java
index 943c1e85bd9b99af87671818a63a6a2299b48be6..1f8f28517fb6af98b0330b1db4f21e72f4c10b75 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/ConstructionCategoryImpl.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/ConstructionCategoryImpl.java
@@ -3,8 +3,8 @@
 package de.hftstuttgart.buildingphysics.impl;
 
 import de.hftstuttgart.buildingphysics.BuildingPhysicsPackage;
+import de.hftstuttgart.buildingphysics.Construction;
 import de.hftstuttgart.buildingphysics.ConstructionCategory;
-import de.hftstuttgart.buildingphysics.Mounting;
 
 import java.util.Collection;
 
@@ -31,7 +31,7 @@ import org.eclipse.emf.ecore.util.InternalEList;
  * </p>
  * <ul>
  *   <li>{@link de.hftstuttgart.buildingphysics.impl.ConstructionCategoryImpl#getName <em>Name</em>}</li>
- *   <li>{@link de.hftstuttgart.buildingphysics.impl.ConstructionCategoryImpl#getMountings <em>Mountings</em>}</li>
+ *   <li>{@link de.hftstuttgart.buildingphysics.impl.ConstructionCategoryImpl#getConstructions <em>Constructions</em>}</li>
  * </ul>
  *
  * @generated
@@ -58,14 +58,14 @@ public class ConstructionCategoryImpl extends MinimalEObjectImpl.Container imple
 	protected String name = NAME_EDEFAULT;
 
 	/**
-	 * The cached value of the '{@link #getMountings() <em>Mountings</em>}' containment reference list.
+	 * The cached value of the '{@link #getConstructions() <em>Constructions</em>}' containment reference list.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @see #getMountings()
+	 * @see #getConstructions()
 	 * @generated
 	 * @ordered
 	 */
-	protected EList<Mounting> mountings;
+	protected EList<Construction> constructions;
 
 	/**
 	 * <!-- begin-user-doc -->
@@ -116,12 +116,12 @@ public class ConstructionCategoryImpl extends MinimalEObjectImpl.Container imple
 	 * @generated
 	 */
 	@Override
-	public EList<Mounting> getMountings() {
-		if (mountings == null) {
-			mountings = new EObjectContainmentEList<Mounting>(Mounting.class, this,
-					BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__MOUNTINGS);
+	public EList<Construction> getConstructions() {
+		if (constructions == null) {
+			constructions = new EObjectContainmentEList<Construction>(Construction.class, this,
+					BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__CONSTRUCTIONS);
 		}
-		return mountings;
+		return constructions;
 	}
 
 	/**
@@ -132,8 +132,8 @@ public class ConstructionCategoryImpl extends MinimalEObjectImpl.Container imple
 	@Override
 	public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
 		switch (featureID) {
-		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__MOUNTINGS:
-			return ((InternalEList<?>) getMountings()).basicRemove(otherEnd, msgs);
+		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__CONSTRUCTIONS:
+			return ((InternalEList<?>) getConstructions()).basicRemove(otherEnd, msgs);
 		}
 		return super.eInverseRemove(otherEnd, featureID, msgs);
 	}
@@ -148,8 +148,8 @@ public class ConstructionCategoryImpl extends MinimalEObjectImpl.Container imple
 		switch (featureID) {
 		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__NAME:
 			return getName();
-		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__MOUNTINGS:
-			return getMountings();
+		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__CONSTRUCTIONS:
+			return getConstructions();
 		}
 		return super.eGet(featureID, resolve, coreType);
 	}
@@ -166,9 +166,9 @@ public class ConstructionCategoryImpl extends MinimalEObjectImpl.Container imple
 		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__NAME:
 			setName((String) newValue);
 			return;
-		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__MOUNTINGS:
-			getMountings().clear();
-			getMountings().addAll((Collection<? extends Mounting>) newValue);
+		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__CONSTRUCTIONS:
+			getConstructions().clear();
+			getConstructions().addAll((Collection<? extends Construction>) newValue);
 			return;
 		}
 		super.eSet(featureID, newValue);
@@ -185,8 +185,8 @@ public class ConstructionCategoryImpl extends MinimalEObjectImpl.Container imple
 		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__NAME:
 			setName(NAME_EDEFAULT);
 			return;
-		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__MOUNTINGS:
-			getMountings().clear();
+		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__CONSTRUCTIONS:
+			getConstructions().clear();
 			return;
 		}
 		super.eUnset(featureID);
@@ -202,8 +202,8 @@ public class ConstructionCategoryImpl extends MinimalEObjectImpl.Container imple
 		switch (featureID) {
 		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__NAME:
 			return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
-		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__MOUNTINGS:
-			return mountings != null && !mountings.isEmpty();
+		case BuildingPhysicsPackage.CONSTRUCTION_CATEGORY__CONSTRUCTIONS:
+			return constructions != null && !constructions.isEmpty();
 		}
 		return super.eIsSet(featureID);
 	}
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MountingImpl.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/ConstructionImpl.java
similarity index 66%
rename from de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MountingImpl.java
rename to de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/ConstructionImpl.java
index 91a19094d0748637123565e15a777ae7f2f44032..cfd8c356e220b1c1f34ad485bf90a36df7228888 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MountingImpl.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/ConstructionImpl.java
@@ -3,8 +3,8 @@
 package de.hftstuttgart.buildingphysics.impl;
 
 import de.hftstuttgart.buildingphysics.BuildingPhysicsPackage;
+import de.hftstuttgart.buildingphysics.Construction;
 import de.hftstuttgart.buildingphysics.Layer;
-import de.hftstuttgart.buildingphysics.Mounting;
 
 import java.util.Collection;
 
@@ -24,39 +24,39 @@ import org.eclipse.emf.ecore.util.InternalEList;
 
 /**
  * <!-- begin-user-doc -->
- * An implementation of the model object '<em><b>Mounting</b></em>'.
+ * An implementation of the model object '<em><b>Construction</b></em>'.
  * <!-- end-user-doc -->
  * <p>
  * The following features are implemented:
  * </p>
  * <ul>
- *   <li>{@link de.hftstuttgart.buildingphysics.impl.MountingImpl#getMountingId <em>Mounting Id</em>}</li>
- *   <li>{@link de.hftstuttgart.buildingphysics.impl.MountingImpl#getName <em>Name</em>}</li>
- *   <li>{@link de.hftstuttgart.buildingphysics.impl.MountingImpl#getLayers <em>Layers</em>}</li>
+ *   <li>{@link de.hftstuttgart.buildingphysics.impl.ConstructionImpl#getConstructionId <em>Construction Id</em>}</li>
+ *   <li>{@link de.hftstuttgart.buildingphysics.impl.ConstructionImpl#getName <em>Name</em>}</li>
+ *   <li>{@link de.hftstuttgart.buildingphysics.impl.ConstructionImpl#getLayers <em>Layers</em>}</li>
  * </ul>
  *
  * @generated
  */
-public class MountingImpl extends MinimalEObjectImpl.Container implements Mounting {
+public class ConstructionImpl extends MinimalEObjectImpl.Container implements Construction {
 	/**
-	 * The default value of the '{@link #getMountingId() <em>Mounting Id</em>}' attribute.
+	 * The default value of the '{@link #getConstructionId() <em>Construction Id</em>}' attribute.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @see #getMountingId()
+	 * @see #getConstructionId()
 	 * @generated
 	 * @ordered
 	 */
-	protected static final String MOUNTING_ID_EDEFAULT = null;
+	protected static final String CONSTRUCTION_ID_EDEFAULT = null;
 
 	/**
-	 * The cached value of the '{@link #getMountingId() <em>Mounting Id</em>}' attribute.
+	 * The cached value of the '{@link #getConstructionId() <em>Construction Id</em>}' attribute.
 	 * <!-- begin-user-doc -->
 	 * <!-- end-user-doc -->
-	 * @see #getMountingId()
+	 * @see #getConstructionId()
 	 * @generated
 	 * @ordered
 	 */
-	protected String mountingId = MOUNTING_ID_EDEFAULT;
+	protected String constructionId = CONSTRUCTION_ID_EDEFAULT;
 
 	/**
 	 * The default value of the '{@link #getName() <em>Name</em>}' attribute.
@@ -93,7 +93,7 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	 * <!-- end-user-doc -->
 	 * @generated
 	 */
-	protected MountingImpl() {
+	protected ConstructionImpl() {
 		super();
 	}
 
@@ -104,7 +104,7 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	 */
 	@Override
 	protected EClass eStaticClass() {
-		return BuildingPhysicsPackage.Literals.MOUNTING;
+		return BuildingPhysicsPackage.Literals.CONSTRUCTION;
 	}
 
 	/**
@@ -113,8 +113,8 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	 * @generated
 	 */
 	@Override
-	public String getMountingId() {
-		return mountingId;
+	public String getConstructionId() {
+		return constructionId;
 	}
 
 	/**
@@ -123,12 +123,12 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	 * @generated
 	 */
 	@Override
-	public void setMountingId(String newMountingId) {
-		String oldMountingId = mountingId;
-		mountingId = newMountingId;
+	public void setConstructionId(String newConstructionId) {
+		String oldConstructionId = constructionId;
+		constructionId = newConstructionId;
 		if (eNotificationRequired())
-			eNotify(new ENotificationImpl(this, Notification.SET, BuildingPhysicsPackage.MOUNTING__MOUNTING_ID,
-					oldMountingId, mountingId));
+			eNotify(new ENotificationImpl(this, Notification.SET, BuildingPhysicsPackage.CONSTRUCTION__CONSTRUCTION_ID,
+					oldConstructionId, constructionId));
 	}
 
 	/**
@@ -151,7 +151,7 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 		String oldName = name;
 		name = newName;
 		if (eNotificationRequired())
-			eNotify(new ENotificationImpl(this, Notification.SET, BuildingPhysicsPackage.MOUNTING__NAME, oldName,
+			eNotify(new ENotificationImpl(this, Notification.SET, BuildingPhysicsPackage.CONSTRUCTION__NAME, oldName,
 					name));
 	}
 
@@ -163,7 +163,7 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	@Override
 	public EList<Layer> getLayers() {
 		if (layers == null) {
-			layers = new EObjectContainmentEList<Layer>(Layer.class, this, BuildingPhysicsPackage.MOUNTING__LAYERS);
+			layers = new EObjectContainmentEList<Layer>(Layer.class, this, BuildingPhysicsPackage.CONSTRUCTION__LAYERS);
 		}
 		return layers;
 	}
@@ -176,7 +176,7 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	@Override
 	public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
 		switch (featureID) {
-		case BuildingPhysicsPackage.MOUNTING__LAYERS:
+		case BuildingPhysicsPackage.CONSTRUCTION__LAYERS:
 			return ((InternalEList<?>) getLayers()).basicRemove(otherEnd, msgs);
 		}
 		return super.eInverseRemove(otherEnd, featureID, msgs);
@@ -190,11 +190,11 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	@Override
 	public Object eGet(int featureID, boolean resolve, boolean coreType) {
 		switch (featureID) {
-		case BuildingPhysicsPackage.MOUNTING__MOUNTING_ID:
-			return getMountingId();
-		case BuildingPhysicsPackage.MOUNTING__NAME:
+		case BuildingPhysicsPackage.CONSTRUCTION__CONSTRUCTION_ID:
+			return getConstructionId();
+		case BuildingPhysicsPackage.CONSTRUCTION__NAME:
 			return getName();
-		case BuildingPhysicsPackage.MOUNTING__LAYERS:
+		case BuildingPhysicsPackage.CONSTRUCTION__LAYERS:
 			return getLayers();
 		}
 		return super.eGet(featureID, resolve, coreType);
@@ -209,13 +209,13 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	@Override
 	public void eSet(int featureID, Object newValue) {
 		switch (featureID) {
-		case BuildingPhysicsPackage.MOUNTING__MOUNTING_ID:
-			setMountingId((String) newValue);
+		case BuildingPhysicsPackage.CONSTRUCTION__CONSTRUCTION_ID:
+			setConstructionId((String) newValue);
 			return;
-		case BuildingPhysicsPackage.MOUNTING__NAME:
+		case BuildingPhysicsPackage.CONSTRUCTION__NAME:
 			setName((String) newValue);
 			return;
-		case BuildingPhysicsPackage.MOUNTING__LAYERS:
+		case BuildingPhysicsPackage.CONSTRUCTION__LAYERS:
 			getLayers().clear();
 			getLayers().addAll((Collection<? extends Layer>) newValue);
 			return;
@@ -231,13 +231,13 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	@Override
 	public void eUnset(int featureID) {
 		switch (featureID) {
-		case BuildingPhysicsPackage.MOUNTING__MOUNTING_ID:
-			setMountingId(MOUNTING_ID_EDEFAULT);
+		case BuildingPhysicsPackage.CONSTRUCTION__CONSTRUCTION_ID:
+			setConstructionId(CONSTRUCTION_ID_EDEFAULT);
 			return;
-		case BuildingPhysicsPackage.MOUNTING__NAME:
+		case BuildingPhysicsPackage.CONSTRUCTION__NAME:
 			setName(NAME_EDEFAULT);
 			return;
-		case BuildingPhysicsPackage.MOUNTING__LAYERS:
+		case BuildingPhysicsPackage.CONSTRUCTION__LAYERS:
 			getLayers().clear();
 			return;
 		}
@@ -252,11 +252,12 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 	@Override
 	public boolean eIsSet(int featureID) {
 		switch (featureID) {
-		case BuildingPhysicsPackage.MOUNTING__MOUNTING_ID:
-			return MOUNTING_ID_EDEFAULT == null ? mountingId != null : !MOUNTING_ID_EDEFAULT.equals(mountingId);
-		case BuildingPhysicsPackage.MOUNTING__NAME:
+		case BuildingPhysicsPackage.CONSTRUCTION__CONSTRUCTION_ID:
+			return CONSTRUCTION_ID_EDEFAULT == null ? constructionId != null
+					: !CONSTRUCTION_ID_EDEFAULT.equals(constructionId);
+		case BuildingPhysicsPackage.CONSTRUCTION__NAME:
 			return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
-		case BuildingPhysicsPackage.MOUNTING__LAYERS:
+		case BuildingPhysicsPackage.CONSTRUCTION__LAYERS:
 			return layers != null && !layers.isEmpty();
 		}
 		return super.eIsSet(featureID);
@@ -273,12 +274,12 @@ public class MountingImpl extends MinimalEObjectImpl.Container implements Mounti
 			return super.toString();
 
 		StringBuilder result = new StringBuilder(super.toString());
-		result.append(" (mountingId: ");
-		result.append(mountingId);
+		result.append(" (constructionId: ");
+		result.append(constructionId);
 		result.append(", name: ");
 		result.append(name);
 		result.append(')');
 		return result.toString();
 	}
 
-} //MountingImpl
+} //ConstructionImpl
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialCategoryImpl.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialCategoryImpl.java
index a05543a886f315a94ad113947e6c729b0cb512ed..6498ca46183698d28ebf80a7fdee90936ed3a936 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialCategoryImpl.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialCategoryImpl.java
@@ -18,6 +18,7 @@ import org.eclipse.emf.ecore.InternalEObject;
 
 import org.eclipse.emf.ecore.impl.ENotificationImpl;
 import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
+
 import org.eclipse.emf.ecore.util.EObjectContainmentWithInverseEList;
 import org.eclipse.emf.ecore.util.InternalEList;
 
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialImpl.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialImpl.java
index f70ee250ca7c58dc6bcd4d655f9970630e4c6c99..d746ccb1d24cc36fc597baf9d3ad10f579cdc284 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialImpl.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/impl/MaterialImpl.java
@@ -4,21 +4,22 @@ package de.hftstuttgart.buildingphysics.impl;
 
 import de.hftstuttgart.buildingphysics.BuildingPhysicsPackage;
 import de.hftstuttgart.buildingphysics.Material;
-
 import de.hftstuttgart.buildingphysics.MaterialCategory;
+
 import de.hftstuttgart.cityunits.model.NullableQuantity;
 
 import de.hftstuttgart.cityunits.model.quantities.QuantitiesFactory;
 import de.hftstuttgart.cityunits.model.quantities.QuantitiesPackage;
 
 import org.eclipse.emf.common.notify.Notification;
-
 import org.eclipse.emf.common.notify.NotificationChain;
-import org.eclipse.emf.ecore.EClass;
 
+import org.eclipse.emf.ecore.EClass;
 import org.eclipse.emf.ecore.InternalEObject;
+
 import org.eclipse.emf.ecore.impl.ENotificationImpl;
 import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
+
 import org.eclipse.emf.ecore.util.EcoreUtil;
 
 /**
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsAdapterFactory.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsAdapterFactory.java
index 9d48dac9ca87a2e9f6fdab619ffd66652abb137c..4712e296aa15cb5a4c696f2f4dc4799747072379 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsAdapterFactory.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsAdapterFactory.java
@@ -107,8 +107,8 @@ public class BuildingPhysicsAdapterFactory extends AdapterFactoryImpl {
 		}
 
 		@Override
-		public Adapter caseMounting(Mounting object) {
-			return createMountingAdapter();
+		public Adapter caseConstruction(Construction object) {
+			return createConstructionAdapter();
 		}
 
 		@Override
@@ -248,16 +248,16 @@ public class BuildingPhysicsAdapterFactory extends AdapterFactoryImpl {
 	}
 
 	/**
-	 * Creates a new adapter for an object of class '{@link de.hftstuttgart.buildingphysics.Mounting <em>Mounting</em>}'.
+	 * Creates a new adapter for an object of class '{@link de.hftstuttgart.buildingphysics.Construction <em>Construction</em>}'.
 	 * <!-- begin-user-doc -->
 	 * This default implementation returns null so that we can easily ignore cases;
 	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
 	 * <!-- end-user-doc -->
 	 * @return the new adapter.
-	 * @see de.hftstuttgart.buildingphysics.Mounting
+	 * @see de.hftstuttgart.buildingphysics.Construction
 	 * @generated
 	 */
-	public Adapter createMountingAdapter() {
+	public Adapter createConstructionAdapter() {
 		return null;
 	}
 
diff --git a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsSwitch.java b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsSwitch.java
index 03f8d4097d0a733e73eb472a786c6d10ef5dfa73..2609a361e536bb1b7eced56f2ebb58e912b19961 100644
--- a/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsSwitch.java
+++ b/de.hftstuttgart.buildingphysics/src/de/hftstuttgart/buildingphysics/util/BuildingPhysicsSwitch.java
@@ -126,9 +126,9 @@ public class BuildingPhysicsSwitch<T> extends Switch<T> {
 				result = defaultCase(theEObject);
 			return result;
 		}
-		case BuildingPhysicsPackage.MOUNTING: {
-			Mounting mounting = (Mounting) theEObject;
-			T result = caseMounting(mounting);
+		case BuildingPhysicsPackage.CONSTRUCTION: {
+			Construction construction = (Construction) theEObject;
+			T result = caseConstruction(construction);
 			if (result == null)
 				result = defaultCase(theEObject);
 			return result;
@@ -266,17 +266,17 @@ public class BuildingPhysicsSwitch<T> extends Switch<T> {
 	}
 
 	/**
-	 * Returns the result of interpreting the object as an instance of '<em>Mounting</em>'.
+	 * Returns the result of interpreting the object as an instance of '<em>Construction</em>'.
 	 * <!-- begin-user-doc -->
 	 * This implementation returns null;
 	 * returning a non-null result will terminate the switch.
 	 * <!-- end-user-doc -->
 	 * @param object the target of the switch.
-	 * @return the result of interpreting the object as an instance of '<em>Mounting</em>'.
+	 * @return the result of interpreting the object as an instance of '<em>Construction</em>'.
 	 * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
 	 * @generated
 	 */
-	public T caseMounting(Mounting object) {
+	public T caseConstruction(Construction object) {
 		return null;
 	}