Skip to content

Commit

Permalink
Add DSO_FEEDIN_CAP to the constants
Browse files Browse the repository at this point in the history
It will be used as a key in the dso dict
  • Loading branch information
Bachibouzouk committed Apr 7, 2022
1 parent 5339d03 commit 6e30d30
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/multi_vector_simulator/utils/constants.py
Expand Up @@ -231,6 +231,12 @@
WARNING_TEXT: "allows setting a maximum capacity for an asset that is being capacity optimized (Values: None/Float). ",
REQUIRED_IN_CSV_ELEMENTS: [ENERGY_CONVERSION, ENERGY_PRODUCTION],
},
DSO_FEEDIN_CAP: {
DEFAULT_VALUE: None,
UNIT: TYPE_NONE,
WARNING_TEXT: "allows setting a maximum capacity for DSO feedin (Values: None/Float). ",
REQUIRED_IN_CSV_ELEMENTS: [ENERGY_PROVIDERS],
},
RENEWABLE_ASSET_BOOL: {
DEFAULT_VALUE: False,
UNIT: TYPE_BOOL,
Expand Down
1 change: 1 addition & 0 deletions src/multi_vector_simulator/utils/constants_json_strings.py
Expand Up @@ -179,6 +179,7 @@
DSO_CONSUMPTION = "_consumption"
DSO_FEEDIN = "_feedin"
DSO_PEAK_DEMAND_SUFFIX = "_pdp" # short for peak demand pricing
DSO_FEEDIN_CAP = "feedin_cap"
DSO_PEAK_DEMAND_PERIOD = "_period"
CONNECTED_CONSUMPTION_SOURCE = "connected_consumption_sources"
CONNECTED_PEAK_DEMAND_PRICING_TRANSFORMERS = (
Expand Down

0 comments on commit 6e30d30

Please sign in to comment.