Empty Network

Create Function

pandapower.create.create_empty_network(name='', f_hz=50.0, sn_mva=1, add_stdtypes=True)

This function initializes the pandapower data structure.

Parameters:
  • f_hz (float) – power system frequency in hertz

  • name (str) – name for the network

  • sn_mva (float) – reference apparent power for per unit system

  • add_stdtypes (bool) – Includes standard types to net

Returns:

pandapower attrdict with empty tables

Return type:

net

Example

>>> net = create_empty_network()