pypsa.Network.passive_branches

pypsa.Network.passive_branches#

Network.passive_branches() DataFrame#

Get passive branches.

Passive branches are Lines and Transformers.

!!! note

This method will return a merged copy of all passive branches of the network. Changes to the returned DataFrame will not be reflected in the network.

Examples

>>> n.passive_branches() 
    active    b  b_pu  build_year  ...  v_nom         x      x_pu  x_pu_eff
Line 0    True  0.0   0.0           0  ...  380.0  0.796878  0.000006  0.000006
     1    True  0.0   0.0           0  ...  380.0  0.391560  0.000003  0.000003
     2    True  0.0   0.0           0  ...  200.0  0.000000  0.000000  0.000000
     3    True  0.0   0.0           0  ...  200.0  0.000000  0.000000  0.000000
     4    True  0.0   0.0           0  ...  200.0  0.000000  0.000000  0.000000
     5    True  0.0   0.0           0  ...  380.0  0.238800  0.000002  0.000002
     6    True  0.0   0.0           0  ...  380.0  0.400000  0.000003  0.000003

[7 rows x 37 columns]