ISEAFrame
2.26.1
|
All materials, which are used in the thermal model, are listed below. The structure of the corresponding xml elements and a code snippet are given for each material.
All material are listed in the <ThermalMaterials>-node, which can be found in the root node of the xml file (within the <Configurations>-node). The attribute "cache='true'" has to be set for all materials.
Object type: "Material"
XML Tag | Type | Explanation |
---|---|---|
Density | double | density in kg/m³ |
SpecificCapacity | double | specific heat capacity in J/(kg*K) |
Conductivity | double | thermal conductivity in W/(m*K) |
Emissivity | double | emissivity (0 to 1) |
<Electrolyte class="Material" cache="true"> <Density>2000</Density> <SpecificCapacity>4000</SpecificCapacity> <Conductivity>15</Conductivity> </Electrolyte>
Object type: "MaterialCartesian"
XML Tag | Type | Explanation |
---|---|---|
Density | double | density in kg/m³ |
SpecificCapacity | double | specific heat capacity in J/(kg*K) |
ConductivityX | double | thermal conductivity in x direction in W/(m*K) |
ConductivityY | double | thermal conductivity in y direction in W/(m*K) |
ConductivityZ | double | thermal conductivity in z direction in W/(m*K) |
Emissivity | double | emissivity (0 to 1) |
<Electrolyte class="Material" cache="true"> <Density>2000</Density> <SpecificCapacity>4000</SpecificCapacity> <ConductivityX>10</ConductivityX> <ConductivityY>10</ConductivityY> <ConductivityZ>25</ConductivityZ> </Electrolyte>
Objekttyp: "MaterialCylindric"
XML Tag | Type | Explanation |
---|---|---|
Density | double | density in kg/m³ |
SpecificCapacity | double | specific heat capacity in J/(kg*K) |
ConductivityRho | double | thermal conductivity in ρ direction in W/(m*K) |
ConductivityPhi | double | thermal conductivity in φ direction in W/(m*K) |
ConductivityZ | double | thermal conductivity in z direction in W/(m*K) |
Emissivity | double | emissivity (0 to 1) |
<Electrolyte class="Material" cache="true"> <Density>2000</Density> <SpecificCapacity>4000</SpecificCapacity> <ConductivityRho>10</ConductivityRho> <ConductivityPhi>10</ConductivityPhi> <ConductivityZ>25</ConductivityZ> </Electrolyte>