From 71b727f5adee779e11f415628624843103d843db Mon Sep 17 00:00:00 2001 From: danielfeismann Date: Thu, 23 May 2024 12:19:45 +0200 Subject: [PATCH] Fix data_model puml --- CHANGELOG.md | 3 +++ docs/puml/data_model.puml | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7090497..8f66665 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,4 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Legacy code base - Dependabot for auto-dependency updates +### Fixed +- Fix broken uml diagramm of data model [#155](https://github.com/ie3-institute/MarkovsHousehold/issues/155) + [Unreleased]: https://github.com/ie3-institute/MarkovsHousehold diff --git a/docs/puml/data_model.puml b/docs/puml/data_model.puml index 74eae57..9356716 100644 --- a/docs/puml/data_model.puml +++ b/docs/puml/data_model.puml @@ -44,7 +44,7 @@ class ApplianceTypeLoadProfile extends ApplianceType{ + __init__(\n\tfloat: usage_probability,\n\tSwitchOnProbabilities: type_switch_on_probability,\n\tTimeSeries: time_series\n\t): ApplianceTypeLoadProfile + get_time_series_length(): } -note right of TimeSeries: Mapping from time of operation to\nconsumed power +note right of ApplianceTypeLoadProfile: Mapping from time of operation to\nconsumed power class ApplianceTypeConstantPower extends ApplianceType{ float: p_rated @@ -56,7 +56,6 @@ class Appliance { - List[OperationInterval]: operation_intervals - ApplianceType: appliance_type } - Appliance *-- ApplianceType class TimeSeries {