Skip to content

Commit

Permalink
feat: add more load and system types
Browse files Browse the repository at this point in the history
System Types:
- "HEAT_PUMP"
- "CHARGING_POINT"
- "HVAC"
Load Type:
"PROSUMER"
  • Loading branch information
sasanjac committed Aug 14, 2023
1 parent f05eaed commit f9e8692
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions psdm/topology/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class LoadType(enum.Enum):
CONSUMER = "CONSUMER"
PRODUCER = "PRODUCER"
STORAGE = "STORAGE"
PROSUMER = "PROSUMER"


class SystemType(enum.Enum):
Expand All @@ -45,6 +46,9 @@ class SystemType(enum.Enum):
NIGHT_STORAGE = "NIGHT_STORAGE"
FIXED_CONSUMPTION = "FIXED_CONSUMPTION"
VARIABLE_CONSUMPTION = "VARIABLE_CONSUMPTION"
HEAT_PUMP = "HEAT_PUMP"
CHARGING_POINT = "CHARGING_POINT"
HVAC = "HVAC"


class PhaseConnectionType(enum.Enum):
Expand Down

0 comments on commit f9e8692

Please sign in to comment.