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
A simplified version of a test feeder is obtained by PMDTestFeeders.simplify_feeder!(data)
Directly creating a simplified dss file is not feasible, because the impedances have to be rescaled to obtain a network with a similar strength.
First of all, the transformers are removed from the feeders; this is equivalent to setting their taps to 1 (for wye-wye transformers). This lowers the voltage throughout the feeders, since most test cases include some boosting along the feeder.
For the loads, there are two options.
Simply change the load model to constant power, and convert delta to wye by assuming balanced voltage phasor. This is what I implemented now. The problem is that this leads to even higher voltage drops, because the consumption no longer decreases when the voltage drops (constant power). This can be quite drastic, see ieee34 in the table.
Run a power flow with the full component detail, and obtain the power drawn. Convert the loads to wye-connected constant power, and update their setpoints with the results from the initial power flow. This will lead to the same voltage drop.
0.66 pu voltage is way to low indeed. The other cases are defensible though. What about say that for IEEE 34, the load set points are all scaled by a factor x after delta->wye and ZI->P conversion? And then target a vmin around 0.9 pu voltage?
A simplified version of a test feeder is obtained by
PMDTestFeeders.simplify_feeder!(data)
Directly creating a simplified dss file is not feasible, because the impedances have to be rescaled to obtain a network with a similar strength.
First of all, the transformers are removed from the feeders; this is equivalent to setting their taps to 1 (for wye-wye transformers). This lowers the voltage throughout the feeders, since most test cases include some boosting along the feeder.
For the loads, there are two options.
@frederikgeth @ccoffrin @pseudocubic thoughts on which procedure is preferred for the loads?
The text was updated successfully, but these errors were encountered: