Topology Processor based on CIM-Graph Library
Project description
CIM-Topology-Processor
A Transmission+Distribution topology processor built on the CIM-Graph library. Processes Common Information Model (CIM) power system data to produce hierarchical distributed topology representations for grid simulation and analysis.
Designed for use with GridAPPS-D, dividing networks into schedulable areas:
- Distribution Areas — Top-level geographic regions
- Feeder Areas — Substation head terminal to first switch
- Switch Areas — Regions bounded by normally-open switches
- Secondary Areas — Low-voltage regions bounded by distribution transformers
Installation
Requires Python 3.10+. Install with uv (recommended) or pip.
# Base install
uv pip install -e .
# With GridAPPS-D integration
uv pip install -e ".[gridappsd]"
# With dev tools (Jupyter, pre-commit)
uv pip install -e ".[dev]"
# Everything
uv pip install -e ".[gridappsd,dev]"
Dependencies:
cim-graph >= 0.4.3a0gridappsd-python(optional, for GridAPPS-D service mode)
Usage
As a GridAPPS-D background service
Register the service using topology_background_service.config, then start it:
python topology_background_service.py
The service listens on goss.gridappsd.request.data.cimtopology and responds to:
requestType |
Description |
|---|---|
GET_DISTRIBUTED_AREAS |
Returns full hierarchical topology message |
GET_BASE_TOPOLOGY |
Not yet supported |
GET_SNAPSHOT_TOPOLOGY |
Not yet supported |
Example request:
import os
import json
from gridappsd import GridAPPSD
# Connect to GridAPPS-D
os.environ['GRIDAPPSD_USER'] = 'app_user'
os.environ['GRIDAPPSD_PASSWORD'] = '1234App'
gapps = GridAPPSD()
assert gapps.connected
# Request distributed topology for a feeder or distribution area by mRID
topic = "goss.gridappsd.request.data.cimtopology"
message = {
"requestType": "GET_DISTRIBUTED_AREAS",
"mRID": "49AD8E07-3BF9-A4E2-CB8F-C3722F837B62", # IEEE 13-node feeder mRID
"resultFormat": "JSON"
}
response = gapps.get_response(topic, message, timeout=30)
# Response contains the hierarchical topology message
print(json.dumps(response, indent=4))
The mRID can be a Feeder, FeederArea, or DistributionArea mRID — the service detects the container type automatically.
Standalone (no GridAPPS-D)
from cimgraph.databases import BlazegraphConnection
from cimtopology.utils import DistributedTopologyMessage
import cimgraph.data_profile.cimhub_2023 as cim
blazegraph = BlazegraphConnection()
container = blazegraph.get_object(mrid="<feeder-mRID>")
topo = DistributedTopologyMessage()
topo.get_context_from_feeder(container, blazegraph)
print(topo.message)
Configuration
The service reads these environment variables (defaults shown):
| Variable | Default | Description |
|---|---|---|
CIMG_CIM_PROFILE |
cimhub_2023 |
CIM data profile |
CIMG_URL |
http://localhost:8889/bigdata/namespace/kb/sparql |
Blazegraph SPARQL endpoint |
CIMG_NAMESPACE |
http://iec.ch/TC57/CIM100# |
CIM namespace URI |
GRIDAPPSD_USER |
app_user |
GridAPPS-D username |
GRIDAPPSD_PASSWORD |
1234App |
GridAPPS-D password |
Architecture
cimtopology/
├── distribution/
│ ├── distributed_topology.py # Core graph traversal (DistributedTopology)
│ ├── feeder_area.py # Feeder-to-first-switch areas
│ ├── switch_area.py # Switch-bounded areas
│ ├── secondary_area.py # Transformer secondary areas
│ └── dso_topology.py # DSO feeder division (see Known Limitations)
├── substation/
│ ├── busbar_topology.py # Substation bus topology
│ └── bus_number_mapper.py # Bus numbering for simulation exports
├── transmission/
│ └── distribution_area.py # Top-level distribution area processing
└── utils/
├── distributed_topo_message.py # JSON topology message builder
└── addressable.py # Equipment addressability classification
Topology traversal
Graph traversal follows ConnectivityNode → Terminal → ConductingEquipment using DistributedTopology.expand_to_boundaries(). Boundaries are:
- Normally-open switches (Switch, Breaker, Recloser, etc.)
- Voltage-changing transformers (secondary areas only)
Equipment classification
Addressable (controllable/observable): switches, breakers, reclosers, disconnectors, load break switches, sectionalisers, power electronics (PV, battery, wind), ratio tap changers, shunt compensators, synchronous/asynchronous machines.
Unaddressable (passive): line segments, fuses, power transformers, transformer tanks, energy sources, energy consumers.
Test Models
Large CIM model files are stored in test/test_models/ and tracked with Git LFS. To use them after cloning:
# Install Git LFS (one-time)
git lfs install
# Pull LFS files
git lfs pull
Included models:
ieee13_distributed.xml— IEEE 13-node test feeder with distributed area assignmentsdso_9500_node.xml/.jsonld— IEEE 9500-node model used for DSO topology developmentieee13_topo_msg.json— Example topology message output for IEEE 13-node feeder
Examples
See examples/9500node_example.ipynb for a worked example of loading the 9500-node model, assigning equipment containers to feeder areas, and running the topology processor.
Note: The example notebook contains hardcoded paths and node names specific to the 9500-node model. See Known Limitations below.
Known Limitations
dso_topology.pyandexamples/9500node_example.ipynbare hardcoded to the IEEE 9500-node model for initial development. Equipment container assignment uses 9500-node naming conventions (hvmv,s1/s2/s3, etc.) and is not yet generalized.get_context_from_feeder_area()indistributed_topo_message.pyis incomplete.GET_BASE_TOPOLOGYandGET_SNAPSHOT_TOPOLOGYrequest types are not yet implemented.
License
See LICENSE.
Attribution and Disclaimer
This software was created under a project sponsored by the U.S. Department of Energy’s Office of Electricity, an agency of the United States Government. Neither the United States Government nor the United States Department of Energy, nor Battelle, nor any of their employees, nor any jurisdiction or organization that has cooperated in the development of these materials, makes any warranty, express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness or any information, apparatus, product, software, or process disclosed, or represents that its use would not infringe privately owned rights.
Reference herein to any specific commercial product, process, or service by trade name, trademark, manufacturer, or otherwise does not necessarily constitute or imply its endorsement, recommendation, or favoring by the United States Government or any agency thereof, or Battelle Memorial Institute. The views and opinions of authors expressed herein do not necessarily state or reflect those of the United States Government or any agency thereof.
PACIFIC NORTHWEST NATIONAL LABORATORY operated by BATTELLE for the UNITED STATES DEPARTMENT OF ENERGY under Contract DE-AC05-76RL01830
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cim_topology-0.0.1.tar.gz.
File metadata
- Download URL: cim_topology-0.0.1.tar.gz
- Upload date:
- Size: 11.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d83d7bfe120c201e95146b55f3661b6cfa52033ac5bfa28d0c1bdf4e1a7b9da7
|
|
| MD5 |
a2e3376f4f3b6a4cfc03ab5a4e2936e7
|
|
| BLAKE2b-256 |
49822872b92cc8bff56ccadae86457eaff591488a897807df668d7224a49ffbe
|
File details
Details for the file cim_topology-0.0.1-py3-none-any.whl.
File metadata
- Download URL: cim_topology-0.0.1-py3-none-any.whl
- Upload date:
- Size: 27.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.1 {"installer":{"name":"uv","version":"0.11.1","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5ff31e264d89a81fc8e17b9e5930001f30ded9c9df502fb26a69b05ce0b5504
|
|
| MD5 |
6b4badb94667fffe21f155de3c8931a6
|
|
| BLAKE2b-256 |
c138f5460b77b44650633ef469923a229b7b99581c96f3aaa15b8f5a6c74aabc
|