Package pypower :: Module gausspf
[hide private]
[frames] | no frames]

Module gausspf

source code

Solves the power flow using a Gauss-Seidel method.

Functions [hide private]
 
gausspf(Ybus, Sbus, V0, ref, pv, pq, ppopt=None)
Solves the power flow using a Gauss-Seidel method.
source code
Variables [hide private]
  __package__ = 'pypower'
Function Details [hide private]

gausspf(Ybus, Sbus, V0, ref, pv, pq, ppopt=None)

source code 

Solves the power flow using a Gauss-Seidel method.

Solves for bus voltages given the full system admittance matrix (for all buses), the complex bus power injection vector (for all buses), the initial vector of complex bus voltages, and column vectors with the lists of bus indices for the swing bus, PV buses, and PQ buses, respectively. The bus voltage vector contains the set point for generator (including ref bus) buses, and the reference angle of the swing bus, as well as an initial guess for remaining magnitudes and angles. ppopt is a PYPOWER options vector which can be used to set the termination tolerance, maximum number of iterations, and output options (see ppoption for details). Uses default options if this parameter is not given. Returns the final complex voltages, a flag which indicates whether it converged or not, and the number of iterations performed.

See Also: runpf

Authors:
Ray Zimmerman (PSERC Cornell), Alberto Borghetti (University of Bologna, Italy), Richard Lincoln