We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update ConnectionParameter from cimgraph.databases import ConnectionParameters params = ConnectionParameters(host = "localhost", port = "61613", cim_profile='rc4_2021', iec61970_301=7) gapps = GridappsdConnection(params)
Use FeederModel instead of DistributionModel from cimgraph.models import FeederModel feeder = cim.Feeder(mRID = feeder_mrid) network = FeederModel(connection=gapps, container=feeder, distributed=False)
Update switch areas switch_areas = network.distributed_areas
Update secondary areas secondary_areas = switch_areas.distributed_areas
Change typed_catalog function call to graph in dist sample app sample_queries.py
Change get_all_attributed to get_all_edges in dist sample app sample_queries.py
After above changes are done in distributed API :
Update Ybus to use updated distributed API and cim-graph
Update DEC app to use updated distributed API and cim-graph
The text was updated successfully, but these errors were encountered:
afisher1
poorva1209
AAndersn
Tylores
No branches or pull requests
Update ConnectionParameter
from cimgraph.databases import ConnectionParameters
params = ConnectionParameters(host = "localhost", port = "61613", cim_profile='rc4_2021', iec61970_301=7)
gapps = GridappsdConnection(params)
Use FeederModel instead of DistributionModel
from cimgraph.models import FeederModel
feeder = cim.Feeder(mRID = feeder_mrid)
network = FeederModel(connection=gapps, container=feeder, distributed=False)
Update switch areas
switch_areas = network.distributed_areas
Update secondary areas
secondary_areas = switch_areas.distributed_areas
Change typed_catalog function call to graph in dist sample app sample_queries.py
Change get_all_attributed to get_all_edges in dist sample app sample_queries.py
After above changes are done in distributed API :
Update Ybus to use updated distributed API and cim-graph
Update DEC app to use updated distributed API and cim-graph
The text was updated successfully, but these errors were encountered: