Package snl.ccss.jpowerflow.ac

This package provides steady-state AC power flow solvers.

See:
          Description

Interface Summary
ACPFBranch This interface defines all the methods needed by the AC power flow simulators for a branch object.
ACPFBus This interface defines all the methods needed by the AC power flow simulators for a bus object.
 

Class Summary
DecoupledNewton This class extends FullNewton and performs a faster but less accurate steady-state power flow analysis.
FullNewton This class holds all the methods necessary for performing a steady-state AC power flow analysis on a power system.
 

Package snl.ccss.jpowerflow.ac Description

This package provides steady-state AC power flow solvers. Two AC solvers currently exist; a Full Newton-Raphson iterative solver and a faster bus less accurate extension of the Full Newton solver -- a Decoupled Newton-Raphson iterative solver.
These solvers reference methods defined in the ACPFBus and ACPFBranch interfaces, as well as methods defined in the PFPowerSystem interface. Thus, any power system objects that wish to be considered as candidates for participating in AC power flow simulations must implement these interfaces.