emhass 0.10.5__tar.gz → 0.11.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {emhass-0.10.5 → emhass-0.11.0}/CHANGELOG.md +18 -0
- {emhass-0.10.5 → emhass-0.11.0}/PKG-INFO +193 -155
- {emhass-0.10.5 → emhass-0.11.0}/README.md +190 -152
- {emhass-0.10.5 → emhass-0.11.0}/setup.py +6 -6
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/command_line.py +179 -86
- emhass-0.11.0/src/emhass/data/associations.csv +61 -0
- emhass-0.11.0/src/emhass/data/config_defaults.json +117 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/forecast.py +38 -36
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/machine_learning_forecaster.py +2 -1
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/machine_learning_regressor.py +7 -2
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/optimization.py +62 -62
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/retrieve_hass.py +9 -4
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/static/advanced.html +2 -1
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/static/basic.html +4 -2
- emhass-0.11.0/src/emhass/static/configuration_list.html +44 -0
- emhass-0.11.0/src/emhass/static/configuration_script.js +871 -0
- emhass-0.11.0/src/emhass/static/data/param_definitions.json +424 -0
- emhass-0.11.0/src/emhass/static/script.js +442 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/static/style.css +267 -8
- emhass-0.11.0/src/emhass/templates/configuration.html +75 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/templates/index.html +15 -8
- emhass-0.11.0/src/emhass/utils.py +1280 -0
- emhass-0.11.0/src/emhass/web_server.py +603 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass.egg-info/PKG-INFO +193 -155
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass.egg-info/SOURCES.txt +6 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass.egg-info/requires.txt +2 -2
- {emhass-0.10.5 → emhass-0.11.0}/tests/test_command_line_utils.py +65 -47
- {emhass-0.10.5 → emhass-0.11.0}/tests/test_forecast.py +154 -112
- {emhass-0.10.5 → emhass-0.11.0}/tests/test_machine_learning_forecaster.py +24 -25
- {emhass-0.10.5 → emhass-0.11.0}/tests/test_machine_learning_regressor.py +23 -24
- {emhass-0.10.5 → emhass-0.11.0}/tests/test_optimization.py +81 -51
- {emhass-0.10.5 → emhass-0.11.0}/tests/test_retrieve_hass.py +70 -65
- emhass-0.11.0/tests/test_utils.py +308 -0
- emhass-0.10.5/src/emhass/static/script.js +0 -419
- emhass-0.10.5/src/emhass/utils.py +0 -963
- emhass-0.10.5/src/emhass/web_server.py +0 -493
- emhass-0.10.5/tests/test_utils.py +0 -259
- {emhass-0.10.5 → emhass-0.11.0}/CODE_OF_CONDUCT.md +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/CONTRIBUTING.md +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/LICENSE +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/MANIFEST.in +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/data_load_cost_forecast.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/data_load_forecast.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/data_prod_price_forecast.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/data_train_load_clustering.pkl +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/data_train_load_forecast.pkl +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/data_weather_forecast.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/heating_prediction.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/opt_res_latest.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/opt_res_perfect_optim_cost.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/opt_res_perfect_optim_profit.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/opt_res_perfect_optim_self-consumption.csv +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/test_df_final.pkl +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/test_response_get_data_get_method.pbz2 +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/test_response_scrapper_get_method.pbz2 +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/test_response_solarforecast_get_method.pbz2 +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/data/test_response_solcast_get_method.pbz2 +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/pyproject.toml +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/setup.cfg +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/__init__.py +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/data/cec_inverters.pbz2 +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/data/cec_modules.pbz2 +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/static/img/emhass_icon.png +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/static/img/emhass_logo_short.svg +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/static/img/feather-sprite.svg +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass/templates/template.html +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass.egg-info/dependency_links.txt +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass.egg-info/entry_points.txt +0 -0
- {emhass-0.10.5 → emhass-0.11.0}/src/emhass.egg-info/top_level.txt +0 -0
@@ -1,5 +1,23 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.11.0 - 2024-10-25
|
4
|
+
|
5
|
+
This version marks huge improvement works by @GeoDerp aiming to simplfy the intial and normal setup of EMHASS. The workflow for setting the EMHASS configuration regardless of the installation method has now been centralized on the single `config.json` file. The webserver has now a configuration tab that can be used to to modify and save the `config.json` file.
|
6
|
+
|
7
|
+
The complete discussion of the changes on this thread:
|
8
|
+
[https://github.com/davidusb-geek/emhass/pull/334](https://github.com/davidusb-geek/emhass/pull/334)
|
9
|
+
|
10
|
+
### Automatic version bot improvements
|
11
|
+
- Bump h5py from 3.11.0 to 3.12.1
|
12
|
+
- Bump markupsafe from 2.1.5 to 3.0.2
|
13
|
+
|
14
|
+
### Fix
|
15
|
+
- Revert to myst-parser==3.0.1 to solve documentation compilation failures
|
16
|
+
|
17
|
+
## 0.10.6 - 2024-07-14
|
18
|
+
### Fix
|
19
|
+
- Fixed bug on predicted room temeprature publish, wrong key on DataFrame
|
20
|
+
|
3
21
|
## 0.10.5 - 2024-07-12
|
4
22
|
### Improvement
|
5
23
|
- Added support for pubishing thermal load data, namely the predicted room temperature
|