You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: emhass/DOCS.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,10 +96,6 @@ The following parameters are associated with the technical specifications of the
96
96
97
97
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/)
98
98
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
-
103
99
This webapp can help you find your correct module/inverter key: [https://emhass-pvlib-database.streamlit.app/](https://emhass-pvlib-database.streamlit.app/)
104
100
105
101
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.
@@ -113,6 +109,7 @@ Solution (2) would be to use SolCast and pass that data directly to emhass as a
113
109
- modules_per_string: The number of modules per string. Defaults to 16. This parameter can be a list of integers to enable the simulation of mixed orientation systems, for example one east-facing array (azimuth=90) and one west-facing array (azimuth=270).
114
110
- strings_per_inverter: The number of used strings per inverter. Defaults to 1. This parameter can be a list of integers to enable the simulation of mixed orientation systems, for example one east-facing array (azimuth=90) and one west-facing array (azimuth=270).
115
111
- inverter_is_hybrid: Set to True to consider that the installation inverter is hybrid for PV and batteries. (Default False).
112
+
- compute_curtailment: Set to True to compute a PV curtailment variable. (Default False).
116
113
- set_use_battery: Set to True if we should consider an energy storage device such as a Li-Ion battery. Defaults to False.
117
114
118
115
If the `set_use_battery` is set to `true`, then the following parameters need to be defined properly. If you don't have a battery then just leave the default values, they will not be used.
Copy file name to clipboardExpand all lines: emhass/config_emhass.yaml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,9 @@ optim_conf:
37
37
set_def_constant: # set as a constant fixed value variable with just one startup for each 24h
38
38
- False
39
39
- False
40
+
def_start_penalty: # Set a penalty for each start up of a deferrable load
41
+
- 0.0
42
+
- 0.0
40
43
weather_forecast_method: 'scrapper'# options are 'scrapper', 'csv', 'list', 'solcast' and 'solar.forecast'
41
44
load_forecast_method: 'naive'# options are 'csv' to load a custom load forecast from a CSV file or 'naive' for a persistance model
42
45
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
@@ -78,6 +81,7 @@ plant_conf:
78
81
strings_per_inverter: # The number of used strings per inverter
79
82
- 1
80
83
inverter_is_hybrid: False # Set if it is a hybrid inverter (PV+batteries) or not
84
+
compute_curtailment: False # Compute a PV curtailment variable or not
81
85
Pd_max: 1000# If your system has a battery (set_use_battery=True), the maximum discharge power in Watts
82
86
Pc_max: 1000# If your system has a battery (set_use_battery=True), the maximum charge power in Watts
83
87
eta_disch: 0.95# If your system has a battery (set_use_battery=True), the discharge efficiency
Copy file name to clipboardExpand all lines: emhass/translations/en.yaml
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,10 @@ configuration:
163
163
description: (Default 1). This parameter can be a list of integers to enable the simulation of mixed orientation systems, for example one east-facing array and one west-facing array.
164
164
inverter_is_hybrid:
165
165
name: inverter_is_hybrid, Set to True if it is a hybrid inverter (PV+batteries) or not
166
-
description: Set to True to consider that the installation inverter is hybrid for PV and batteries. (Default False).
166
+
description: A special parameter to consider that the installation inverter is hybrid for PV and batteries. (Default False).
167
+
compute_curtailment:
168
+
name: compute_curtailment, Set to True to compute a PV curtailment variable.
169
+
description: A special parameter to define if we will compute a PV curtailment variable. (Default False).
167
170
set_use_battery:
168
171
name: set_use_battery, Set if a battery is present
169
172
description: Set to True if we should consider an energy storage device such as a Li-Ion battery. (Default False).
0 commit comments