forked from powerdata/com.powerdata.openpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PALists.java
77 lines (59 loc) · 2.01 KB
/
PALists.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.powerdata.openpa;
import java.util.Set;
/**
* Standard power system equipment lists
*
* @author [email protected]
*
*/
public interface PALists
{
/** return list of buses */
BusList getBuses() throws PAModelException;
/** return list of switches */
SwitchList getSwitches() throws PAModelException;
/** return list of lines */
LineList getLines() throws PAModelException;
/** return list of series reactors */
SeriesReacList getSeriesReactors() throws PAModelException;
/** return list of series capacitors */
SeriesCapList getSeriesCapacitors() throws PAModelException;
/** return list of transformers */
TransformerList getTransformers() throws PAModelException;
/** return list of phase shifters */
PhaseShifterList getPhaseShifters() throws PAModelException;
/** return list of two-terminal DC Lines */
TwoTermDCLineList getTwoTermDCLines() throws PAModelException;
/** return list of generators */
GenList getGenerators() throws PAModelException;
/** return list of loads */
LoadList getLoads() throws PAModelException;
/** return list of shunt reactors */
ShuntReacList getShuntReactors() throws PAModelException;
/** return list of shunt capacitors */
ShuntCapList getShuntCapacitors() throws PAModelException;
/** return list of SVC's */
SVCList getSVCs() throws PAModelException;
/**
* get all one-terminal devices
*
* @throws PAModelException
* Method uses reflection to find all one-terminal device lists
*/
Set<OneTermDevList> getOneTermDevices() throws PAModelException;
/**
* get all two-terminal devices
*
* @throws PAModelException
* Method uses reflection to find all two-terminal devices
*/
Set<TwoTermDevList> getTwoTermDevices() throws PAModelException;
/**
* get all AC Branches
*
* @throws PAModelException
* Method uses reflection to find all ACBranch devices
*/
Set<ACBranchList> getACBranches() throws PAModelException;
Set<FixedShuntList> getFixedShunts() throws PAModelException;
}