consumer
frequenz.sdk.timeseries.consumer ¤
The logical component for calculating high level consumer metrics for a microgrid.
Classes¤
frequenz.sdk.timeseries.consumer.Consumer ¤
Calculate high level consumer metrics in a microgrid.
Under normal circumstances this is expected to correspond to the gross consumption of the site excluding active parts and battery.
Consumer provides methods for fetching power values from different points
in the microgrid. These methods return FormulaReceiver
objects, which can
be used like normal Receiver
s, but can also be composed to form
higher-order formula streams.
Note
Consumer
instances are not meant to be created directly by users.
Use the microgrid.consumer
method
for creating Consumer
instances.
Example
from datetime import timedelta
from frequenz.sdk import microgrid
from frequenz.sdk.timeseries import ResamplerConfig
await microgrid.initialize(
"grpc://127.0.0.1:50051",
ResamplerConfig(resampling_period=timedelta(seconds=1.0))
)
consumer = microgrid.consumer()
# Get a receiver for a builtin formula
consumer_power_recv = consumer.power.new_receiver()
async for consumer_power_sample in consumer_power_recv:
print(consumer_power_sample)
Source code in frequenz/sdk/timeseries/consumer.py
Attributes¤
power
property
¤
power: FormulaEngine[Power]
Fetch the consumer power for the microgrid.
This formula produces values that are in the Passive Sign Convention (PSC).
It will start the formula engine to calculate consumer power if it is not already running.
A receiver from the formula engine can be created using the
new_receiver
method.
RETURNS | DESCRIPTION |
---|---|
FormulaEngine[Power]
|
A FormulaEngine that will calculate and stream consumer power. |
Functions¤
__init__ ¤
__init__(
channel_registry: ChannelRegistry,
resampler_subscription_sender: Sender[
ComponentMetricRequest
],
) -> None
Initialize the consumer formula generator.
PARAMETER | DESCRIPTION |
---|---|
channel_registry
|
The channel registry to use for the consumer.
TYPE:
|
resampler_subscription_sender
|
The sender to use for resampler subscriptions.
TYPE:
|