Recent Releases of EHMASS
EHMASS - EMHASS version v0.17.1
Improvement
- Added
set_deferrable_max_startupsparameter to enforce a hard physical limit on the maximum number of times a deferrable load can be turned on during an optimization horizon, preventing unwanted chattering - Added new Websocket section to documentation
- Improving coverage: MLForecaster, web server and command line utils
- Improved automatic testing: Add tests for converting nested parameters to config, deferrable load padding, export time range parsing, NaN handling, and resampling/filtering of time series data. Add an MPC cache behavior test to verify cache hits for non-structural plant changes and cache misses for structural plant changes
- Deactivate binary variables for non-thermal loads with 0 operating timesteps to reduce MIP solve time
Fix
- Ensure cached MPC optimizers are invalidated when structural plant configuration changes while still updating runtime-dependent parameters on cache hits
- Prevent stale internal optimization configuration by refreshing cached optimizer plant and optimization configs with latest runtime values
- Fixed logging initialization issue
- Fixed an issue where the REST API sends 'Bearer empty' when the token is not configured in the add-on
- Gracefully skip days with no history data during REST API retrieval
- Fixed Solcast API Accept header and sub-30min resampling issues
- Fix to REST API authentication fails when token is set to "empty" in addon mode issue
What's Changed
- New emhass release v0.17.0 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/732
- Multiple improvements and fixes after v0.17.0 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/735
- Second round of improvements and fixes after v0.17.0 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/737
- fix: Solcast Accept header and sub-30min resampling by @kallegrens in https://github.com/davidusb-geek/emhass/pull/739
- fix: gracefully skip days with no history data in REST API retrieval by @kallegrens in https://github.com/davidusb-geek/emhass/pull/740
- Fix: REST API sends 'Bearer empty' when token not configured in addon… by @who2us in https://github.com/davidusb-geek/emhass/pull/742
- Fix include all parameter into cache hit/miss by @sokorn in https://github.com/davidusb-geek/emhass/pull/743
- Deactivate binary variables for non-thermal loads with 0 operating timesteps to reduce MIP solve time by @sokorn in https://github.com/davidusb-geek/emhass/pull/744
- Fixing dynamic lenghts affecting thermal loads and preparing for v0.17.1 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/748
New Contributors
- @kallegrens made their first contribution in https://github.com/davidusb-geek/emhass/pull/739
- @who2us made their first contribution in https://github.com/davidusb-geek/emhass/pull/742
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.17.0...v0.17.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 3 months ago
EHMASS - EMHASS version 0.17.0
Improvement
- Added caching for the Optimization object to use warm start (@sokorn)
- Add thermal inertia extension for thermal battery model (@sokorn)
- Added parameter for relative MIP gap (@sokorn)
- Enhance HA add-on file management to use addon_configs folder (@mime24)
- Rename 'add-on' to 'app' (@AJediIAm)
- Update skforecast requirement from <0.20.0,>=0.19.1 to >=0.19.1,<0.21.0 (@dependabot)
Fix
- Reuse HTTP session across post_data calls (@sokorn)
- Handle corrupted metadata.json file (@rmounce)
- Pin cvxpy version to <1.8.0 (@rmounce)
- Fix ruff format in retrieve_hass.py (@mime24)
⚠️ POSSIBLE BREAKING CHANGE: HA Add-on File Management
This release updates how EMHASS handles file management within Home Assistant, aligning with the new HA standard of using the dedicated /addon_configs folder for user-facing configuration files.
- What changed: Configuration and data files have been migrated to the new
addon_configsdirectory structure. - Why it might break your setup: If you are an advanced user who has written custom shell commands, external scripts, or backup automations that point strictly to the old hardcoded
/share/emhassor/configdirectory paths, those paths will likely fail after this update. - Action Required: Please review any custom automations or scripts that read from or write to EMHASS files directly and update the paths to reflect the new
/addon_configs/location.
What's Changed
- Update skforecast requirement from <0.20.0,>=0.19.1 to >=0.19.1,<0.21.0 by @dependabot[bot] in https://github.com/davidusb-geek/emhass/pull/712
- Added caching for the Optimization object to use warm start by @sokorn in https://github.com/davidusb-geek/emhass/pull/711
- Added parameter for relative MIP gap by @sokorn in https://github.com/davidusb-geek/emhass/pull/714
- Hot fix for KeyError P_PV by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/709
- Pin cvxpy version to <1.8.0 by @rmounce in https://github.com/davidusb-geek/emhass/pull/715
- Handle corrupted metadata.json file by @rmounce in https://github.com/davidusb-geek/emhass/pull/716
- Enhancement for HA addon-file management - use addon_configs folder by @mime24 in https://github.com/davidusb-geek/emhass/pull/719
- add thermal inertia extension for thermal battery model by @sokorn in https://github.com/davidusb-geek/emhass/pull/721
- fix ruff format in retrieve_hass.py by @mime24 in https://github.com/davidusb-geek/emhass/pull/722
- Rename 'add-on' to 'app' by @AJediIAm in https://github.com/davidusb-geek/emhass/pull/725
- fix: reuse HTTP session across post_data calls by @sokorn in https://github.com/davidusb-geek/emhass/pull/729
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.16.2...v0.17.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 4 months ago
EHMASS - EMHASS version 0.16.2
Improvement
- Added support for a thermal inertia parameter for the basic thermal model
- Handle time-dependent battery weights (@rmounce)
Fix
- Fix Docker signal handling with tini and pin uvicorn version (@rmounce)
- Fix "typical" load forecast method fails with maximum_power_from_grid as vector (list)
- Fix warning logging messages on sensor_replace_zero
- Fix for correct handling of open-meteo temp_air variable
What's Changed
- Fix Docker signal handling with tini and pin uvicorn version by @rmounce in https://github.com/davidusb-geek/emhass/pull/698
- Added support for a thermal inertia on the basic thermal model by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/704
- Handle time-dependent battery weights by @rmounce in https://github.com/davidusb-geek/emhass/pull/699
- Fix for correct handling of open-meteo temp_air variable by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/702
- Fix typical load when maximum_power_from_grid is a list and uneeded w… by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/706
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.16.1...v0.16.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 5 months ago
EHMASS - EMHASS version 0.16.1
Fix
- Hot fix for InfluxDB not passed credentials
- Fixed optimization window size mismatch issue
- Fixed optim_status key not found error when falling back to LP problem
What's Changed
- Hot fix for InfluxDB not passed credentials by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/695
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.16.0...v0.16.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 5 months ago
EHMASS - EMHASS version 0.16.0
🚀 Major Optimization Engine Overhaul
This release marks a significant milestone in the evolution of EMHASS. We have completely re-engineered the core optimization backend, moving from PuLP to CVXPY. This modern, vectorized architecture unlocks substantial performance improvements and paves the way for advanced energy management features.
Key Highlights
- ⚡ CVXPY & Vectorization: The constraint generation logic has been rewritten using vectorization. This mathematical streamlining allows EMHASS to construct optimization problems significantly faster, reducing overhead especially for complex configurations or long prediction horizons. Benchmarks show optimization times are 4-5x faster, clocking in at approximately 0.1s per iteration for standard use cases compared to previous implementation.
- 🏎️ HiGHS Solver Standard: We have adopted HiGHS as the new default solver. HiGHS is a state-of-the-art, open-source linear optimization solver that offers vastly superior performance and stability compared to the legacy CBC/GLPK solvers.
- 📦 Simplified Dependencies: No more system-level dependencies! Because HiGHS is bundled as a Python wheel, the Docker image is lighter, and installation is more robust—you no longer need to install
coinor-cbcorglpkvia apt. - 🔧 Commercial Solver Support: Power users with licenses for Gurobi or CPLEX can now easily plug them in via environment variables (
LP_SOLVER=GUROBI) without code modifications, thanks to the standardized interface of CVXPY. - 🏗️ Modular Architecture: The optimization class has been refactored into smaller, testable helper methods, improving code maintainability and making it easier for contributors to add new constraints (like the new internal gains logic for thermal batteries) without breaking existing features.
Improvement
- Refactor optimization.py to use cvxpy
- Added internal gains factor to heating demand calculation (@sokorn)
- Add vector support for maximum power to or from grid (@mk2lehe)
⚠️ BREAKING CHANGE: Solver Configuration
We have modernized the optimization backend to use CVXPY. As a result, the solver configuration has been simplified and both lp_solver and lp_solver_path parameters have been removed.
- Removed:
lp_solverandlp_solver_pathare no longer supported in the configuration. - New Default: The application now defaults to the HiGHS solver, which is bundled directly with EMHASS. No external binary paths or apt packages are required.
- Commercial Solvers: If you wish to use Gurobi or CPLEX (requiring your own license), you must now specify this using the
LP_SOLVERenvironment variable (e.g.,LP_SOLVER=GUROBI), rather than the configuration file.
Action Required:
- Remove
lp_solverandlp_solver_pathfrom your configuration files (config.jsonoroptions.json) to avoid validation warnings. - If you previously relied on a custom solver path, ensure you are satisfied with the new default HiGHS solver (recommended) or configure the environment variable for a commercial alternative.
What's Changed
- Added internal gains factor to heating demand calculation by @sokorn in https://github.com/davidusb-geek/emhass/pull/684
- Missing unit convertion for load_power by @sokorn in https://github.com/davidusb-geek/emhass/pull/690
- Add vector support for maximum power to or from grid by @mk2lehe in https://github.com/davidusb-geek/emhass/pull/687
- Refactor optimization.py to use cvxpy by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/688
- Solve secrets handling and MILP big-M solve hang issues by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/693
New Contributors
- @mk2lehe made their first contribution in https://github.com/davidusb-geek/emhass/pull/687
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.15.6...v0.16.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 5 months ago
EHMASS - EMHASS version 0.15.6
Improvement
- New feature that allows users to disable SSL communication with Home Assistant
Fix
- Fix issues with missing
long_train_data.pklfile and load power sensor name updated by the user - Fix broken MLRegressor by removing unnecessary loading of a CSV file
- Fix missing outdoor temperature data for thermal model
What's Changed
- Fix missing outdoor temperature data for thermal model by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/679
- Fix broken MLRegressor with not needed load treatment of a CSV file by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/681
- New feature to allow to disable SSL communication with Home Assistant by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/682
- Fix issues with missing file and updated load power sensor name by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/683
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.15.5...v0.15.6
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 5 months ago
EHMASS - EMHASS version 0.15.5
Fix
- Fix the thermal load parsing to use it on any type of optimization
What's Changed
- Fix the thermal load parsing to use it on any type of optimization by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/678
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.15.4...v0.15.5
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 5 months ago
EHMASS - EMHASS version 0.15.4
Refactor Home Assistant data retrieval, forecasting, optimization, and publishing flows for better structure, error handling, and configurability while enhancing docs, web UI, and CI integration.
Improvement
- Support selecting PV module and inverter models by approximate power rating in addition to explicit database names
- Introduce helper contexts and structured helpers for optimization setup, publishing, and forecast preparation
- Add explicit SonarCloud analysis and Codecov integration in CI workflow
- Added support to publish emhass package to conda repository
- Improved documentation: Reorganize and expand documentation sections, including for using InfluxDB as a data source and for passing secret parameters, clarifying differences between Docker/Python deployments and the Home Assistant add-on, and moving this content into the passing_data guide. Change theme to PyData Sphinx Theme
- Added extensive unit tests around Home Assistant data retrieval helpers, PV adjustment behavior, regressor preparation errors, weather forecast method branching, thermal loads publishing, and web server runtime parameter handling
- Update existing optimization and CLI tests to use mocks for heavy optimization routines allowing faster tests
Fix
- Ensure InfluxDB is prioritized over WebSocket and REST when configured as a data source to avoid redundant queries to Home Assistant
- Fix runtime parameter parsing in the web server to properly handle malformed JSON payloads and default safely to empty parameters
What's Changed
- SonarQube code improvements by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/677
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.15.3...v0.15.4
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 5 months ago
EHMASS - EMHASS version 0.15.3
What's Changed
- Solve power limits when is hybrid inverter true and false by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/658
- Update skforecast by @gieljnssns in https://github.com/davidusb-geek/emhass/pull/661
- Make n_trials in tune configurable by @gieljnssns in https://github.com/davidusb-geek/emhass/pull/662
- Codecov Coverage improvements by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/660
- Adding new dynamic frontend options by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/663
- Add new inverter and module entries by @F21 in https://github.com/davidusb-geek/emhass/pull/669
- Revert "Implement inverter AC input limit constraint" by @rmounce in https://github.com/davidusb-geek/emhass/pull/666
- Add hybrid inverter stress cost by @rmounce in https://github.com/davidusb-geek/emhass/pull/667
- Documentation for inverter stress cost feature by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/672
- Implement thermal battery for underfloor heating from Langer & Volling (2020) by @sokorn in https://github.com/davidusb-geek/emhass/pull/668
- Update thermal battery parameters to support per-timestep temperature… by @sokorn in https://github.com/davidusb-geek/emhass/pull/674
- Fix/influxdb skip renaming by @sokorn in https://github.com/davidusb-geek/emhass/pull/676
- New thermal load plot and other several fixes by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/675
New Contributors
- @F21 made their first contribution in https://github.com/davidusb-geek/emhass/pull/669
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.15.2...v0.15.3
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 5 months ago
EHMASS - EMHASS version 0.15.2
Improvement
- Update documentation and parameter definitions for adjusted PV regression models to include all available scikit-learn options (@sokorn)
- Removed device class and unit of measurement for optim status (@mime24)
Fix
- Fixing some docs math mode and rearrange sections
- Refactor REST API data retrieval to reuse one aiohttp ClientSession, solve issue #648 (@gieljnssns)
- Change regressor parameter to estimator in forecaster
- Remove warning log for runtime parameters parsing
What's Changed
- Remove warning log for runtime parameters parsing by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/647
- Change regressor parameter to estimator in forecaster by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/649
- Use one ClientSession by @gieljnssns in https://github.com/davidusb-geek/emhass/pull/650
- removed device class and unit of measurement for optim status by @mime24 in https://github.com/davidusb-geek/emhass/pull/652
- Update documentation and parameter definitions for adjusted PV regres… by @sokorn in https://github.com/davidusb-geek/emhass/pull/654
- Fixing some docs math mode and rearrange sections by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/656
New Contributors
- @mime24 made their first contribution in https://github.com/davidusb-geek/emhass/pull/652
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.15.1...v0.15.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 6 months ago
EHMASS - EMHASS version 0.15.1
Fix
- Hot fix for thermal model semi-continuous mode and continual publish caped to 60s
What's Changed
- Hot fix for thermal model semi-continuous mode and continual publish … by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/646
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.15.0...v0.15.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 6 months ago
EHMASS - EMHASS version 0.15.0
Improvement
- Added support for async emhass code (@gieljnssns)
- Added support for websocket data retrieval (@gieljnssns)
- Add feature to cache pv regression model (@sokorn)
- Added support for a more comprehensive list of
scikit-learnmodels for both ML Forecaster and Regressor classes - Improved documentation re-arranged sections
- Thermal model improvements:
- Implemented a Min/Max temperature control, proposed by @werdnum
- Implemented needed unit tests
- Improved documentation
Fix
- Fixed warning message because pickle files saved with old Numpy version
- A buch of code refactor following SonarCloud Code Analysis
- Solved runtime param optimization_time_step not recognized, issue #563
- Attempt at solving data publish problem when containing both battery sensor definitions and a def_load_config, issue #587
- Fix timezone comparison issue with InfluxDB (@sokorn)
- Update skforecast requirement from <0.19.0,>=0.18.0 to >=0.18.0,<0.20.0
- Implement inverter AC input limit constraint
What's Changed
- Thermal model improvements by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/637
- Emhass async + websocket data retrieval by @gieljnssns in https://github.com/davidusb-geek/emhass/pull/626
- Code fix sonar cube by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/640
- Add feature to cache pv regression model by @sokorn in https://github.com/davidusb-geek/emhass/pull/638
- Implement inverter AC input limit constraint by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/643
- Fix timezone comparison issue with InfluxDB by @sokorn in https://github.com/davidusb-geek/emhass/pull/642
- Update skforecast requirement from <0.19.0,>=0.18.0 to >=0.18.0,<0.20.0 by @dependabot[bot] in https://github.com/davidusb-geek/emhass/pull/641
- Add new inverter and module data entries to CSV and database files by @sokorn in https://github.com/davidusb-geek/emhass/pull/645
- Added support for a more comprehensive list of Scikit-Learn models by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/644
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.14.1...v0.15.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 6 months ago
EHMASS - EMHASS version 0.14.1
0.14.1 - 2025-11-29
Improvement
- Improved InfluxDB version support documentation
- Adjust ML forecast tune lags with optizimation_time_step (@sokorn)
- Improved documentation for MLRegressor (@sokorn)
- Update description for semi_cont load parameter (@purcell-lab)
Fix
- Refactored proposed changes for HA independent configuration
- Fixed behavior to run EMHASS independently from HA (@Jahper)
- Proposed solution to Maximum battery charging rate issue #613
- Proposed solution to solve issue with missing use of split_date_delta
What's Changed
- Proposed solution to Maximum battery charging rate issue #613 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/616
- Update description for semi_cont load parameter by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/615
- Proposed solution to solve issue with missing use of split_date_delta by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/617
- Minor adjustment in MLRegressor documentation. by @sokorn in https://github.com/davidusb-geek/emhass/pull/618
- Feature: HA independant configuration by @Jahper in https://github.com/davidusb-geek/emhass/pull/628
- Refactored proposed changes for HA independent config by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/634
- Added additional support for hass_url types by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/635
- Adjust ML forecast tune lags with optizimation_time_step by @sokorn in https://github.com/davidusb-geek/emhass/pull/625
- Clarify supported InfluxDB version support. by @r0oland in https://github.com/davidusb-geek/emhass/pull/631
New Contributors
- @r0oland made their first contribution in https://github.com/davidusb-geek/emhass/pull/631
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.14.0...v0.14.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 7 months ago
EHMASS - EMHASS version 0.14.0
What's Changed
- Fix decimal precision for unit_load_cost and unit_prod_price sensors by @scruysberghs in https://github.com/davidusb-geek/emhass/pull/591
- Fix for pytz.exceptions.NonExistentTimeError with Open Meteo weather source during DST change by @paulhomes in https://github.com/davidusb-geek/emhass/pull/592
- Reduce severity of logged Open Meteo forecast_days minimum override message by @paulhomes in https://github.com/davidusb-geek/emhass/pull/593
- Add InfluxDB integration for enhanced historical data retrieval by @scruysberghs in https://github.com/davidusb-geek/emhass/pull/586
- Improvements to timezone handling and testing, use ISO8601 date format, fixes to pass linting checks by @Crosenhain in https://github.com/davidusb-geek/emhass/pull/594
- Update forecast.py to align CSV data with prediction window by @nielskool in https://github.com/davidusb-geek/emhass/pull/598
- Resolve time zone handling issues across daylight savings changes by @Squazel in https://github.com/davidusb-geek/emhass/pull/601
- Fix InfluxDB future data query and use_influxdb parameter type by @scruysberghs in https://github.com/davidusb-geek/emhass/pull/608
- Added SSL feature for InfluxDB by @sokorn in https://github.com/davidusb-geek/emhass/pull/604
- Fix timestamp exception by @Jahper in https://github.com/davidusb-geek/emhass/pull/609
- Feature/export influxdb to csv by @scruysberghs in https://github.com/davidusb-geek/emhass/pull/600
- Document forecast data formats and usage examples by @scruysberghs in https://github.com/davidusb-geek/emhass/pull/603
- Added a new unittest to test the csv generation feature from influxdb… by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/614
New Contributors
- @Squazel made their first contribution in https://github.com/davidusb-geek/emhass/pull/601
- @sokorn made their first contribution in https://github.com/davidusb-geek/emhass/pull/604
- @Jahper made their first contribution in https://github.com/davidusb-geek/emhass/pull/609
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.13.5...v0.14.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 7 months ago
EHMASS - EMHASS version 0.13.5
Improvement
- Use SVG render mode for Plotly figures (@Crosenhain)
- Constrain PV curtailment of hybrid inverter (@rmounce)
Fix
- Fix operating_timesteps_of_each_deferrable_load validation formula (@scruysberghs)
What's Changed
- utils.py: use SVG render mode for Plotly figures by @Crosenhain in https://github.com/davidusb-geek/emhass/pull/577
- Constrain PV curtailment of hybrid inverter by @rmounce in https://github.com/davidusb-geek/emhass/pull/579
- Fix operating_timesteps_of_each_deferrable_load validation formula by @scruysberghs in https://github.com/davidusb-geek/emhass/pull/583
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.13.4...v0.13.5
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 9 months ago
EHMASS - EMHASS version 0.13.4
A new release of EMHASS with a bunch of fixes and new features...
Improvement
- Added support for minimum power value for each deferrable load
- Add configuration for hybrid inverter input power limit and efficiency (@rmounce)
- Add runtime parameter to prevent PV forecast feedback loop during curtailment (@scruysberghs)
- Update Docker documentation for volume mounting of config.json (@cabberley)
- Apply ruff formatting for improved code consistency (@polyfloyd)
- Set executable permissions for
__main__entrypoints and remove unused shebangs (@polyfloyd) - Correct minor typos in README documentation (@Ultimation)
Fix
- Fixed naive load power forecast shifted timestamp issue #516
- Fix Docker build for aarch64 architecture (@polyfloyd)
What's Changed
- Let CONTRIBUTING.md refer to docs by @polyfloyd in https://github.com/davidusb-geek/emhass/pull/535
- Simplify HTML template loading by @polyfloyd in https://github.com/davidusb-geek/emhass/pull/537
- Use delta_forecast_daily to determine the number of days of forecast data to fetch from Open-Meteo by @paulhomes in https://github.com/davidusb-geek/emhass/pull/538
- feat(aiko): add an akio module by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/543
- Added new dict format for sensors by @Gruek in https://github.com/davidusb-geek/emhass/pull/542
- Update development documentation to use uv by @polyfloyd in https://github.com/davidusb-geek/emhass/pull/541
- Set +x for main entrypoints and remove unused shebangs by @polyfloyd in https://github.com/davidusb-geek/emhass/pull/549
- ruff format by @polyfloyd in https://github.com/davidusb-geek/emhass/pull/550
- Updates to Readme.md Docker section for volume mounting of config.json by @cabberley in https://github.com/davidusb-geek/emhass/pull/555
- Fix aarch64 docker build by @polyfloyd in https://github.com/davidusb-geek/emhass/pull/551
- Add runtime parameter to prevent PV forecast feedback loop during cur… by @scruysberghs in https://github.com/davidusb-geek/emhass/pull/566
- Docs: Tiny typo at top of README by @Ultimation in https://github.com/davidusb-geek/emhass/pull/568
- Hybrid inverter input power limit and efficiency configuration by @rmounce in https://github.com/davidusb-geek/emhass/pull/571
- Fix problem with naive load forecast, issue 516 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/522
- Adding support for deferrable minimum power by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/575
New Contributors
- @polyfloyd made their first contribution in https://github.com/davidusb-geek/emhass/pull/535
- @cabberley made their first contribution in https://github.com/davidusb-geek/emhass/pull/555
- @Ultimation made their first contribution in https://github.com/davidusb-geek/emhass/pull/568
- @rmounce made their first contribution in https://github.com/davidusb-geek/emhass/pull/571
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.13.3...v0.13.4
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek 10 months ago
EHMASS - EMHASS version 0.13.3
Improvement
- Enhance optimization solver capabilities by adding HiGHS solver, improving thread configuration, and updating solver support across the project (@Crosenhain)
- Update spelling and extended some error messages to include more troubleshooting information (@kcoffau)
Fix
- Fixed incorrect indentation in a for loop, leaving relevant constraints out of the optimisation (@purcell_lab)
What's Changed
- HiGHS solver, fix glpk solver, config num_threads by @Crosenhain in https://github.com/davidusb-geek/emhass/pull/530
- Update retrieve_hass.py by @kcoffau in https://github.com/davidusb-geek/emhass/pull/531
- Update indentation in for k in range by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/532
New Contributors
- @kcoffau made their first contribution in https://github.com/davidusb-geek/emhass/pull/531
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.13.2...v0.13.3
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 1 year ago
EHMASS - EMHASS version 0.13.2
Release number 100!!! 🎉
Improvement
- Improved README and development documentation (@Crosenhain and @gieljnssns)
- Improved forecasting and optimization classes logging (@purcell_lab)
Fix
- Fixed ML Regressor for correct time zone treatment (@gieljnssns)
- Fixed long standing problem to allow thermal and standard loads to be scheduled (@purcell_lab)
- Fixing Missing files in python package issue (@pail23)
- Fixed improper handling of home assistant API errors (@Gruek)
- Remove an extraneous comma in the pd.to_datetime() method call in retrieve_hass.py (@GeoDerp)
- Fixed the SettingWithCopyWarning Pandas problem and PV sensor handling when set_use_adjusted_pv is false (@paulhomes)
What's Changed
- Prevent SettingWithCopyWarning by @paulhomes in https://github.com/davidusb-geek/emhass/pull/518
- Ignore sensor_power_photovoltaics_forecast when set_use_adjusted_pv is false by @paulhomes in https://github.com/davidusb-geek/emhass/pull/520
- chore(retrieve): rm random comma by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/523
- Fixed improper handling of home assistant API errors by @Gruek in https://github.com/davidusb-geek/emhass/pull/524
- forecast.py - updated logging by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/525
- Ml regressor fix by @gieljnssns in https://github.com/davidusb-geek/emhass/pull/526
- Add python files to source package by @pail23 in https://github.com/davidusb-geek/emhass/pull/527
- Allows thermal and standard loads to be scheduled by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/528
- Update P_grid description in README.md by @Crosenhain in https://github.com/davidusb-geek/emhass/pull/529
New Contributors
- @Gruek made their first contribution in https://github.com/davidusb-geek/emhass/pull/524
- @Crosenhain made their first contribution in https://github.com/davidusb-geek/emhass/pull/529
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.13.1...v0.13.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 1 year ago
EHMASS - EMHASS version 0.13.1
Improvement
- Add timeout and thread configuration for different LP solvers (CBC, GLPK, COIN). Thanks to @GeoDerp
- Clean up actions and add sourcery scan action. Thanks to @GeoDerp
- Cache Open-Meteo JSON reponse locally to reduce the number of API calls and add resilience. Thanks to @paulhomes
Fix
- Update default weight battery value in config_defaults.json. Thanks to @purcell-lab
- Fix forecast output assignment and avoid SettingWithCopyWarning. Thanks to @radim2tej
- Fix for get_mix_forecast ValueError: cannot convert float NaN to integer. Thanks to @paulhomes
- Fix for hard-coded actual/forecast PV sensor names. Thanks to @paulhomes
- Update pyproject.toml to solve issue #495: Missing files in python package after 0.12.5. Thanks to @GeoDerp
What's Changed
- Fix for hard-coded actual/forecast PV sensor names by @paulhomes in https://github.com/davidusb-geek/emhass/pull/499
- Update pyproject.toml by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/498
- Fix forecast output assignment and avoid SettingWithCopyWarning by @radim2tej in https://github.com/davidusb-geek/emhass/pull/508
- Fix for get_mix_forecast ValueError: cannot convert float NaN to integer by @paulhomes in https://github.com/davidusb-geek/emhass/pull/502
- Cache Open-Meteo JSON reponse locally to reduce the number of API calls and add resilience by @paulhomes in https://github.com/davidusb-geek/emhass/pull/503
- Update config_defaults.json - weight_battery by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/510
- feat(sourcery): clean up actions and add sourcery scan action by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/512
- fix(toml): adjust toml and imports by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/513
- feat(lpsolver): add timeout by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/514
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.13.0...v0.13.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 1 year ago
EHMASS - v0.13.0
A new method to adjust PV forecast!
Checkout the upgraded documentation here: https://emhass.readthedocs.io/en/latest/forecasts.html#adjusting-pv-forecasts-using-machine-learning
Improvement
- Added a new feature to automatically adjust PV forecast using historical actual/forecast data
- Added Support for multiple days forecasting with CSV data. Thanks to @nielskool for this contribution!
- Refactored a new method
retrieve_home_assistant_dataincommand_line - Unified default training data for ML algorithms using
data/long_train_data.pkl - Added a presentation stack using
marp
Fix
- Fixed Value has dtype incompatible with int64 error, issue #465
- Fixed Runtime "delta_forecast_daily" not recognized, issue #479
- Attempt to fix Missing files in python package after 0.12.5, issue #495
- Fixed workflow for macos tests
What's Changed
- Support multiple days forecasting with CSV data. by @nielskool in https://github.com/davidusb-geek/emhass/pull/485
- Replace any overnight negative PV power values with zero by @paulhomes in https://github.com/davidusb-geek/emhass/pull/494
- Change csv datetime to the correct local time zone by @nielskool in https://github.com/davidusb-geek/emhass/pull/491
- Adjust PV forecasts by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/476
New Contributors
- @nielskool made their first contribution in https://github.com/davidusb-geek/emhass/pull/485
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.8...v0.13.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 1 year ago
EHMASS - EMHASS version 0.12.8
This release comes with a special improvement for weather forecast, we are replacing the scrapper method with a new method using the Open-Meteo API: https://open-meteo.com/
This API provides high resolution forecasts at 15min intervals for any location in the world.
A big improvement to obtain accurate PV production forecasts.
Improvement
- Added a new method for weather forecast: open-meteo. This offers a very nice API to obtain weather forecasts. We are dropping the old scrapper method, if you were using the scapper method you just need to change the Weather forecast method to open-meteo
- Added support to
device_classdefinition when posting sensors to HA. Thanks to @paulhomes for this contribution - Improved github workflow Python testing
- Updated documentation
Fix
- Fixed TZ shift issue when using the typical load power forecaster
What's Changed
- Init caching by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/472
- feat(forecast-cache): add caching to solar-forecast by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/474
- Added device_class for sensors published to Home Assistant by @paulhomes in https://github.com/davidusb-geek/emhass/pull/471
- Implementing open-meteo API by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/469
New Contributors
- @paulhomes made their first contribution in https://github.com/davidusb-geek/emhass/pull/471
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.7...v0.12.8
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.12.7
Improvement
- A first batch of improvements (code reliability) proposed by SonarQube
Fix
- Added missing files to Dockerfile
- Changes to the Dockerfile to make
/app/datafolder persistent. Thanks to @scruysberghs - Fixing errors with missing sensor
power_load_no_var_loads. Thanks to @scruysberghs - Improved documentation and fixed automated testing for code quality. Thanks to @GeoDerp
What's Changed
- Fix SonarQube error by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/450
- A first batch of Sonar fixes by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/449
- fallback to what is set in the config by @scruysberghs in https://github.com/davidusb-geek/emhass/pull/458
New Contributors
- @scruysberghs made their first contribution in https://github.com/davidusb-geek/emhass/pull/458
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.6...v0.12.7
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.12.6
Some needed fixes and improvements
0.12.6 - 2025-02-09
Improvement
- Improved warning message in case of wrong URL setting
- Improved testing on typical load forecast method with different time steps
Fix
- Solved missing file problem: data_load_cost_forecast.csv
- Fixed warning issue on
findallmethod
What's Changed
- Fixed findall warning issue by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/448
- Update Dockerfile to solve issue #451 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/452
- Check changing time steps on typical load forecast method by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/453
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.5...v0.12.6
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.12.5
Improvement
- Implemented new package manager uv resulting in faster builds. Thanks to @GeoDerp
- Implemented SonarQube automatic code review. Thanks to @GeoDerp
- Better management of SOC min/max to solve issue: MPC optim status infeasible when SOC lower than min SOC
Fix
- Reverted back skforecast to latest version
- Fixed issue with list index out of range. Thanks to @meks007 for identifying and reporting this
What's Changed
- Update .readthedocs.yaml by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/437
- Update utils.py by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/442
- Revert skforecast by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/440
- feat(SonarQube): add SonarQube to readme by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/443
- Fixed issue related to 444 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/445
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.4...v0.12.5
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version v0.12.4
This is a patched version
Patch fix
- Fixed bugs on gunicorn logger and missing CBC modules
What's Changed
- Small fixes gunicorn_logger and cbc by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/434
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.3...v0.12.4
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.12.3
A new release with some interesting improvements and needed fixes.
Improvement
- PVLib DBs append custom EMHASS modules and inverters. Thanks to @GeoDerp
- Added a
def_total_timestepparameter (runtime only for now) that can be used instead ofdef_total_hoursfor passing timestep number instead of hour number. Thanks to @GeoDerp - Updated list of currencies in utils.py. Thanks to @BDVGitHub
- Multiple roof_id support. Thanks to @radim2tej
Fix
- Fix inconsistencies with Modules and Inverters from PVLib (thanks to help from @RafAustralia)
- Fix issue with NAN sensors causing crash errors if incorrect (error handling) @purcell-lab
- Fix Database path on optimization file (Thanks to @paulhomes for finding this issue)
- Fixed weight_battery_charge sign problem. Thanks to @radim2tej
- Fixed bug with out of index in list when retrieving config params from HA
What's Changed
- Debugging issue of list index out of range, solution proposed by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/418
- Update utils.py by @BDVGitHub in https://github.com/davidusb-geek/emhass/pull/417
- PVLib DBs append custom EMHASS modules and inverters by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/419
- Multiple roof_id support by @radim2tej in https://github.com/davidusb-geek/emhass/pull/423
- Update utils.py by @BDVGitHub in https://github.com/davidusb-geek/emhass/pull/424
- WIP emhass csv append modules and fix inverters syntax and semantics by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/426
- Fixed weight_battery_charge. by @radim2tej in https://github.com/davidusb-geek/emhass/pull/430
New Contributors
- @BDVGitHub made their first contribution in https://github.com/davidusb-geek/emhass/pull/417
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.2...v0.12.3
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.12.2
Patch fix
- Fixed Problem with calling weather-forecast-cache
Improvement
- Updated readthedocs.yml, got rid of duplicated requirements.txt
What's Changed
- Fix Problem with calling weather-forecast-cache by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/415
- Update utils.py by @radim2tej in https://github.com/davidusb-geek/emhass/pull/414
New Contributors
- @radim2tej made their first contribution in https://github.com/davidusb-geek/emhass/pull/414
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.1...v0.12.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.12.1
Patch fix
- Fixed error with retrieve config from HA
What's Changed
- Update README.md by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/410
- get_ha_config add error handling by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/411
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.12.0...v0.12.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.12.0
0.12.0 - 2024-12-29
BREAKING CHANGE
- The solar PV system is now optional. If you have a PV system then use the switch on the webui or set the
set_use_pvparameter toTrue.
Improvement
- A new load power forecast method based on statistic and typical household load power consumption. This and the optional PV, will make it easier for new users to on-board EMHASS because this new default behavior does not require any data retrieval from Home Assistant or any other external source.
- Updated documentation.
What's Changed
- Update README.md by @AJediIAm in https://github.com/davidusb-geek/emhass/pull/403
- Added support to retrieve configuration data directly from HA by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/399
- configuration page init pv switch by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/407
- generate test image from master by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/408
- Make PV system optional by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/405
- Updated documentation and new release by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/409
New Contributors
- @AJediIAm made their first contribution in https://github.com/davidusb-geek/emhass/pull/403
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.11.4...v0.12.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.11.4
Fix
- Fix bug when treating runtime params, fix optimization_time_step timedelta
What's Changed
- treat_runtimeparams fix optimization_time_step timedelta by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/396
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.11.3...v0.11.4
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.11.3
Improvement
- Runtime parameters now support all config parameters
- Adopted the Ruff code fomatting
- Added a Github Actions for Google OSV security code scan
- Updated the param_definitions.json
- Bump skforecast from 0.13.0 to 0.14.0. This needed upgrading a bunch of deprecated options. Notably skforcast now uses the time series cross-validation object (cv) from sklearn
Fix
- Updated the default battery optimization weights
- Fix publish_data defaulting to opt_res_latest, tweak warning logs
- Added MLForecaster options to load_forecast_method for param_definitions.json
What's Changed
- Recommendation, bump get_legacy_yaml_parse to get_yaml_parse by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/367
- param_definitions.json add mlforecaster option to load_forecast_method by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/370
- Fix publish_data defaulting to opt_res_latest, tweak warning logs. by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/375
- Bump skforecast from 0.13.0 to 0.14.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/376
- Update param_definitions.json by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/379
- Update default battery weights by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/380
- Runtime parameters, support all config parameters by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/387
- Revert "Runtime parameters, support all config parameters" by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/395
- Ruff format by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/388
- Github Actions - Google OSV scan by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/392
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.11.2...v0.11.3
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.11.2
Improvement
- Added support to retrieve HA configuration. This will be used in the future to automatically retrieve some parameters as the currency
Fix
- utils fix runtime parameter merge bugs
- configuration_script.js fix placeholder value bug
What's Changed
- configuration_script.js fix placeholder value bug by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/364
- utils fix runtime parameter merge bugs by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/366
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.11.1...v0.11.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.11.1
Fix
- Fix parameter saving and duplicate battery bugs
- utils.py add more specific logging information for config
- Fix issue where thermal runtime parameters were not being propagated into optim_conf
What's Changed
- Update README.md by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/358
- Fix parameter saving and duplicate battery bugs by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/361
- utils.py add more specific logging information for config by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/362
- Fix issue where thermal runtime parameters were not being propagated into optim_conf by @werdnum in https://github.com/davidusb-geek/emhass/pull/336
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.11.0...v0.11.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.11.0
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.
The complete discussion of the changes on this thread:
https://github.com/davidusb-geek/emhass/pull/334
Automatic version bot improvements
- Bump h5py from 3.11.0 to 3.12.1
- Bump markupsafe from 2.1.5 to 3.0.2
Fix
- Revert to myst-parser==3.0.1 to solve documentation compilation failures
What's Changed
- Fix typos, and improve spelling and grammar throughout the docs by @Moohan in https://github.com/davidusb-geek/emhass/pull/333
- Only automatically set the DateTimeIndex frequency if no "freq" is set in retrieve_hass_conf by @werdnum in https://github.com/davidusb-geek/emhass/pull/335
- Bump skforecast from 0.12.1 to 0.13.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/337
- Bump myst-parser from 3.0.1 to 4.0.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/338
- README.md adjust badges by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/331
- Develop.md fix and append unittests info by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/303
- Standalone and Add-on merge by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/334
- Bump h5py from 3.11.0 to 3.12.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/349
- Bump markupsafe from 2.1.5 to 3.0.2 by @dependabot in https://github.com/davidusb-geek/emhass/pull/356
New Contributors
- @Moohan made their first contribution in https://github.com/davidusb-geek/emhass/pull/333
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.10.6...v0.11.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 1 year ago
EHMASS - EMHASS version 0.10.6
Fix
- Fixed bug on predicted room temeprature publish, wrong key on DataFrame
What's Changed
- Added missing support for predicted temp publish, prepared new release by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/327
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.10.5...v0.10.6
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 2 years ago
EHMASS - EMHASS version 0.10.5
Improvement
- Added support for pubishing thermal load data, namely the predicted room temperature
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.10.4...v0.10.5
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 2 years ago
EHMASS - EMHASS version 0.10.4
In this release a new thermal modeling for deferrable loads.
Thanks to @werdnum for this contribution!
Improvement
- Added a new thermal modeling, see the new section in the documentation for help to implement this of model for thermal deferrable loads
- Improved documentation
What's Changed
- Fix issue where setfreq seems to be trying to set the frequency to zero by @werdnum in https://github.com/davidusb-geek/emhass/pull/325
- Davidusb geek/dev/thermal model by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/326
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.10.3...v0.10.4
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 2 years ago
EHMASS - EMHASS version 0.10.3
Some minor improvements on this release:
Improvement
- Added improved support for
def_start_penaltyoption - Improved documentation
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 2 years ago
EHMASS - EMHASS version 0.10.2
In this release:
Improvement
- Weather forecast caching and Solcast method fix by @GeoDerp
- Added a new configuration parameter to control wether we compute PV curtailment or not
- Added hybrid inverter to data publish
- It is now possible to pass these battery parameters at runtime:
SOCmin,SOCmax,Pd_maxandPc_max
Fix
- Fixed problem with negative PV forecast values in optimization.py, by @GeoDerp
What's Changed
- Bump skforecast from 0.12.0 to 0.12.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/293
- weather_forecast_cache (solcast) by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/300
- P_PV_curtailment, add minimum of 0 by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/316
- forecast-cache action to weather-forecast-cache by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/320
- Davidusb geek/dev/new params improv by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/307
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.10.1...v0.10.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 2 years ago
EHMASS - EMHASS version 0.10.1
0.10.1 - 2024-06-03
Fix
- Fixed PV curtailment maximum possible value constraint
- Added PV curtailement to variable to publish to HA
What's Changed
- Fixed PV curtailment limitation and publish by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/298
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.10.0...v0.10.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 2 years ago
EHMASS - EMHASS version 0.10.0
Improvement
- Added support for hybrid inverters
- Implemented a new
continual_publishservice that avoid the need of setting a special automation for data publish. Thanks to @GeoDerp - Implement a deferrable load start penalty functionality. Thanks to @werdnum
- This feature also implement a
def_current_statethat can be passed at runtime to let the optimization consider that a deferrable load is currently scheduled or under operation when launching the optimization task
- This feature also implement a
Fix
- Fixed forecast methods to treat delta_forecast higher than 1 day
- Fixed solar.forecast wrong interpolation of nan values
What's Changed
- Update forecasts.md by @g1za in https://github.com/davidusb-geek/emhass/pull/288
- continual_publish service by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/284
- Fix root_path issue #283 by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/285
- Implement start penalty functionality by @werdnum in https://github.com/davidusb-geek/emhass/pull/291
- Davidusb geek/dev/hybrid inverter def seq by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/296
New Contributors
- @werdnum made their first contribution in https://github.com/davidusb-geek/emhass/pull/291
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.9.1...v0.10.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 2 years ago
EHMASS - EMHASS version 0.9.1
Fix
- Fix patch for issue with paths to modules and inverters database
- Fixed code formatting, or at least trying to keep a unique format
What's Changed
- Adjusted Readme hyperlink Buttons by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/276
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.9.0...v0.9.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 2 years ago
EHMASS - EMHASS version 0.9.0
Improvement
- On this new version we now have a new method to train a regression model using Scikit-Learn methods. This is the contribution of @gieljnssns. Check the dedicated section in the documentation to this new feature: https://emhass.readthedocs.io/en/latest/mlregressor.html
- Again another bunch of nice improvements by @GeoDerp:
- Added Dictionary var containing EMHASS paths
- MLForcaster error suppression
- Add
freqas runtime parameter - Improved documentation added README buttons
- Bumping dependencies:
- Bump h5py from 3.10.0 to 3.11.0
- Bump myst-parser from 2.0.0 to 3.0.1
- Bump skforecast from 0.11.0 to 0.12.0
What's Changed
- Dynamic paths with emhass config dict, some mlforcaster error suppression by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/247
- patch: Tests still succeed when sensor param changes in emhass_config by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/253
- Bump h5py from 3.10.0 to 3.11.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/254
- utils.py add freq as runtime parameters by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/255
- Add a function to predict a value from a csv file. Part2 by @gieljnssns in https://github.com/davidusb-geek/emhass/pull/260
- Readme Buttons by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/267
- mlregressor.md adjusted curl examples by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/272
- Bump myst-parser from 2.0.0 to 3.0.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/263
- Bump skforecast from 0.11.0 to 0.12.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/274
New Contributors
- @gieljnssns made their first contribution in https://github.com/davidusb-geek/emhass/pull/260
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.8.6...v0.9.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 2 years ago
EHMASS - EMHASS version 0.8.6
Fix
- Fixed bug from forecast out method related to issue 240
- Fix patch for some issues with package file paths
What's Changed
- Fix - Fixed bug from forecast out method related to issue 240 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/250
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.8.5...v0.8.6
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 2 years ago
EHMASS - EMHASS version 0.8.5
Improvement
- Simplified fetch urls to relatives
- Improved code for passed forecast data error handling in utils.py
- Added new tests for forecast longer than 24h by changing parameter
delta_forecast - Added new files for updated PV modules and inverters database for use with PVLib
- Added a new webapp to help configuring modules and inverters: https://emhass-pvlib-database.streamlit.app/
- Added a new
P_to_grid_maxvariable, different from the currentP_from_grid_maxoption
Fix
- style.css auto format and adjusted table styling
- Changed pandas datetime rounding to nonexistent='shift_forward' to help survive DST change
- Dropped support for Python 3.9
What's Changed
- utils.py removed list_hp_periods def load no check by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/237
- Simplified fetch urls to relatives by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/239
- style.css auto format and adjusted table styling by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/241
- patch fix cec path issue by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/249
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.8.4...v0.8.5
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 2 years ago
EHMASS - EMHASS version 0.8.4
Improvement
- Improved documentation
- Improved logging errors on missing day info
Fix
- Missing round treatment for DST survival in utils.py
- Webui large icons fix
What's Changed
- Missing round treatment for DST survival in utils.py by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/228
- Index icon fix by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/231
- Improve weight_battery description by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/232
- retrieve_hass.py error day info by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/234
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.8.3...v0.8.4
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.8.3
Fix
- Fixed web_server options_json bug in standalone fix
What's Changed
- web_server options_json bug in standalone fix by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/226
- README.md standalone timezone info by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/227
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.8.2...v0.8.3
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.8.2
Improvement
- Proposed a new solution to survive DST using special option of Pandas
roundmethod - Added option to
web_serverto initdata_pathas an options param - Styling docs and html files on webui
- Advanced and basic pages improvements on webui
Fix
- Fixed support for ARM achitectures
What's Changed
- Advanced and Basic Pages by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/212
- web_server.py, info logger about passed runtime params by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/213
- Web Server ARG/ENV redundancy if missing secrets file , Docs added differences page by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/214
- basic.html fixed typo by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/217
- Docs, support custom.css and differences.md by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/219
- docs requirements.txt bump sphinx by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/221
- custom.css, slight table fix by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/222
- web_server addon mode init data_path options param by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/223
- Docker, requirements and amhf support by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/216
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.8.1...v0.8.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.8.1
Improvement
- Improved documentation
Fix
- Persistent data storage fix
- Docker Standalone Publish Workspace Fix
What's Changed
- conf.py, Docs not presenting develop.md by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/206
- Docker Standalone Publish Workspace Fix by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/207
- persistent storage docs by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/209
- web_server tweaked addon url/secret handling by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/210
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.8.0...v0.8.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.8.0
Improvement
- Thanks to the great work from @GeoDerp we now have a unified/centralized Dockerfile that allows for testing different installation configuration methods in one place. This greatly helps testing, notably emulating the add-on environment. This will improve overall testing for both teh core code and the add-on. Again many thanks!
- There were also a lot of nice improveements from @GeoDerp to the webui, namely: styling, dynamic table, optimization feedback after button press, logging, a new clear button, etc.
- From now on we will unify the semantic versioning for both the main core code and the add-on.
What's Changed
- Centralized docker file for all use cases by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/200
- html clear button to remove input data from localStorage by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/201
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.8...v0.8.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.8
Improvement
Added some nice logging functionalities and responsiveness on the webui.
Thanks to @GeoDerp for this great work!
- new actionLogs.txt is generated in datapath storing sessions app.logger info
- on successful html button press, fetch is called to get html containing latest table data
- on html button press, If app.logger ERROR is present, send action log back and present on page.
What's Changed
- Dynamic tables & error logger feedback by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/196
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.7...v0.7.8
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.7
Improvement
- Bumped the webui. Index/style added runtime parameter dictionary inputs. Thanks to @GeoDerp
- Added two additional testing environment options. Thanks to @GeoDerp
Fix
- Bump markupsafe from 2.1.4 to 2.1.5
What's Changed
- Optional: two additional testing environment options by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/182
- Bump markupsafe from 2.1.4 to 2.1.5 by @dependabot in https://github.com/davidusb-geek/emhass/pull/185
- index/style added runtime parameter dictionary inputs by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/190
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.6...v0.7.7
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.6
Fix
- Fixed number of startups constraint for deferrable load at the begining of the optimization period
- Fixed list of bools from options.json
- Fixed some testing and debugging scripts
What's Changed
- Update optimization.py by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/183
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.5...v0.7.6
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.5
Fix
- Fixing again "perform_backtest": "false" has no effect
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.4...v0.7.5
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.4
Fix
- Fixed broken build params method. Reverting back to alternate PR from @GeoDerp
What's Changed
- Fix - Several bug fixes, see CHANGELOG by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/179
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.3...v0.7.4
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.3
Fix
- Fixed bug when booleans, solving "perform_backtest": "false" has no effect
- Refactored util.py method to handle optional parameters
- Updated web server, solving runtime issues
- Solved issue passing solcast and solar.forecast runtime params
- Updated documentation requirements
What's Changed
- Update lpems.md by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/173
- Update requirements.txt by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/172
- style.css increased mobile Plotly support by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/170
- Alternative method to Utils optional options by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/169
- Issue #154: "perform_backtest": "false" has no effect by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/174
- "perform_backtest": "false" has no effect Fix by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/175
- perform_backtest fix try no.2 by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/177
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.2...v0.7.3
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.2
Patched new version wer server issues of missing list types
What's Changed
- Deferrable timewindow documentation by @michaelpiron in https://github.com/davidusb-geek/emhass/pull/165
- Deferrable timewindow documentation 2 by @michaelpiron in https://github.com/davidusb-geek/emhass/pull/166
- Fix optional bugs by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/164
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.1...v0.7.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.1
Fix
- Patched new version wer server issues accessing correct paths
What's Changed
- possible data path and addon arg fix by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/161
- Fix - Updated web server, solving runtime issues by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/162
- Fix - New patched version by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/163
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.7.0...v0.7.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.7.0
Improvement
- Added a new feature to provide operating time windows for deferrable loads. Thanks to @michaelpiron
- Added lots of new options to be configured by the user. Thanks to @GeoDerp
- Updated stylesheet with mobile & dark theme by @GeoDerp
- Improved launch.json to fully test EMHASS on different configurations. Thanks to @GeoDerp
- Added new script to debug and develop new time series clustering feature
- Improved documentation. Thanks to @g1za
Fix
- Updated github workflow actions/checkout to v4 and actions/setup-python to v5
- Changed default values for weight_battery_discharge and weight_battery_charge to zero
- Renamed classes to conform to PEP8
- Bump markupsafe from 2.1.3 to 2.1.4
What's Changed
- Optimizer documentation aligned with code by @michaelpiron in https://github.com/davidusb-geek/emhass/pull/143
- Updated stylesheet with mobile & dark theme by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/146
- Bump markupsafe from 2.1.3 to 2.1.4 by @dependabot in https://github.com/davidusb-geek/emhass/pull/150
- Time limit for deferrable loads by @michaelpiron in https://github.com/davidusb-geek/emhass/pull/153
- options.json increased supported parameters by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/149
- Added new scripts for debugging and testing new clustering feature by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/157
- Make options optional by @GeoDerp in https://github.com/davidusb-geek/emhass/pull/158
- Feat - Prepared new version, see CHANGELOG by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/160
New Contributors
- @GeoDerp made their first contribution in https://github.com/davidusb-geek/emhass/pull/146
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.6.2...v0.7.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.6.2
Improvement
- Added option to pass additional weight for battery usage
- Improved coverage
Fix
- Updated optimization constraints to solve conflict for
set_def_constantandtreat_def_as_semi_contcases
What's Changed
- Documentation: updated published values by @g1za in https://github.com/davidusb-geek/emhass/pull/140
- Fix - Fixed conflict on constraints by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/142
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.6.1...v0.6.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.6.1
Fix
- Patching EMHASS for Python 3.11. New explicit dependecy h5py==3.10.0
- Updated Dockerfile to easily test add-on build
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.6.0
New release 0.6.0!!!
Improvement
- Now Python 3.11 is fully supported, thanks to @pail23
- We now publish the optimization status on sensor.optim_status
- Bumped setuptools, skforecast, numpy, scipy, pandas
- A good bunch of documentation improvements thanks to @g1za
- Improved code coverage (a little bit ;-)
Fix
- Some fixes managing time zones, thanks to @pail23
- Bug fix on grid cost function equation, thanks to @michaelpiron
- Applying a first set of fixes proposed by @smurfix:
- Don't ignore HTTP errors
- Handle missing variable correctly
- Slight error message improvement
- Just use the default solver
- Get locations from environment in non-app mode
- Tolerate running directly from source
What's Changed
- Update optimization.py by @michaelpiron in https://github.com/davidusb-geek/emhass/pull/135
- Bump skforecast from 0.10.1 to 0.11.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/132
- Documentation integration by @g1za in https://github.com/davidusb-geek/emhass/pull/136
- Upgrade to python 3.11 by @pail23 in https://github.com/davidusb-geek/emhass/pull/131
- Fix - Preparing version 0.6.0, see CHANGELOG by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/137
New Contributors
- @michaelpiron made their first contribution in https://github.com/davidusb-geek/emhass/pull/135
- @pail23 made their first contribution in https://github.com/davidusb-geek/emhass/pull/131
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.5.1...v0.6.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.5.1
Improvement
- Improved documentation, thanks to @g1za
- Bumped skforecast to 0.10.1
- Added a new initial script for exploration of time series clustering. This will one day replace the need to configure the house load sensor with substracted deferrable load consumption
Fix
- Updated automated tesing, dropped support for Python 3.8
What's Changed
- Explain how to use the tune command - mlforecaster.md by @g1za in https://github.com/davidusb-geek/emhass/pull/114
- Bump skforecast from 0.9.1 to 0.10.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/110
- Update README.md by @g1za in https://github.com/davidusb-geek/emhass/pull/115
- Update forecasts.md by @g1za in https://github.com/davidusb-geek/emhass/pull/117
- Improvements in the documentation by @g1za in https://github.com/davidusb-geek/emhass/pull/118
- Bump skforecast from 0.10.0 to 0.10.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/119
- Drooping support for Python 3.8 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/120
New Contributors
- @g1za made their first contribution in https://github.com/davidusb-geek/emhass/pull/114
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.5.0...v0.5.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 2 years ago
EHMASS - EMHASS version 0.5.0
Improvement
- Finally added support for ingress thanks to the work from @siku2
- Added a devcontainer and pave the way for ingress access
Fix
- Added some code to fix some numerical syntax issues in tables
What's Changed
- Fix - Added some code to fix some numerical syntax issues in tables by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/105
- Add devcontainer and pave the way for ingress access by @siku2 in https://github.com/davidusb-geek/emhass/pull/106
New Contributors
- @siku2 made their first contribution in https://github.com/davidusb-geek/emhass/pull/106
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.15...v0.5.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 3 years ago
EHMASS - EMHASS version 0.4.15
Improvement
- Bumped pvlib to 0.10.1
- Updated documentation for forecasts methods.
Fix
- Fixed error message on utils.py
What's Changed
- Fix - Fixed error message on utils.py by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/99
- Update setup.py by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/102
- bump pvlib to v0.10.1 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/103
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.14...v0.4.15
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 3 years ago
EHMASS - EMHASS version 0.4.14
Improvement
- Bumped skforecast to latest 0.9.1.
- The standalone dockerfile was updated by @majorfrog to include the CBC solver.
Fix
- Fix rounding for price & cost forecasts by @purcell-lab
What's Changed
- Fix rounding for price & cost forecasts by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/96
- Bump skforecast from 0.8.1 to 0.9.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/95
- Bump skforecast from 0.9.0 to 0.9.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/97
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.13...v0.4.14
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 3 years ago
EHMASS - EMHASS version 0.4.13
Some interesting improvements and some needed fixes:
Improvement
- Added support for data reconstruction when missing values on last window for ML forecaster prediction.
- Added treatment of SOCtarget passed at runtime for day-ahead optimization.
- Added publish_prefix key to pass a common prefix to all published data.
Fix
- Patched sensor rounding problem.
- Bump myst-parser from 1.0.0 to 2.0.0
- Fixed missing attributes is the sensors when using the custom IDs.
What's Changed
- Bump markupsafe from 2.1.2 to 2.1.3 by @dependabot in https://github.com/davidusb-geek/emhass/pull/86
- Update retrieve_hass.py by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/91
- Update Dockerfile by @majorfrog in https://github.com/davidusb-geek/emhass/pull/92
- Bump myst-parser from 1.0.0 to 2.0.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/89
New Contributors
- @majorfrog made their first contribution in https://github.com/davidusb-geek/emhass/pull/92
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.12...v0.4.13
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 3 years ago
EHMASS - EMHASS version 0.4.12
Improvement
- Added forecasts for unit_prod_price and unit_load_cost.
- Improved documentation.
Fix
- Bump skforecast from 0.8.0 to 0.8.1
What's Changed
- Bump skforecast from 0.8.0 to 0.8.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/81
- Update retrieve_hass.py by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/84
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.11...v0.4.12
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 3 years ago
EHMASS - EMHASS version 0.4.11
Improvement
- Adding new constraints to limit the dynamics (kW/sec) of deferrable loads and battery power. The LP formulation works correctly and a work should be done on integrating the user input parameters to control this functionality.
- Added new constraint to avoid battery discharging to the grid.
- Added possibility to set the logging level.
Fix
- Bumped version of skforecast from 0.6.0 to 0.8.1. Doing this mainly implies changing how the exogenous data is passed to fit and predict methods.
- Fixed wrong path for csv files when using load cost and prod price forecasts.
What's Changed
- Dev/skforecast bump optim dynamics by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/80
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.10...v0.4.11
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 3 years ago
EHMASS - EMHASS version 0.4.10
Fix
- Fixed wrong name of new cost sensor.
- Fixed units of measurements of costs to €/kWh.
- Added color sequence to plot figures, now avery line should be plotted with a different color.
What's Changed
- Update utils.py to publish prod cost by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/77
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.9...v0.4.10
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 3 years ago
EHMASS - EMHASS version 0.4.9
Fix
- Updated default value for total number of days for ML model training.
- Added publish of unit_load_cost and unit_prod_price sensors.
- Improved docs intro.
- Bump myst-parser from 0.18.1 to 1.0.0
What's Changed
- Update machine_learning_forecaster.py by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/68
- Update to Introduction by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/72
- Bump myst-parser from 0.18.1 to 1.0.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/63
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.8...v0.4.9
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 3 years ago
EHMASS - EMHASS version 0.4.8
Fix
- Fixed to correct index length for ML forecaster prediction series.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.7...v0.4.8
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 3 years ago
EHMASS - EMHASS version 0.4.7
Fix
- Fixed wrong column name for var_load when using predict with ML forecaster.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0...v0.4.7
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 3 years ago
EHMASS - EMHASS version 0.4.6
Fix
- Fixed wrong path for saved ML forecaster model.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.5...v0.4.6
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 3 years ago
EHMASS - EMHASS version 0.4.5
Fix
- Fixed default behavior for passed data.
- Added a new graph for tune results.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.4...v0.4.5
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.4.4
Fix
- Added missing possibility to set the method for load forecast to 'mlforecaster'.
- Fixed logging formatting.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.3...v0.4.4
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.4.3
Some bug fixing
Fix
- Fixed logging.
- Fixed missing module on docker standalone mode.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.2...v0.4.3
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.4.2
Some bug fixes.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.1...v0.4.2
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.4.1
Some nice improvements adapted to the new version v0.4.x:
Improvement
- Improved the documentation and the in-code docstrings.
- Added the possibility to save the optimized model after a tuning routine.
- Added the possibility to publish predict results to a Home Assistant sensor.
- Added the possibility to provide custom entity_id, unit_of_measurement and friendly_name for each published data.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.4.0...v0.4.1
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.4.0
The new Machine Learning forecast module is here!
This will provide a better forecast model for the load power consumption forecast.
Improvement
- A brand new load forecast module and more... The new forecast module can actually be used to forecast any Home Assistant variable. The API provides fit, predict and tune methods. By the default it provides a more efficient way to forecast the power load consumption. It is based on the skforecast module that uses scikit-learn regression models considering auto-regression lags as features. The hyperparameter optimization is proposed using bayesian optimization from the optuna module.
- A new documentation section covering the new forecast module.
Fix
- Fixed Solar.Forecast issues with lists of parameters.
- Fixed latex equations rendering on documentation, dropped Mathjax.
- Refactored images in documentation, now using only SVG for plotly figures.
- Bumped requirements to latest non-conflicting versions.
What's Changed
- Update jinja2 requirement from <3.1 to <3.2 by @dependabot in https://github.com/davidusb-geek/emhass/pull/53
- Bump markupsafe from 2.0.1 to 2.1.2 by @dependabot in https://github.com/davidusb-geek/emhass/pull/52
- Dev/new forecast part1 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/57
- Dev/new forecast part2 by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/59
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.36...v0.4.0
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.36
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.35...v0.3.36
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.35
Fix
- Fixed access to injection_dict for the first time that emhass is used.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.34...v0.3.35
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.34
Fix
- Fixed bugs with paths again, now using the official pathlib everywhere.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.32...v0.3.34
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.32
Fix
- Fixed bugs on handling data folder name.
- Improved warning messages when passing list of values with items detected as non digits.
What's Changed
- Update web_server.py by @treynaer in https://github.com/davidusb-geek/emhass/pull/43
New Contributors
- @treynaer made their first contribution in https://github.com/davidusb-geek/emhass/pull/43
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.29...v0.3.32
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.29
Improvement: Implemented data storage to survive add-on restarts.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.28...v0.3.29
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version v0.3.25
Fixed dependencies, uniform working versions of Numpy, Pandas
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.24...v0.3.25
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.24
Fixed dependencies, rolled back to older fixed Numpy and Pandas versions.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.23...v0.3.24
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.23
A quick fix release.
Fix
- Fixed missing integration of additional
set_nocharge_from_gridin the web server. - Improved the documentation.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.22...v0.3.23
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.22
This version comes with some improvements and fixes. Most notably the possibility to add a constraint to forbidden charging the battery from the grid.
Improvement
- Improved unittest for mock get requests
- Improved coverage
Fix
- Code works even if no battery data is configured
- Added more explicit logging error message in the case of no data retrieved from Home Assistant
What's Changed
- Bump myst-parser from 0.14.0 to 0.18.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/28
- Bump markupsafe from 2.0.1 to 2.1.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/30
- Bump sphinx from 3.5.4 to 5.3.0 by @dependabot in https://github.com/davidusb-geek/emhass/pull/29
- Bump docutils from 0.16 to 0.19 by @dependabot in https://github.com/davidusb-geek/emhass/pull/31
- Bump sphinx-rtd-theme from 0.5.2 to 1.1.1 by @dependabot in https://github.com/davidusb-geek/emhass/pull/32
- Create CODE_OF_CONDUCT.md by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/33
- Bump markupsafe from 2.1.1 to 2.1.2 by @dependabot in https://github.com/davidusb-geek/emhass/pull/39
New Contributors
- @dependabot made their first contribution in https://github.com/davidusb-geek/emhass/pull/28
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.21...v0.3.22
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.21
Fix
- Fixed docstrings
- Added github worflows for coverage and automatic package compiling
- Fixing interpolation for Forecast.Solar data
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.20...v0.3.21
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.20
A new release with bunch of improvements, most notably added direct support for the Solar.Forecast method to forecast PV power.
Also:
- Added more detailed examples to the forecast module documentation.
- Improved handling of datatime indexes in DataFrames on forecast module.
- Added warning messages if passed list values contains non numeric items.
- Added missing unittests for forecast module with request.get dependencies using MagicMock.
What's Changed
- Dev/mockgetrequest by @davidusb-geek in https://github.com/davidusb-geek/emhass/pull/25
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.19...v0.3.20
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.19
Fix
- Updated default values for a working LP solver.
- Removed option to provide a custom web ui url.
- Added extra runtime parameters to use solcast PV forecast.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.18...v0.3.19
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek over 3 years ago
EHMASS - EMHASS version 0.3.18
Improvement
- Improving documentation, added more information on forecast page.
- Added support for SolCast PV production forecasts.
- Added possibility to pass some optimization parameters at runtime.
- Added some unittest for passing data as list testing.
Fix
- Fixed small bug on webserver using pandas sum function for non numeric data. This was throwing the following message: Dropping of nuisance columns in DataFrame reductions (with 'numeric_only=None') is deprecated.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.17...v0.3.18
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek almost 4 years ago
EHMASS - EMHASS version 0.3.17
Some bug fixes.
Fix
- Fixed wrong variables names for mixed forecasts.
- Fixed handling of load sensor name in command line setup function.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.16...v0.3.17
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 4 years ago
EHMASS - EMHASS version 0.3.16
Some worthy improvements in this new version.
Improvement
- Improving documentation, added "what is this" section and added some info-graphics.
- Added new forecasts methods chapter in documentation.
- Added publish of sensors for p_grid_forecast & total value of cost function.
- Implemented now/current value forecast correction when using MPC.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.15...v0.3.16
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 4 years ago
EHMASS - EMHASS version 0.3.15
Fix
- Fixed small bug with wrong DF variable name in web server.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.14...v0.3.15
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 4 years ago
EHMASS - v0.3.14
Improvement
- Added one more table to the weu showing the cost totals.
Fix
- Fixed wrong type error when serializing numpy ints. Converted ints to Python type.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.13...v0.3.14
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 4 years ago
EHMASS - EMHASS version 0.3.13
Fix
- Fix wrong default value implementation for solver params.
Improvement
- Added support to provide solver name and path as parameters in the configuration file.
What's Changed
- Update yaxis title for fig 2. by @purcell-lab in https://github.com/davidusb-geek/emhass/pull/10
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.11...v0.3.13
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 4 years ago
EHMASS - EMHASS version 0.3.11
In this new version some improvements were added to the code.
Improvement
- Added data as attributes for forecasts (PV and load), deferrable loads and battery: power+SOC.
- Improved the graph in the webserver, now using subplots.
- Rearranged vertical space in index.html template.
Fix
- Added threads option on waitress to possibly improve queue problem.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.10...v0.3.11
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 4 years ago
EHMASS - EMHASS version 0.3.9
Several bug fixes and improvements.
Improvement
- Improved publish data logging
- Round published data
- Attributes to forecasts published data
- Improved centering html on small devices
- Improved handling of closest index when publishing data
Fix
- Fixed problem with csv filenames, was using only filename specific to dayahead optimization.
- Fixed data list handling for load cost and prod price forecasts.
- Fixed publish data dictionary to contain only data from correct entity_id.
- May have solved double log lines.
Full Changelog: https://github.com/davidusb-geek/emhass/compare/v0.3.8...v0.3.9
Energy Systems - Building Energy Monitoring
- Python
Published by davidusb-geek about 4 years ago