forked from powerdata/com.powerdata.openpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GroupListIfc.java
39 lines (23 loc) · 1.05 KB
/
GroupListIfc.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.powerdata.openpa;
public interface GroupListIfc<T extends Group> extends BaseList<T>
{
/**
* Get Buses contained in group
* @param ndx group index
* @return Buses contained in group
*/
BusList getBuses(int ndx) throws PAModelException;
SwitchList getSwitches(int ndx) throws PAModelException;
LineList getLines(int ndx) throws PAModelException;
SeriesReacList getSeriesReactors(int ndx) throws PAModelException;
SeriesCapList getSeriesCapacitors(int ndx) throws PAModelException;
TransformerList getTransformers(int ndx) throws PAModelException;
PhaseShifterList getPhaseShifters(int ndx) throws PAModelException;
TwoTermDCLineList getTwoTermDCLines(int ndx) throws PAModelException;
GenList getGenerators(int ndx) throws PAModelException;
LoadList getLoads(int ndx) throws PAModelException;
ShuntReacList getShuntReactors(int ndx) throws PAModelException;
ShuntCapList getShuntCapacitors(int ndx) throws PAModelException;
SVCList getSVCs(int ndx) throws PAModelException;
T getByBus(Bus b) throws PAModelException;
}