File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -115,14 +115,17 @@ package models {
115115 abstract class ThermalStorageInput
116116 ThermalStorageInput --|> ThermalUnitInput
117117
118+ abstract class AbstractStorageInput
119+ AbstractStorageInput --|> ThermalStorageInput
120+
118121 class CylindricalStorageInput {
119122 - storageVolumeLvl: ComparableQuantity<Volume> [m³]
120123 - inletTemp: ComparableQuantity<Temperature> [°C]
121124 - returnTemp: ComparableQuantity<Temperature> [°C]
122125 - c: ComparableQuantity<SpecificHeatCapacity> [kWh/(K*m³)]
123126 - pThermalMax: ComparableQuantity<Power> [kW]
124127 }
125- CylindricalStorageInput --|> ThermalStorageInput
128+ CylindricalStorageInput --|> AbstractStorageInput
126129
127130 class DomesticHotWaterStorageInput {
128131 - storageVolumeLvl: ComparableQuantity<Volume> [m³]
@@ -131,7 +134,7 @@ package models {
131134 - c: ComparableQuantity<SpecificHeatCapacity> [kWh/(K*m³)]
132135 - pThermalMax: ComparableQuantity<Power> [kW]
133136 }
134- DomesticHotWaterStorageInput --|> ThermalStorageInput
137+ DomesticHotWaterStorageInput --|> AbstractStorageInput
135138 }
136139 }
137140}
You can’t perform that action at this time.
0 commit comments