Skip to content

Commit 73a3789

Browse files
committed
Added missing params to configuration
1 parent 176e978 commit 73a3789

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

emhass/DOCS.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,6 @@ The following parameters are associated with the technical specifications of the
9696

9797
We will define the technical parameters of the PV installation. For the modeling task we rely on the PVLib Python package. For more information see: [https://pvlib-python.readthedocs.io/en/stable/](https://pvlib-python.readthedocs.io/en/stable/)
9898

99-
The complete list of supported modules can be found here: [https://github.com/davidusb-geek/emhass-add-on/files/9234460/sam-library-cec-modules-2019-03-05.csv](https://github.com/davidusb-geek/emhass-add-on/files/9234460/sam-library-cec-modules-2019-03-05.csv)
100-
101-
And the list of inverter models can be found here: [https://github.com/davidusb-geek/emhass-add-on/files/9532724/sam-library-cec-inverters-2019-03-05.csv](https://github.com/davidusb-geek/emhass-add-on/files/9532724/sam-library-cec-inverters-2019-03-05.csv)
102-
10399
This webapp can help you find your correct module/inverter key: [https://emhass-pvlib-database.streamlit.app/](https://emhass-pvlib-database.streamlit.app/)
104100

105101
If your specific model is not found in these lists then solution (1) is to pick another model as close as possible as yours in terms of the nominal power.

emhass/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ options:
6565
list_set_deferrable_load_single_constant:
6666
- set_deferrable_load_single_constant: false
6767
- set_deferrable_load_single_constant: false
68+
list_set_deferrable_startup_penalty:
69+
- set_deferrable_startup_penalty: 0.0
70+
- set_deferrable_startup_penalty: 0.0
6871
load_peak_hours_cost: 0.1907
6972
load_offpeak_hours_cost: 0.1419
7073
photovoltaic_production_sell_price: 0.065
@@ -132,6 +135,8 @@ schema:
132135
- treat_deferrable_load_as_semi_cont: "bool?"
133136
list_set_deferrable_load_single_constant:
134137
- set_deferrable_load_single_constant: "bool?"
138+
list_set_deferrable_startup_penalty:
139+
- set_deferrable_startup_penalty: "float?"
135140
load_cost_forecast_method: "list(hp_hc_periods|csv)?"
136141
production_price_forecast_method: "list(constant|csv)?" #optional
137142
load_peak_hours_cost: "float(0,)?"

emhass/config_emhass.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ optim_conf:
3737
set_def_constant: # set as a constant fixed value variable with just one startup for each 24h
3838
- False
3939
- False
40+
def_start_penalty: # Set a penalty for each start up of a deferrable load
41+
- 0.0
42+
- 0.0
4043
weather_forecast_method: 'scrapper' # options are 'scrapper', 'csv', 'list', 'solcast' and 'solar.forecast'
4144
load_forecast_method: 'naive' # options are 'csv' to load a custom load forecast from a CSV file or 'naive' for a persistance model
4245
load_cost_forecast_method: 'hp_hc_periods' # options are 'hp_hc_periods' for peak and non-peak hours contracts and 'csv' to load custom cost from CSV file

0 commit comments

Comments
 (0)