Skip to main content

CIM models used within gridappsd.

Project description

GridAPPS-D CIM-Lab Library

Python library for parsing CIM power system models in distributed ADMS applications. It creates Python object instances in memory using a data profile exported from a specified CIM profile (e.g. GridAPPS-D CIM100 RC4_2021 profile).

The library is being expanded to cover centralized applications, transmission models, and real-time editing of CIM XML models natively.

Requirements

The gridappsd-cim-lab requires a python version >=3.8 and <4. No testing has been done with other versions.

It also requires a connection to a Blazegraph TripleStore Database or the GridAPPS-D Platform. Support for other databases may be added in future releases.

The DistributedModel class also requires the output for GridAPPS-D Topology Processor, which may be obtained by importing the topology processor library or passing an API call to the goss.gridappsd.request.data.topology queue in the GridAPPS-D platform.

Installation

The CIM-Lab library should be installed in same virtual environment as the ADMS application.

pip install gridappsd-cim-lab

It is also included in the gridappsd-python library, which can be installed using

pip install gridappsd-python

Specifying the CIM Profile

The CIM-Lab library supports multiple CIM profiles, which can be exported using CIMtool or Enterprise Architect Schema Composer as a .xsd data profile. The data profiles are ingested using the xsdata python library and saved in the cimlab/data_profile directory.

When importing the library, the CIM profile must be specified using the gridappsd-python constructor or directly as

import cimlab.data_profile.rc4_2021 as cim

or by using importlib:

import importlib
cim_profile = 'rc4_2021'
cim = importlib.import_module('cimlab.data_profile.' + cim_profile)

Model Initialization

The CIM-Lab library creates object instances populated with the attributes of name and mRID for all addressable and unaddressable equipment in each distributed area. All other attributes are None or [] by default.

Usage with GridAPPS-D Context Manager

If an application is built using the GridAPPS-D Context Manager and Field Interface in gridappsd-python, initialization of the DistributedModel, SwitchArea, and SecondaryArea classes is performed automatically.

Standalone Usage

Initialization of the DistributedModel, SwitchArea, and SecondaryArea classes requires the distributed topology message from GridAPPS-D Topology Processor, which may be called through the GridAPPS-D API or by import the topology library:

topic = "goss.gridappsd.request.data.topology"

message = {
   "requestType": "GET_SWITCH_AREAS",
   "modelID":  "_FEEDER_MRID_1234_ABCD,
   "resultFormat": "JSON"
}

topology_response = gapps.get_response(topic, message, timeout=30)
from topology_processor import DistributedTopology
gapps = GridappsdConnection(feeder_mrid)
Topology = DistributedTopology(gapps, feeder_mrid)
topology_response = Topology.create_switch_areas(feeder_mrid)
topology_response = json.loads(topology_response)

The distributed network model can then be initialized using

feeder = cim.Feeder(mRID=feeder_mrid)
network = DistributedModel(connection=bg, feeder=feeder, topology=topology_response['feeders'])

Core Library Methods

The CIM power system model can then be parsed by invoking the .get_all_attributes(cim.ClassName) method. The method populates all available attributes of the given attribute and creates default instances of all associated class object instances that are one association away in the CIM UML. Associated default instances are only populated with mRID attribute. The .get_all_attributes method must be invoked in sequential order following the inheritance hierarchy in the CIM UML, starting with the particular equiment class (e.g. ACLineSegment) and then each child class inheriting from the previous class.

The Python object instances can be accessed using the typed_catalog dictionary of each distributed area class instance. The typed catalog is organized by the class type and then mRID of each object. The attributes of each class can be accessed directly or through any associated class. These two call are equivalent:

bus_name = switch_area.typed_catalog[cim.ConnectivityNode][node_mrid].name
bus_name = switch_area.typed_catalog[cim.ACLineSegment][line_mrid].Terminals[0].ConnectivityNode.name

Note that all classes and attributes are case sensitive and follow the CIM UML conventions for each class.

All instances of all given CIM class can also be exported as JSON text using the .__dumps__(cim.ClassName) method of the distributed area classes:

Lines = switch_area.__dumps__(cim.ACLineSegment)

Additional examples of usage for specified CIM classes are inlcuded in model_example.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gridappsd_cim_lab-0.11.20230210193214a0.tar.gz (227.9 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file gridappsd_cim_lab-0.11.20230210193214a0.tar.gz.

File metadata

File hashes

Hashes for gridappsd_cim_lab-0.11.20230210193214a0.tar.gz
Algorithm Hash digest
SHA256 8ff04815679ee4b6c516d1d5cadd96edaa4c3fec8db43fbf8cfb8dd82cfe487b
MD5 96621effd26b86c074463849d9ebe39a
BLAKE2b-256 944f56c9338164da5e0c15bc4c507a59c46899cc097ee18bc8a07926dca0deed

See more details on using hashes here.

File details

Details for the file gridappsd_cim_lab-0.11.20230210193214a0-py3-none-any.whl.

File metadata

File hashes

Hashes for gridappsd_cim_lab-0.11.20230210193214a0-py3-none-any.whl
Algorithm Hash digest
SHA256 82205dbb45aa1a5caa223c9dd94c799faa8855479aa50ef81d6e25010d43bd19
MD5 3de35722ab13e15763d8d25e06216671
BLAKE2b-256 d4248f45190deb122bbefeddd06196df5d3f22ba6457197bbebb36ba4af5519d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page