-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
52 lines (42 loc) · 767 Bytes
/
constants.py
File metadata and controls
52 lines (42 loc) · 767 Bytes
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
MAGNITUDE = "m:u"
LINE_LINE_MAGNITUDE = "m:Ul"
ANGLE = "m:phiu"
ACTIVE_POWER_FLOW = "m:Pflow"
REACTIVE_POWER_FLOW = "m:Qflow"
ACTIVE_GENERATION = "m:Pgen"
REACTIVE_GENERATION = "m:Qgen"
ACTIVE_OUTGOING = "m:Pout"
REACTIVE_OUTGOING = "m:Qout"
LOADING = "c:loading"
MAX_LOADING = "c:maxload"
ACTIVE_POWER = "c:p"
REACTIVE_POWER = "c:q"
NUM_CUSTOMERS = "c:ncust"
NOM_ACTIVE_POWER = "c:Pnom"
NOM_REACTIVE_POWER ="c:Qnom"
NOM_VOLTAGE = "c:u0"
BASE_TARIFF = 497.09
HIGH_TARIFF = 517.22
LOW_TARIFF = 476.960829
# Used in terminals
"m:u"
"m:Ul"
"m:phiu"
"m:Pflow"
"m:Qflow"
"m:Pgen"
"m:Qgen"
"m:Pout"
"m:Qout"
# Used in lines and transformers
"c:loading"
"c:maxload"
# Used for generators
"c:loading"
"c:p"
"c:q"
# Used for loads
"c:ncust"
"c:Pnom"
"c:Qnom"
"c:u0"