Uses of Interface
snl.ccss.jpowersystem.Bus

Packages that use Bus
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 Bus in snl.ccss.jpowersystem
 

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

Methods in snl.ccss.jpowersystem that return Bus
static Bus PowerSystemFactory.createNewBus(java.lang.String busClassName)
          Creates and returns user-defined implementation of a bus object.
 

Methods in snl.ccss.jpowersystem with parameters of type Bus
 void PowerSystem.add(Branch branch, Bus from, Bus to)
          This method is used to add a Branch object to the power system.
 void PowerSystem.add(Bus bus)
          This method is used to add a Bus object to the power system.
 void PowerSystem.add(BusDevice device, Bus bus)
          This method is used to add a BusDevice object to the power system.
 void AbstractBusDevice.addTo(Bus bus)
          This method connects this bus device to the given Bus object, with the given bus being set as the bus this device belongs to.
 void BusDevice.addTo(Bus bus)
          This method should at a minimum set a Bus variable to the given bus object.
 void AbstractBranch.addTo(Bus from, Bus to)
          This method connects this branch to the given Bus objects, each bus being set as an endpoint of the branch.
 void Branch.addTo(Bus from, Bus to)
          This method should at a minimum set Bus variables to the given bus objects.
 java.util.List PowerSystem.getBranchList(Bus bus)
          Returns a list of branches that are connected to the given bus.
 java.util.List PowerSystem.getBusDeviceList(Bus bus)
          Returns a list of bus devices that are connected to the given bus.
 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.move(BusDevice device, Bus newBus)
          This method is used to move a BusDevice object around in a power system.
 void PowerSystem.remove(Bus bus)
          This method is used to remove a Bus object from the power sytem.
 

Uses of Bus in snl.ccss.jpowersystem.powerflow
 

Classes in snl.ccss.jpowersystem.powerflow that implement Bus
 class AbstractACPFBus
          This is an empty abstract class that extends AbstractBus and implements ACPFBus.
 class AbstractDCPFBus
          This is an empty abstract class that extends AbstractBus and implements DCPFBus.
 class AbstractPFBus
          This is an empty abstract class that extends AbstractBus and implements ACPFBus and DCPFBus.