running timeseries with runpp_3ph while also passing the parameter trafo_loading="power" in runpp_3ph #2219
Replies: 1 comment
-
(Background info:) (Findings with trafo_loading=current:) |
Beta Was this translation helpful? Give feedback.
-
Hello,
I've had some trouble with the results of an asymmetric powerflow in a timeseries I run.
I passed in the runpp_3ph function to the timeseries, in order to run the asymmetric load flow instead of the balanced one:
run_timeseries(net, time_steps=range(0, 96), run=pp.runpp_3ph)
But if I do it like this I get infeasable results.
Is there a way to also pass a parameter to this pp.runpp_3ph function? It does not work like this:
run_timeseries(net, time_steps=range(0, 96), run=pp.runpp_3ph(net, trafo_loading="power"))
Or if not, could I get to the results of trafo loading_percent calculated like when trafo_loading="power" is set some other way?
I tried running without timeseries, so just a single time step just with the usual runpp_3ph(net, trafo_loading=power) function. There my results are feasable. But I can't do it like this using loops, because my model depends on pandapower controllers that wouldn't work without a timeseries. The test I made was just a simplified version of the model.
Beta Was this translation helpful? Give feedback.
All reactions