messages
frequenz.sdk.timeseries.battery_pool.messages ¤
Types for exposing battery pool reports.
Attributes¤
frequenz.sdk.timeseries.battery_pool.messages.Result
module-attribute
¤
Result = Success | PartialFailure | Error | OutOfBounds
Power distribution result.
Example: Handling power distribution results
```python
from typing import assert_never
from frequenz.sdk.actor.power_distributing import (
Error,
OutOfBounds,
PartialFailure,
Result,
Success,
)
from frequenz.sdk.actor.power_distributing.request import Request
from frequenz.sdk.actor.power_distributing.result import PowerBounds
from frequenz.quantities import Power
def handle_power_request_result(result: Result) -> None:
match result:
case Success() as success:
print(f"Power request was successful: {success}")
case PartialFailure() as partial_failure:
print(f"Power request was partially successful: {partial_failure}")
case OutOfBounds() as out_of_bounds:
print(f"Power request was out of bounds: {out_of_bounds}")
case Error() as error:
print(f"Power request failed: {error}")
case _ as unreachable:
assert_never(unreachable)
request = Request(
namespace="TestChannel",
power=Power.from_watts(123.4),
component_ids={8, 18},
)
results: list[Result] = [
Success(
request,
succeeded_power=Power.from_watts(123.4),
succeeded_components={8, 18},
excess_power=Power.zero(),
),
PartialFailure(
request,
succeeded_power=Power.from_watts(103.4),
succeeded_components={8},
excess_power=Power.zero(),
failed_components={18},
failed_power=Power.from_watts(20.0),
),
OutOfBounds(request, bounds=PowerBounds(0, 0, 0, 800)),
Error(request, msg="The components are not available"),
]
for r in results:
handle_power_request_result(r)
```
Classes¤
frequenz.sdk.timeseries.battery_pool.messages.BatteryPoolReport ¤
Bases: Protocol
A status report for a battery pool.
Source code in frequenz/sdk/timeseries/battery_pool/messages.py
Attributes¤
bounds
property
¤
bounds: Bounds[Power] | None
The usable bounds for the batteries.
These bounds are adjusted to any restrictions placed by actors with higher priorities.
There might be exclusion zones within these bounds. If necessary, the
adjust_to_bounds
method may be used to check if a desired power value fits the bounds, or to get
the closest possible power values that do fit the bounds.
Functions¤
adjust_to_bounds
abstractmethod
¤
adjust_to_bounds(
power: Power,
) -> tuple[Power | None, Power | None]
Adjust a power value to the bounds.
This method can be used to adjust a desired power value to the power bounds available to the actor.
If the given power value falls within the usable bounds, it will be returned unchanged.
If it falls outside the usable bounds, the closest possible value on the corresponding side will be returned. For example, if the given power is lower than the lowest usable power, only the lowest usable power will be returned, and similarly for the highest usable power.
If the given power falls within an exclusion zone that's contained within the usable bounds, the closest possible power values on both sides will be returned.
Note
It is completely optional to use this method to adjust power values before proposing them, because the battery pool will do this automatically. This method is provided for convenience, and for granular control when there are two possible power values, both of which fall within the available bounds.
Example
from frequenz.sdk import microgrid
power_status_rx = microgrid.new_battery_pool(
priority=5,
).power_status.new_receiver()
power_status = await power_status_rx.receive()
desired_power = Power.from_watts(1000.0)
match power_status.adjust_to_bounds(desired_power):
case (power, _) if power == desired_power:
print("Desired power is available.")
case (None, power) | (power, None) if power:
print(f"Closest available power is {power}.")
case (lower, upper) if lower and upper:
print(f"Two options {lower}, {upper} to propose to battery pool.")
case (None, None):
print("No available power")
PARAMETER | DESCRIPTION |
---|---|
power
|
The power value to adjust.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
tuple[Power | None, Power | None]
|
A tuple of the closest power values to the desired power that fall within the available bounds for the actor. |
Source code in frequenz/sdk/timeseries/battery_pool/messages.py
frequenz.sdk.timeseries.battery_pool.messages.Error
dataclass
¤
Bases: _BaseResultMixin
Result returned when an error occurred and power was not set at all.
Source code in frequenz/sdk/microgrid/_power_distributing/result.py
frequenz.sdk.timeseries.battery_pool.messages.OutOfBounds
dataclass
¤
Bases: _BaseResultMixin
Result returned when the power was not set because it was out of bounds.
This result happens when the originating request was done with
adjust_power = False
and the requested power is not within the available bounds.
Source code in frequenz/sdk/microgrid/_power_distributing/result.py
frequenz.sdk.timeseries.battery_pool.messages.PartialFailure
dataclass
¤
Bases: _BaseSuccessMixin
, _BaseResultMixin
Result returned when some of the components had an error setting the power.
Source code in frequenz/sdk/microgrid/_power_distributing/result.py
Attributes¤
excess_power
instance-attribute
¤
The part of the requested power that could not be fulfilled.
This happens when the requested power is outside the available power bounds.
failed_components
instance-attribute
¤
The subset of batteries for which the request failed.
failed_power
instance-attribute
¤
The part of the requested power that failed to be set.
succeeded_components
instance-attribute
¤
The subset of components for which power was set successfully.
succeeded_power
instance-attribute
¤
The part of the requested power that was successfully set.
frequenz.sdk.timeseries.battery_pool.messages.Success
dataclass
¤
Bases: _BaseSuccessMixin
, _BaseResultMixin
Result returned when setting the power was successful for all components.
Source code in frequenz/sdk/microgrid/_power_distributing/result.py
Attributes¤
excess_power
instance-attribute
¤
The part of the requested power that could not be fulfilled.
This happens when the requested power is outside the available power bounds.
succeeded_components
instance-attribute
¤
The subset of components for which power was set successfully.
succeeded_power
instance-attribute
¤
The part of the requested power that was successfully set.