Skip to content

Commit 12ad549

Browse files
introduce changes also to all other puml diagrams
1 parent 1267cb3 commit 12ad549

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

docs/uml/main/EntitySourceClassDiagram.puml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ class ResultEntitySource {
130130
+ Set<EvResult> getEvResults() throws SourceException
131131
+ Set<HpResult> getHpResults() throws SourceException
132132
+ Set<CylindricalStorageResult> getCylindricalStorageResult() throws SourceException
133+
+ Set<DomesticHotStorageResult> getDomesticHotWaterStorageResult() throws SourceException
133134
+ Set<ThermalHouseResult> getThermalHouseResults() throws SourceException
134135
+ Set<EmResult> getEmResults() throws SourceException
135136
+ Set<CongestionResult> getCongestionResults() throws SourceException
@@ -179,6 +180,7 @@ class ThermalSource {
179180
- TypeSource typeSource
180181
- ThermalBusInputFactory thermalBusInputFactory
181182
- CylindricalStorageInputFactory cylindricalStorageInputFactory
183+
- DomesticHotWaterStorageInputFactory domesticHotWaterStorageInputFactory
182184
- ThermalHouseInputFactory thermalHouseInputFactory
183185
+ ThermalSource(TypeSource, DataSource)
184186
+ Map<UUID, ThermalBusInput> getThermalBuses() throws SourceException
@@ -187,8 +189,10 @@ class ThermalSource {
187189
+ Map<UUID, ThermalStorageInput> getThermalStorages(Map<UUID, OperatorInput>, Map<UUID, ThermalBusInput>) throws SourceException
188190
+ Map<UUID, ThermalHouseInput> getThermalHouses() throws SourceException
189191
+ Map<UUID, ThermalHouseInput> getThermalHouses(Map<UUID, OperatorInput>, Map<UUID, ThermalBusInput>) throws SourceException
190-
+ Set<CylindricalStorageInput> getCylindricStorages() throws SourceException
191-
+ Set<CylindricalStorageInput> getCylindricStorages(Map<UUID, OperatorInput>, Map<UUID, ThermalBusInput>) throws SourceException
192+
+ Set<CylindricalStorageInput> getCylindricalStorages() throws SourceException
193+
+ Set<CylindricalStorageInput> getCylindricalStorages(Map<UUID, OperatorInput>, Map<UUID, ThermalBusInput>) throws SourceException
194+
+ Set<DomesticHotWaterStorageInput> getDomesticHotWaterStorages() throws SourceException
195+
+ Set<DomesticHotWaterStorageInput> getDomesticHotWaterStorages(Map<UUID, OperatorInput>, Map<UUID, ThermalBusInput>) throws SourceException
192196
}
193197

194198
abstract class TimeSeriesMappingSource {

docs/uml/main/OutputDatamodelConcept.puml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,16 @@ package models {
130130
}
131131
ThermalUnitResult <|-- ThermalStorageResult
132132

133-
class CylindricalStorageResult {
133+
Abstract class AbstractThermalStorageResult {
134134
- fillLevel: ComparableQuantity<Dimensionless> [%]
135135
}
136-
ThermalStorageResult <|-- CylindricalStorageResult
136+
ThermalStorageResult <|-- AbstractThermalStorageResult
137+
138+
class CylindricalStorageResult {}
139+
AbstractThermalStorageResult <|-- CylindricalStorageResult
140+
141+
class DomesticHotWaterStorageResult {}
142+
AbstractThermalStorageResult <|-- DomesticHotWaterStorageResult
137143
}
138144
}
139145
}

docs/uml/main/input/DefaultInputDirectoryHierarchy.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package <gridname>(.tar.gz) {
99
label "line_input.csv\n//measurement_unit_input.csv//\nnode_input.csv\n//switch_input.csv//\ntransformer_2_w_input.csv\n//transformer_3_w_input.csv//"
1010
}
1111
package "//thermal//" as th {
12-
label "//cylindrical_storage_input.csv//\n//thermal_bus_input.csv//\n//thermal_house_input.csv//"
12+
label "//cylindrical_storage_input.csv//\n//domestic_hot_water_storage_input.csv//\n//thermal_bus_input.csv//\n//thermal_house_input.csv//"
1313
}
1414
package participants {
1515
label "//bm_input.csv//\n//chp_input.csv//\n//ev_input.csv//\n//evcs_input.csv//\n//fixed_feed_in_input.csv//\n//hp_input.csv//\n//load_input.csv//\n//pv_input.csv//\n//storage_input.csv//\n//wec_input.csv//"

docs/uml/main/input/DefaultResultDirectoryHierarchy.puml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package <gridname>(.tar.gz) {
66
label "//line_result.csv//\n//node_result.csv//\n//switch_result.csv//\n//transformer_2_w_result.csv//\n//transformer_3_w_result.csv//"
77
}
88
package "//thermal//" {
9-
label "//cylindrical_storage_result.csv//\n//thermal_bus_result.csv//\n//thermal_house_result.csv//"
9+
label "//cylindrical_storage_result.csv//\n//domestic_hot_water_storage_result.csv//\n//thermal_bus_result.csv//\n//thermal_house_result.csv//"
1010
}
1111
package "//participants//" {
1212
label "//bm_result.csv//\n//chp_result.csv//\n//ev_result.csv//\n//evcs_result.csv//\n//fixed_feed_in_result.csv//\n//hp_result.csv//\n//load_result.csv//\n//pv_result.csv//\n//storage_result.csv//\n//wec_result.csv//"

0 commit comments

Comments
 (0)