to_pandapower#

andes.interop.pandapower.to_pandapower(ssa, ctrl=[], verify=True)[source]#

Convert an ADNES system to a pandapower network for power flow studies.

Parameters
ssaandes.system.System

The ADNES system to be converted

ctrllist

The controlability of generators. The length should be the same with the number of StaticGen. If not given, controllability of generators will be assigned by default. Example input: [1, 0, 1, ...]; PV first, then Slack.

Returns
pandapower.auxiliary.pandapowerNet

A pandapower net with the same bus, branch, gen, and load data as the ANDES system

Notes

Handling of the following parameters:

  • Line limts are set as 99999.0 in the output network.

  • Generator cost is not included in the conversion. Use add_gencost() to add cost data.

  • By default, SynGen equipped with TurbineGov in the ANDES System is converted to generators with controllable=True in pp's network.

  • By default, SynGen that has no TurbineGov and DG in the ANDES System is converted to generators with controllable=False in pp's network.