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
While the first line reads the start values defined by add_voltage_starts!(), it looks like the second line overwrites and reassigns vm to 1.0 (for test cases where most of the buses are ungrounded).
Maybe this could work (might not be ideal):
vm = haskey(busref, "vm_start") ? busref["vm_start"] : fill(1.0, ncnd)
The text was updated successfully, but these errors were encountered:
The seems to be a problem with initializing voltage variables using
add_voltage_starts!()
.In the
variable_mc_bus_voltage()
function for ACP/ACR formulations, there isWhile the first line reads the start values defined by
add_voltage_starts!()
, it looks like the second line overwrites and reassigns vm to 1.0 (for test cases where most of the buses are ungrounded).Maybe this could work (might not be ideal):
The text was updated successfully, but these errors were encountered: