-
Notifications
You must be signed in to change notification settings - Fork 20
Add a PVPool implementation
#914
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
8da7645
Add a component status tracker for PV inverters
shsms e8b4705
Pass ComponentType as arguments to PowerManager and PowerDistributor
shsms ed85d8a
Add a `stop` method for `LatestValueCache`
shsms 6be3ac4
Add a `PVManager` implementation
shsms 1a52351
Update `PowerDistributor` to support PV inverters
shsms 6633e9a
Implement a `SystemBoundsTracker` for PV inverters
shsms 446187b
Implement a PV pool with a `_system_power_bounds` method
shsms d1021d3
Expose the `PVPool` through `microgrid.pv_pool()`
shsms 5d62396
Support PV inverters in the `PowerManager`
shsms bb333e0
Implement power_status reporting from the PV pool
shsms f091eaf
Support sending power proposals to `PowerManager` from the `PVPool`
shsms 141f896
Move the PV `power` formula from `logical_meter` to `PVPool`
shsms a039724
Add a `stop` method to `BatteryPool`
shsms 5093900
Add tests for PVPool control methods
shsms 79a725c
Add section for PV arrays in microgrid concepts documentation
shsms c647ed0
Update section for EV chargers in microgrid concepts documentation
shsms 0411b7d
Update release notes
shsms 09c8414
Make `component_category` and `component_type` parameters kw-only
shsms 0f022ab
Initialize super-class as the first step
shsms 22158fe
Fix docstring
shsms 4f9883d
Broaden exception handling when setting power through microgrid API
shsms 30f19c0
Remove `*Pool` constructor related docs from the class docs
shsms 6e1400d
Fix exception handling bugs in EV and PV managers
shsms File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...requenz/sdk/actor/power_distributing/_component_managers/_pv_inverter_manager/__init__.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # License: MIT | ||
| # Copyright © 2024 Frequenz Energy-as-a-Service GmbH | ||
|
|
||
| """Manage PV inverters for the power distributor.""" | ||
|
|
||
| from ._pv_inverter_manager import PVManager | ||
|
|
||
| __all__ = ["PVManager"] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.