Power Flow

pandapower uses PYPOWER to solve the power flow problem:

alternate Text
pandapower.runpp(net, algorithm='nr', calculate_voltage_angles='auto', init='auto', max_iteration='auto', tolerance_mva=1e-08, trafo_model='t', trafo_loading='current', enforce_q_lims=False, check_connectivity=True, voltage_depend_loads=True, consider_line_temperature=False, **kwargs)

Runs a power flow

INPUT:
net - The pandapower format network
OPTIONAL:

algorithm (str, “nr”) - algorithm that is used to solve the power flow problem.

The following algorithms are available:

  • “nr” Newton-Raphson (pypower implementation with numba accelerations)
  • “iwamoto_nr” Newton-Raphson with Iwamoto multiplier (maybe slower than NR but more robust)
  • “bfsw” backward/forward sweep (specially suited for radial and weakly-meshed networks)
  • “gs” gauss-seidel (pypower implementation)
  • “fdbx” fast-decoupled (pypower implementation)
  • “fdxb” fast-decoupled (pypower implementation)

calculate_voltage_angles (bool, “auto”) - consider voltage angles in loadflow calculation

If True, voltage angles of ext_grids and transformer shifts are considered in the loadflow calculation. Considering the voltage angles is only necessary in meshed networks that are usually found in higher voltage levels. calculate_voltage_angles in “auto” mode defaults to:

  • True, if the network voltage level is above 70 kV
  • False otherwise

The network voltage level is defined as the maximum rated voltage of any bus in the network that is connected to a line.

init (str, “auto”) - initialization method of the loadflow pandapower supports four methods for initializing the loadflow:

  • “auto” - init defaults to “dc” if calculate_voltage_angles is True or “flat” otherwise
  • “flat”- flat start with voltage of 1.0pu and angle of 0° at all PQ-buses and 0° for PV buses as initial solution
  • “dc” - initial DC loadflow before the AC loadflow. The results of the DC loadflow are used as initial solution for the AC loadflow.
  • “results” - voltage vector of last loadflow from net.res_bus is used as initial solution. This can be useful to accelerate convergence in iterative loadflows like time series calculations.

Considering the voltage angles might lead to non-convergence of the power flow in flat start. That is why in “auto” mode, init defaults to “dc” if calculate_voltage_angles is True or “flat” otherwise

max_iteration (int, “auto”) - maximum number of iterations carried out in the power flow algorithm.

In “auto” mode, the default value depends on the power flow solver:

  • 10 for “nr”
  • 100 for “bfsw”
  • 1000 for “gs”
  • 30 for “fdbx”
  • 30 for “fdxb”

tolerance_mva (float, 1e-8) - loadflow termination condition referring to P / Q mismatch of node power in MVA

trafo_model (str, “t”) - transformer equivalent circuit model pandapower provides two equivalent circuit models for the transformer:

  • “t” - transformer is modeled as equivalent with the T-model.
  • “pi” - transformer is modeled as equivalent PI-model. This is not recommended, since it is less exact than the T-model. It is only recommended for valdiation with other software that uses the pi-model.

trafo_loading (str, “current”) - mode of calculation for transformer loading

Transformer loading can be calculated relative to the rated current or the rated power. In both cases the overall transformer loading is defined as the maximum loading on the two sides of the transformer.

  • “current”- transformer loading is given as ratio of current flow and rated current of the transformer. This is the recommended setting, since thermal as well as magnetic effects in the transformer depend on the current.
  • “power” - transformer loading is given as ratio of apparent power flow to the rated apparent power of the transformer.

enforce_q_lims (bool, False) - respect generator reactive power limits

If True, the reactive power limits in net.gen.max_q_mvar/min_q_mvar are respected in the loadflow. This is done by running a second loadflow if reactive power limits are violated at any generator, so that the runtime for the loadflow will increase if reactive power has to be curtailed.

Note: enforce_q_lims only works if algorithm=”nr”!

check_connectivity (bool, True) - Perform an extra connectivity test after the conversion from pandapower to PYPOWER

If True, an extra connectivity test based on SciPy Compressed Sparse Graph Routines is perfomed. If check finds unsupplied buses, they are set out of service in the ppc

voltage_depend_loads (bool, True) - consideration of voltage-dependent loads. If False, net.load.const_z_percent and net.load.const_i_percent are not considered, i.e. net.load.p_mw and net.load.q_mvar are considered as constant-power loads.

consider_line_temperature (bool, False) - adjustment of line impedance based on provided
line temperature. If True, net.line must contain a column “temperature_degree_celsius”. The temperature dependency coefficient alpha must be provided in the net.line.alpha column, otherwise the default value of 0.004 is used

**KWARGS:

numba (bool, True) - Activation of numba JIT compiler in the newton solver

If set to True, the numba JIT compiler is used to generate matrices for the powerflow, which leads to significant speed improvements.

switch_rx_ratio (float, 2) - rx_ratio of bus-bus-switches. If impedance is zero, buses connected by a closed bus-bus switch are fused to model an ideal bus. Otherwise, they are modelled as branches with resistance defined as z_ohm column in switch table and this parameter

delta_q - Reactive power tolerance for option “enforce_q_lims” in kvar - helps convergence in some cases.

trafo3w_losses - defines where open loop losses of three-winding transformers are considered. Valid options are “hv”, “mv”, “lv” for HV/MV/LV side or “star” for the star point.

v_debug (bool, False) - if True, voltage values in each newton-raphson iteration are logged in the ppc

init_vm_pu (string/float/array/Series, None) - Allows to define initialization specifically for voltage magnitudes. Only works with init == “auto”!

  • “auto”: all buses are initialized with the mean value of all voltage controlled elements in the grid
  • “flat” for flat start from 1.0
  • “results”: voltage magnitude vector is taken from result table
  • a float with which all voltage magnitudes are initialized
  • an iterable with a voltage magnitude value for each bus (length and order has to match with the buses in net.bus)
  • a pandas Series with a voltage magnitude value for each bus (indexes have to match the indexes in net.bus)

init_va_degree (string/float/array/Series, None) - Allows to define initialization specifically for voltage angles. Only works with init == “auto”!

  • “auto”: voltage angles are initialized from DC power flow if angles are calculated or as 0 otherwise
  • “dc”: voltage angles are initialized from DC power flow
  • “flat” for flat start from 0
  • “results”: voltage angle vector is taken from result table
  • a float with which all voltage angles are initialized
  • an iterable with a voltage angle value for each bus (length and order has to match with the buses in net.bus)
  • a pandas Series with a voltage angle value for each bus (indexes have to match the indexes in net.bus)

recycle (dict, none) - Reuse of internal powerflow variables for time series calculation

Contains a dict with the following parameters: _is_elements: If True in service elements are not filtered again and are taken from the last result in net[“_is_elements”] ppc: If True the ppc is taken from net[“_ppc”] and gets updated instead of reconstructed entirely Ybus: If True the admittance matrix (Ybus, Yf, Yt) is taken from ppc[“internal”] and not reconstructed

neglect_open_switch_branches (bool, False) - If True no auxiliary buses are created for branches when switches are opened at the branch. Instead branches are set out of service

Note

If you are interested in the pypower casefile that pandapower is using for power flow, you can find it in net[“_ppc”]. However all necessary informations are written into the pandpower format net, so the pandapower user should not usually have to deal with pypower.