buildingphysics.ecore 4.49 KB
Newer Older
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
1
2
<?xml version="1.0" encoding="UTF-8"?>
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
4
    xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="buildingphysics" nsURI="http://www.hftstuttgart.de/buildingphysics"
    nsPrefix="buildphys">
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
5
6
7
  <eClassifiers xsi:type="ecore:EClass" name="BuildingPhysicsCatalog">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="author" lowerBound="1"
        eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
8
9
10
11
12
13
14
15
16
17
    <eStructuralFeatures xsi:type="ecore:EReference" name="windowCatalog" lowerBound="1"
        eType="#//WindowCatalog" containment="true"/>
    <eStructuralFeatures xsi:type="ecore:EReference" name="materialCatalog" lowerBound="1"
        eType="#//MaterialCatalog" containment="true"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="WindowType">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
        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:EAttribute" name="uValue" lowerBound="1"
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
18
19
        eType="ecore:EDataType ../../de.hftstuttgart.cityunits.model/model/Quantities.ecore#//QuantityDouble"
        defaultValueLiteral="W/(m²·K)"/>
20
21
22
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="gValue" lowerBound="1"
        eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="glazingNumber" lowerBound="1"
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
23
        eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt" defaultValueLiteral="1"/>
24
25
26
27
28
29
30
31
32
33
34
35
36
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="frameRatio" lowerBound="1"
        eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt">
      <eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
        <details key="documentation" value="In % (between 0 and 100)"/>
      </eAnnotations>
    </eStructuralFeatures>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="Catalog" abstract="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:EAttribute" name="description" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="source" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="WindowCatalog" eSuperTypes="#//Catalog">
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
37
38
39
    <eStructuralFeatures xsi:type="ecore:EReference" name="windowTypes" upperBound="-1"
        eType="#//WindowType" containment="true"/>
  </eClassifiers>
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  <eClassifiers xsi:type="ecore:EClass" name="MaterialCatalog" eSuperTypes="#//Catalog">
    <eStructuralFeatures xsi:type="ecore:EReference" name="materialCategories" upperBound="-1"
        eType="#//MaterialCategory" containment="true"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="MaterialCategory">
    <eStructuralFeatures xsi:type="ecore:EReference" name="material" upperBound="-1"
        eType="#//Material" containment="true"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
  </eClassifiers>
  <eClassifiers xsi:type="ecore:EClass" name="Material">
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EInt"
        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:EAttribute" name="density" lowerBound="1"
        eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="heatCapacity" lowerBound="1"
56
        eType="ecore:EDataType ../../de.hftstuttgart.cityunits.model/model/Quantities.ecore#//QuantityDouble"
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
57
        defaultValueLiteral="J/K"/>
58
59
60
    <eStructuralFeatures xsi:type="ecore:EAttribute" name="conductivity" lowerBound="1"
        eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EDouble"/>
  </eClassifiers>
Kai-Holger Brassel's avatar
Kai-Holger Brassel committed
61
</ecore:EPackage>