mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2026-02-28 20:06:19 +00:00
Some checks failed
Bump Version / Bump Version Workflow (push) Has been cancelled
docker-build / platform-excludes (push) Has been cancelled
docker-build / build (push) Has been cancelled
docker-build / merge (push) Has been cancelled
pre-commit / pre-commit (push) Has been cancelled
Run Pytest on Pull Request / test (push) Has been cancelled
* feat: add inverter AC/DC efficiency and break-even penalty * test: update tests/test_geneticoptimize.py with new ac_charge_break_even parameter * docs: update documentation * chore: update version numbers in configuration files to v0.2.0.dev2602272006923535
3.4 KiB
3.4 KiB
General Optimization Configuration
:::{table} optimization :widths: 10 20 10 5 5 30 :align: left
| Name | Environment Variable | Type | Read-Only | Default | Description |
|---|---|---|---|---|---|
| algorithm | EOS_OPTIMIZATION__ALGORITHM |
`str | None` | rw |
GENETIC |
| genetic | EOS_OPTIMIZATION__GENETIC |
`akkudoktoreos.optimization.optimization.GeneticCommonSettings | None` | rw |
None |
| horizon_hours | EOS_OPTIMIZATION__HORIZON_HOURS |
`int | None` | rw |
24 |
| interval | EOS_OPTIMIZATION__INTERVAL |
`int | None` | rw |
3600 |
| keys | list[str] |
ro |
N/A |
The keys of the solution. | |
| ::: |
Example Input
{
"optimization": {
"horizon_hours": 24,
"interval": 3600,
"algorithm": "GENETIC",
"genetic": {
"individuals": 400,
"generations": 400,
"seed": null,
"penalties": {
"ev_soc_miss": 10
}
}
}
}
Example Output
{
"optimization": {
"horizon_hours": 24,
"interval": 3600,
"algorithm": "GENETIC",
"genetic": {
"individuals": 400,
"generations": 400,
"seed": null,
"penalties": {
"ev_soc_miss": 10
}
},
"keys": []
}
}
General Genetic Optimization Algorithm Configuration
:::{table} optimization::genetic :widths: 10 10 5 5 30 :align: left
| Name | Type | Read-Only | Default | Description |
|---|---|---|---|---|
| generations | `int | None` | rw |
400 |
| individuals | `int | None` | rw |
300 |
| penalties | `dict[str, float | int | str] | None` |
| seed | `int | None` | rw |
None |
| ::: |
Example Input/Output
{
"optimization": {
"genetic": {
"individuals": 300,
"generations": 400,
"seed": null,
"penalties": {
"ev_soc_miss": 10
}
}
}
}