High-level interface to gridpools for the Frequenz platform.
Market topology is stored under the assets namespace. A relation names at
least two of a gridpool, microgrid and market location:
assets.microgrids.241.meta.microgrid_id = 241
assets.market_locations.10208446344.id = "10208446344"
assets.relations.G80M241L10208446344.gridpool_id = 80
assets.relations.G80M241L10208446344.microgrid_id = 241
assets.relations.G80M241L10208446344.market_location_id = "10208446344"
assets.relations.G80M241L10208446344.delivery_area.code = "10YDE-RWENET---I"
assets.relations.G80M241L10208446344.validity.trading.participation = "ENERGY_TRADING"
assets.relations.G80M241L10208446344.validity.trading.start = 2026-01-01T00:00:00ZA relation naming a gridpool requires a delivery area. A gridpool-free relation
must link a microgrid and market location, and may carry a delivery area for a
direct market-location-to-area mapping. Omitted market-location types default
to MALO_ID; omitted market areas default to 101 (EU_DE).
A delivery area is a code and a code_type that defaults to EIC, so an EIC
area is just delivery_area.code = "...". EIC codes are checked for format and
check character, not registration with an EIC issuing office; other code types
are taken as given. One code is bound to a single code type across a document.
Validity periods are half-open: the start is inclusive, the end exclusive, and an omitted bound is open. Bounds and query instants must include a UTC offset.
Load one or more files and query the merged document with:
from datetime import datetime, timezone
from pathlib import Path
from frequenz.gridpool.config import AssetsConfig
config = AssetsConfig.load_from_files(
[Path("topology.toml"), Path("topology-overrides.toml")]
)
relations = config.find_relations(
microgrid_id=241,
at=datetime(2026, 1, 15, tzinfo=timezone.utc),
)Later files override individual fields from earlier files. The projections
find_delivery_areas, find_market_locations and find_microgrids accept
filters for the other relation sides and an instant. find_delivery_areas
returns each area with its code and code type; a delivery-area filter takes
either a bare code or a full delivery area matched on its code type.
Market locations are keyed by raw ID, so the same raw ID cannot be used in several market areas within one document.
The following platforms are officially supported (tested):
- Python: 3.11
- Operating System: Ubuntu Linux 20.04
- Architectures: amd64, arm64
This package ships the gridpool-cli command with three subcommands.
Set the Assets API credentials before running the CLI:
export ASSETS_API_URL="grpc://..."
export ASSETS_API_AUTH_KEY="..."
export ASSETS_API_SIGN_SECRET="..."gridpool-cli print-formulas <microgrid_id>Optional prefix formatting:
gridpool-cli print-formulas <microgrid_id> --prefix "{microgrid_id}.{component}"The per-category formulas (pv, battery, chp, ev) read the component
first and use the meter as the fallback. Use
--prefer-meters-in-component-formulas for the opposite order, which is what
versions before component graph v0.5.0 produced:
gridpool-cli print-formulas <microgrid_id> --prefer-meters-in-component-formulasRendering requires optional dependencies. Install with:
pip install frequenz-gridpool[render-graph]gridpool-cli render-graph <microgrid_id>To save without opening a window:
gridpool-cli render-graph <microgrid_id> --no-show --output component_graph.pngDerive metadata, formulas and component IDs for one or more microgrids from the Assets API and print them as dotted-key TOML to stdout:
gridpool-cli generate-config <microgrid_id> [<microgrid_id> ...]Redirect stdout to save the result:
gridpool-cli generate-config <microgrid_id> > microgrid.tomlThis command emits only microgrid entries. Topology relations, including their delivery-area codes, and market-location entries from input files are not included in its stdout output.
You can layer existing microgrid config files with the Assets API by precedence
(--default < Assets API < --override). Values from a --default file are
overridden by the API, while a --override file keeps its own values and the
API only fills the gaps:
gridpool-cli generate-config <microgrid_id> \
--default defaults.toml \
--override overrides.toml > microgrid.tomlIf no microgrid IDs are given, they are taken from the microgrid entries in the supplied files:
gridpool-cli generate-config --override existing.toml > microgrid.toml--prefer-meters-in-component-formulas works here too, so a regenerated
config can keep the meter-first order of the per-category formulas:
gridpool-cli generate-config <microgrid_id> \
--prefer-meters-in-component-formulas > microgrid.tomlIf you want to know how to build this project and contribute to it, please check out the Contributing Guide.