forked from arras-energy/gridlabd-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpowerflow_4node.glm
104 lines (92 loc) · 1.87 KB
/
powerflow_4node.glm
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
////////////////////////////////////////////////////////// BEGIN////////////////////////////////////////////////////////
// filename... powerflow_4node.glm
clock {
timestamp '2000-01-01 0:00:00';
timezone EST+5EDT;
}
////////////////////////////////////////////////////////
// modules
module powerflow;
// 336,400 26/7
object overhead_line_conductor:100 {
name PhaseCond;
geometric_mean_radius 0.0244 ft;
resistance 0.306;
// diameter 0.721 in;
}
// 4/0 6/1 ACSR
object overhead_line_conductor:101 {
name NeutralCond;
geometric_mean_radius 0.00814 ft;
resistance 0.592;
// diameter 0.563 in;
}
// Line Spacing
object line_spacing:200 {
name LineSpacing;
distance_AB 2.5;
distance_BC 4.5;
distance_AC 7.0;
distance_AN 5.656;
distance_BN 4.272;
distance_CN 5.0;
}
// Line Configuration
object line_configuration:1 {
name LineConf;
conductor_A PhaseCond;
conductor_B PhaseCond;
conductor_C PhaseCond;
conductor_N NeutralCond;
spacing LineSpacing;
}
object overhead_line {
name Line1;
phases "ABCN";
from Node1;
to Node2;
length 2000 ft;
configuration LineConf;
nominal_voltage 124.0;
}
object overhead_line {
name Line2;
phases "ABCN";
from Node3;
to Node4;
length 2500 ft;
configuration LineConf;
nominal_voltage 124.0;
}
object node {
name Node1;
phases "ABCN";
nominal_voltage 124.0;
//phaseA_V 124.0+0.0j;
//phaseB_V -62-107.38715006927j;
//phaseC_V -62+107.38715006927j;
}
object node {
name Node2;
phases "ABCN";
nominal_voltage 124.0;
//phaseA_V 124.0+0.0j;
//phaseB_V -62-107.38715006927j;
//phaseC_V -62+107.38715006927j;
}
object node {
name Node3;
phases "ABCN";
nominal_voltage 124.0;
//phaseA_V 124.0+0.0j;
//phaseB_V -62-107.38715006927j;
//phaseC_V -62+107.38715006927j;
}
object node {
name Node4;
phases "ABCN";
nominal_voltage 124.0;
//phaseA_V 124.0+0.0j;
//phaseB_V -62-107.38715006927j;
//phaseC_V -62+107.38715006927j;
}