Uses of Class
gridiq.network.Network

Packages that use Network
gridiq.network GridIQ - A test bed for smart grid agents This component defines the power network model used by the system. 
gridiq.poweranalysis GridIQ - A test bed for smart grid agents Classes in this component are responsible for directly interacting with the power simulation tool. 
gridiq.poweranalysis.disturbance GridIQ - A test bed for smart grid agents This package contains base classes for defining network disturbances. 
gridiq.poweranalysis.psat.parser GridIQ - A test bed for smart grid agents This package containes classes for parsing and serialising PSAT data files. 
gridiq.simulation GridIQ - A test bed for smart grid agents This package contains core classes for running simulations. 
 

Uses of Network in gridiq.network
 

Methods in gridiq.network that return Network
 Network Bus.getNetwork()
          The network this bus belongs to.
 

Methods in gridiq.network with parameters of type Network
 void Bus.setNetwork(Network network)
          Sets the network this bus belongs to.
 

Uses of Network in gridiq.poweranalysis
 

Methods in gridiq.poweranalysis that return Network
 Network PSATSolver.load(java.io.File networkFile)
          Loads an initial network file for a simulation.
 Network PowerFlowSolver.load(java.io.File networkFile)
          Loads an initial network file for a simulation.
 Network NetworkParser.readNetworkFile(java.io.File networkFile)
          Parses a network file into a Network object.
 

Methods in gridiq.poweranalysis with parameters of type Network
 void DeviceParser.parseLine(java.lang.String line, Network network)
          Parses a line of a network definition file by instantiating a network device described by the given string and adding it to the given network.
 SimResults PSATSolver.solve(Network network)
          Performs a power flow analysis/simulation on the given network.
 SimResults PowerFlowSolver.solve(Network network)
          Performs a power flow analysis/simulation on the given network.
 void NetworkParser.writeNetwork(Network network, java.io.File file)
          Serialises a network to file.
 

Uses of Network in gridiq.poweranalysis.disturbance
 

Methods in gridiq.poweranalysis.disturbance with parameters of type Network
 void DisturbanceSet.linkNetwork(Network network)
           
 

Uses of Network in gridiq.poweranalysis.psat.parser
 

Methods in gridiq.poweranalysis.psat.parser that return Network
 Network PSATParser.readNetworkFile(java.io.File networkFile)
           
 

Methods in gridiq.poweranalysis.psat.parser with parameters of type Network
 void BusNameParser.parseLine(java.lang.String line, Network network)
           
 void SlackParser.parseLine(java.lang.String line, Network network)
           
 void BusParser.parseLine(java.lang.String line, Network network)
           
 void LineParser.parseLine(java.lang.String line, Network network)
           
 void ShuntParser.parseLine(java.lang.String line, Network network)
           
 void PVParser.parseLine(java.lang.String line, Network network)
           
 void DemandParser.parseLine(java.lang.String line, Network network)
           
 void PQParser.parseLine(java.lang.String line, Network network)
           
 void SupplyParser.parseLine(java.lang.String line, Network network)
           
 void PSATParser.writeNetwork(Network network, java.io.File file)
           
 

Uses of Network in gridiq.simulation
 

Methods in gridiq.simulation that return Network
 Network SimulationController.getNetwork()
          Gets the current network model for the simulation.