to_pandapower#

andes.interop.pandapower.to_pandapower(ssa, ctrl=[], verify=True, tol=1e-06)[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:

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

  • By default, all generators in ssp are controllable unless user-defined controllability is given

  • The online status of generators are determined by the online status of StaticGen that connected to the SynGen or DG

  • ssp.gen.name is from ssa.StaticGen.idx, which should be unique