Uses of Interface
snl.ccss.jpowersystem.Branch

Packages that use Branch
snl.ccss.jpowersystem This package provides interfaces necessary and abstract classes optional for creating and implementing new power sytem objects. 
snl.ccss.jpowersystem.powerflow This package provides abstract classes that can be extended by user-created power system objects. 
 

Uses of Branch in snl.ccss.jpowersystem
 

Classes in snl.ccss.jpowersystem that implement Branch
 class AbstractBranch
          This is an abstract implementation of the Branch interface that can be extended by objects representing branches in a power sytem.
 

Methods in snl.ccss.jpowersystem that return Branch
static Branch PowerSystemFactory.createNewBranch(java.lang.String branchClassName)
          Creates and returns user-defined implementation of a branch object.
 

Methods in snl.ccss.jpowersystem with parameters of type Branch
 void AbstractBus.add(Branch branch)
          This method connects the given branch by adding the branch to the list of connected branch objects.
 void Bus.add(Branch branch)
          This method should at a minimum add the given Branch object to its list of attached branch objects.
 void PowerSystem.add(Branch branch, Bus from, Bus to)
          This method is used to add a Branch object to the power system.
 void PowerSystem.move(Branch branch, Bus newFrom, Bus newTo)
          This method is used to move a Branch object around in a power system.
 void PowerSystem.remove(Branch branch)
          This method is used to remove a Branch object from the power sytem.
 void AbstractBus.remove(Branch branch)
          This method removes the given branch by removing it from the list of connected branch objects.
 void Bus.remove(Branch branch)
          This method should at a minimum remove the given Branch object from its list of attached branch objects.
 

Uses of Branch in snl.ccss.jpowersystem.powerflow
 

Classes in snl.ccss.jpowersystem.powerflow that implement Branch
 class AbstractACPFBranch
          This is an empty abstract class that extends AbstractBranch and implements ACPFBranch.
 class AbstractDCPFBranch
          This is an empty abstract class that extends AbstractBranch and implements DCPFBranch.
 class AbstractPFBranch
          This is an empty abstract class that extends AbstractBranch and implements ACPFBranch and DCPFBranch.