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/CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# Changelog
2
2
3
+
## 0.8.5 - 2024-04-01
4
+
### Improvement
5
+
- Simplified fetch urls to relatives
6
+
- Improved code for passed forecast data error handling in utils.py
7
+
- Added new tests for forecast longer than 24h by changing parameter `delta_forecast`
8
+
- Added new files for updated PV modules and inverters database for use with PVLib
9
+
- Added a new webapp to help configuring modules and inverters: [https://emhass-pvlib-database.streamlit.app/](https://emhass-pvlib-database.streamlit.app/)
10
+
- Added a new `P_to_grid_max` variable, different from the current `P_from_grid_max` option
11
+
### Fix
12
+
- style.css auto format and adjusted table styling
13
+
- Changed pandas datetime rounding to nonexistent='shift_forward' to help survive DST change
Copy file name to clipboardExpand all lines: emhass/DOCS.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,8 @@ In the default configuration example the first peak hour will start at 02:54 and
77
77
78
78
The following parameters are associated with the technical specifications of the PV power plant and the batteries.
79
79
80
-
- maximum_power_from_grid: The maximum power that can be supplied by the utility grid in Watts. Defaults to 9000.
80
+
- maximum_power_from_grid: The maximum power that can be supplied by the utility grid in Watts (consumption). Defaults to 9000.
81
+
- maximum_power_to_grid: The maximum power that can be supplied to the utility grid in Watts (injection). Defaults to 9000.
81
82
82
83
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/)
83
84
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)
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
@@ -139,7 +139,10 @@ configuration:
139
139
description: (Default 0.065). The paid price for energy injected to the grid from excedent PV production in €/kWh.
140
140
maximum_power_from_grid:
141
141
name: maximum_power_from_grid, The maximum power from the grid
142
-
description: (Default 9000). The maximum power that can be supplied by the utility grid in Watts.
142
+
description: (Default 9000). The maximum power that can be supplied by the utility grid in Watts (consumption).
143
+
maximum_power_to_grid:
144
+
name: maximum_power_to_grid, The maximum power to the grid
145
+
description: (Default 9000). The maximum power that can be supplied to the utility grid in Watts (injection).
143
146
list_pv_module_model:
144
147
name: list_pv_module_model, (method=scrapper/solar.forecast) A list of the PV module model
145
148
description: For example 'CSUN_Eurasia_Energy_Systems_Industry_and_Trade_CSUN295_60M'. This parameter can be a list of strings to enable the simulation of mixed orientation systems, for example one east-facing array (azimuth=90) and one west-facing array (azimuth=270). When finding the correct model for your installation remember to replace all the special characters in the model name by '_'.
0 commit comments