You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the four-wire network data, when there is a grounding/shunt in the network, the buses with shunt have 5 terminals and length-5 vectors. Given than the grounding is already represented in shunts, the 5-length vectors could potentially be reduced to length 4.
Given the dss file attached, with the code below
using PowerModelsDistribution
file = "Master.dss"
eng4w = parse_file(file, transformations=[transform_loops!])
eng4w["settings"]["sbase_default"] = 1 # Change power base here
eng4w["voltage_source"]["source"]["rs"] *= 0 # remove voltage source internal impedance
eng4w["voltage_source"]["source"]["xs"] *= 0 # remove voltage source internal impedance
math4w = transform_data_model(eng4w, kron_reduce=false, phase_project=false)
math4w["bus"]["1"]
math4w["bus"]["2"]
In the four-wire network data, when there is a grounding/shunt in the network, the buses with shunt have 5 terminals and length-5 vectors. Given than the grounding is already represented in shunts, the 5-length vectors could potentially be reduced to length 4.
Given the dss file attached, with the code below
Master.dss.zip
As can be seen in the data for the two buses below, bus 1 has 5 terminals and length-5 vectors, whereas bus 2 has 4 terminals and length-4 vectors.
The text was updated successfully, but these errors were encountered: