Uses of Class
snl.ccss.jpowersystem.PowerSystem

Packages that use PowerSystem
snl.ccss.jpowersystem This package provides interfaces necessary and abstract classes optional for creating and implementing new power sytem objects. 
snl.ccss.jpowersystem.parsers This package provides the interface all parsers in this library should implement. 
snl.ccss.jpowersystem.parsers.cdf This package provides a parser that can parse data from a data file organized to the specifications of the IEEE Common Data Format (CDF) and from that data create a new power system. 
snl.ccss.jpowersystem.powerflow This package provides abstract classes that can be extended by user-created power system objects. 
 

Uses of PowerSystem in snl.ccss.jpowersystem
 

Methods in snl.ccss.jpowersystem that return PowerSystem
static PowerSystem PowerSystemFactory.createNewPowerSystem(java.lang.String powerSystemClassName)
          Creates and returns user-defined implementation of a power system object.
 

Methods in snl.ccss.jpowersystem with parameters of type PowerSystem
 void AbstractBus.addTo(PowerSystem powerSystem)
          This method connects this bus to the given power system by setting its PowerSystem variable to the given power system.
 void Bus.addTo(PowerSystem powerSystem)
          This method should at a minimum set a PowerSystem variable to the given power system.
 

Uses of PowerSystem in snl.ccss.jpowersystem.parsers
 

Methods in snl.ccss.jpowersystem.parsers that return PowerSystem
 PowerSystem Parser.loadPowerSystemFromFile(java.lang.String file)
          This method should perform the operations necessary to parse the given file and from the parsed data create a new power system.
 

Methods in snl.ccss.jpowersystem.parsers with parameters of type PowerSystem
 void Parser.writePowerSystemToFile(PowerSystem powerSystem, java.lang.String file)
          This method should perform the operations necessary to write the data contained in the given power system to the given file in the correct format.
 

Uses of PowerSystem in snl.ccss.jpowersystem.parsers.cdf
 

Methods in snl.ccss.jpowersystem.parsers.cdf that return PowerSystem
 PowerSystem CDFParser.loadPowerSystemFromFile(java.lang.String file)
          This method calls all the methods necessary to create a power system from the given file.
 

Methods in snl.ccss.jpowersystem.parsers.cdf with parameters of type PowerSystem
 void CDFParser.writePowerSystemToFile(PowerSystem powerSystem, java.lang.String file)
          This method performs all the actions necessary to write the given power system to the given file with the data arranged in the IEEE Common Data Format.
 

Uses of PowerSystem in snl.ccss.jpowersystem.powerflow
 

Subclasses of PowerSystem in snl.ccss.jpowersystem.powerflow
 class AbstractPFPowerSystem
          This is an empty abstract class that extends PowerSystem and implements PFPowerSytem.