aemo 0.1.18 → 0.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f41d3855ad3d3e917266fe190f15026df71da78
4
- data.tar.gz: 985d6bfcf9705b716f07181634d69d089954e0bc
3
+ metadata.gz: f13c2c3cba6af132505b335b02c89f824a9dc395
4
+ data.tar.gz: bb6baee5af7b9e6678f66577de8a1b90286bbcb3
5
5
  SHA512:
6
- metadata.gz: 2ac832ad9c7cd0bf338e24727b4ffed803a6ebc252a86d2b133e5393648d823d37412f00e1a0acee9124d95fc9d8a0f5cb90342c88afabd4b4dcb0abb3ce272b
7
- data.tar.gz: 8513eb588865348a61c9e29337875e29882c4101ca747fa35e5817b01addda6b82b75345a2617f99b17fd7933c3f320d85b0773095850318f374c3ad716158f0
6
+ metadata.gz: 3ef0598c97beb9f2f6f9a149faa3dbf8912e169538b9e468e04aeb6109ecb1f9a651bd797fe80fa01a968de69e8651fa276802cbb00286e40b8e48c51dbf9c2a
7
+ data.tar.gz: 21e5ca2a5203d48b0896315fe5704b0a4cba2409836e7e0aa058647a7ae7cba55a5820aa58860af032ecdb9336cade77d1c6c544f7b59d2ce59a564ef6d37c5e
data/lib/aemo.rb CHANGED
@@ -1,4 +1,7 @@
1
+ require 'active_support/all'
1
2
  require 'httparty'
3
+ require 'csv'
4
+ require 'pry'
2
5
 
3
6
  require 'aemo/market.rb'
4
7
  require 'aemo/market/interval.rb'
@@ -10,4 +13,4 @@ require 'aemo/version.rb'
10
13
 
11
14
  # AEMO Module to encapsulate all AEMO classes
12
15
  module AEMO
13
- end
16
+ end
data/lib/aemo/nem12.rb CHANGED
@@ -101,7 +101,7 @@ module AEMO
101
101
  53 => { type: ["SUB"], installation_type: 5, short_descriptor: "Revision", description: "" },
102
102
  54 => { type: ["SUB"], installation_type: 5, short_descriptor: "Linear", description: "" },
103
103
  55 => { type: ["SUB"], installation_type: 5, short_descriptor: "Agreed", description: "" },
104
- 56 => { type: ["EST","SUB"], installation_type: 5, short_descriptor: "Prior to First Read Agreed", description: "" },
104
+ 56 => { type: ["EST","SUB"], installation_type: 5, short_descriptor: "Prior to First Read - Agreed", description: "" },
105
105
  57 => { type: ["EST","SUB"], installation_type: 5, short_descriptor: "Customer Class", description: "" },
106
106
  58 => { type: ["EST","SUB"], installation_type: 5, short_descriptor: "Zero", description: "" },
107
107
  61 => { type: ["EST","SUB"], installation_type: 6, short_descriptor: "Previous Year", description: "" },
data/lib/aemo/nmi.rb CHANGED
@@ -624,6 +624,43 @@ module AEMO
624
624
  network
625
625
  end
626
626
 
627
+ # A function to return the distribution loss factor value for a given date
628
+ #
629
+ # @param [DateTime,Time] datetime the date for the distribution loss factor value
630
+ # @return [nil,float] the distribution loss factor value
631
+ def dlfc_value(datetime = DateTime.now)
632
+ raise 'No DLF set, ensure that you have set the value either via the update_from_msats! function or manually' if @dlf.nil?
633
+ raise 'DLF is invalid' unless DLF_CODES.keys.include?(@dlf)
634
+ raise 'Invalid date' unless [DateTime,Time].include?(datetime.class)
635
+ possible_values = DLF_CODES[@dlf].select{|x| DateTime.parse(x['FromDate']) <= datetime && datetime <= DateTime.parse(x['ToDate']) }
636
+ if possible_values.length == 0
637
+ nil
638
+ else
639
+ possible_values.first['Value'].to_f
640
+ end
641
+ end
642
+
643
+ # A function to return the transmission node identifier loss factor value for a given date
644
+ #
645
+ # @param [DateTime,Time] datetime the date for the distribution loss factor value
646
+ # @return [nil,float] the transmission node identifier loss factor value
647
+ def tni_value(datetime = DateTime.now)
648
+ raise 'No TNI set, ensure that you have set the value either via the update_from_msats! function or manually' if @tni.nil?
649
+ raise 'TNI is invalid' unless TNI_CODES.keys.include?(@tni)
650
+ raise 'Invalid date' unless [DateTime,Time].include?(datetime.class)
651
+ possible_values = TNI_CODES[@tni].select{|x| DateTime.parse(x['FromDate']) <= datetime && datetime <= DateTime.parse(x['ToDate']) }
652
+ if possible_values.length == 0
653
+ nil
654
+ else
655
+ possible_values = possible_values.first['mlf_data']['loss_factors'].select{|x| DateTime.parse(x['start']) <= datetime && datetime <= DateTime.parse(x['finish']) }
656
+ if possible_values.length == 0
657
+ nil
658
+ else
659
+ possible_values.first['value'].to_f
660
+ end
661
+ end
662
+ end
663
+
627
664
  # ######### #
628
665
  protected
629
666
  # ######### #
data/lib/aemo/version.rb CHANGED
@@ -22,7 +22,7 @@
22
22
  # @author Joel Courtney <euphemize@gmail.com>
23
23
  module AEMO
24
24
  # aemo version
25
- VERSION = '0.1.18'
25
+ VERSION = '0.1.19'
26
26
 
27
27
  # aemo version split amongst different revisions
28
28
  MAJOR_VERSION, MINOR_VERSION, REVISION = VERSION.split('.').map(&:to_i)
@@ -1 +1,564 @@
1
- TNI,Location,Voltage,FY14,FY15
1
+ TNI,Location,Voltage,FY14,FY15,FY16
2
+ ACA1,Canberra,132,0.9971,0.9642,0.9828
3
+ AQB1,Queanbeyan (ACTEW),66,1.015,0.9752,0.9924
4
+ AQB2,Queanbeyan (Essential Energy),66,1.015,0.9752,0.9924
5
+ NALB,Albury,132,1.0067,0.942,0.9779
6
+ NALC,Alcan,132,0.9924,0.9922,0.9943
7
+ NANM,Australian Newsprint Mill,132,0.9999,0.9421,0.9824
8
+ NAR1,Armidale,66,0.9799,1.0266,0.9905
9
+ NBAL,Balranald,22,1.0411,0.9728,1.0259
10
+ NBAY,Bayswater PS Unit 1 & 2,330,,0.9656,0.9668
11
+ NBER,Beryl,66,1.014,1.0155,1.0077
12
+ NBFN,Beaconsfield North,132,1.0075,1.0058,1.0065
13
+ NBFS,Beaconsfield South,132,1.0075,1.0058,1.0065
14
+ NBFW,Beaconsfield West,132,1.0075,1.0058,1.0065
15
+ NBG1,Bunnerong ,132,1.0085,1.0054,1.0054
16
+ NBG3,Bunnerong ,33,1.0174,1.0089,1.009
17
+ NBGE,Boggabri East,132,,,1.0578
18
+ NBGN,Boggabri North,132,,,1.0609
19
+ NBH1,Brandy Hill ,132,0.9979,0.9941,1.0609
20
+ NBHL,Brandy Hill ,11,0.9979,0.9941,0.9958
21
+ NBKG,Broken Hill ,22,1.0806,0.9978,1.048
22
+ NBKH,Broken Hill ,220,1.072,0.9901,1.0427
23
+ NBLW,Blowering,132,,0.9368,0.9431
24
+ NBM1,Belmore Park,132,1.0072,1.0056,1.0061
25
+ NBRF,Beresfield,33,0.9991,0.9958,0.9973
26
+ NBU2,Burrinjuck,132,0.9956,0.9597,0.9764
27
+ NBUK,Burrinjuck,132,,0.9481,0.9589
28
+ NBYW,Bayswater PS Unit 3 & 4,500,,0.965,0.9668
29
+ NCAR,Carlingford,132,1.0038,1.0001,1.0018
30
+ NCB1,Canterbury,132,,,1.0041
31
+ NCH1,Coffs Harbour,66,1.009,1.0631,1.0124
32
+ NCHM,Charmhaven,11,0.997,0.9933,0.9944
33
+ NCHU,Chullora,132,1.0107,1.0065,1.0072
34
+ NCLG,"Colongra PS Unit 1,2,3,4",330,,0.9855,0.9793
35
+ NCLY,Coleambally,132,1.0216,0.9637,1.0004
36
+ NCM2,Cooma (SPI),66,1.0156,0.9683,0.9763
37
+ NCMA,Cooma ,66,1.0156,0.9683,0.9763
38
+ NCSN,Casino,132,1.0207,1.0907,1.0213
39
+ NCTB,Canterbury,33,1.012,1.009,1.0114
40
+ NCW8,Cowra,66,1.0257,1.004,1.0099
41
+ NCWF,Capital & Woodlawn Wind Farms,330,,0.9618,0.9748
42
+ NDN7,Deniliquin,66,1.0531,0.9833,1.0154
43
+ NDNT,Darlington Point,132,1.0174,0.9593,0.9961
44
+ NDOR,Dorrigo,132,1.0002,1.0507,1.0044
45
+ NDRM,Drummoyne,11,1.0172,1.0101,1.0122
46
+ NDT1,Dapto (Endeavour Energy),132,0.9946,0.9883,0.9916
47
+ NDT2,Dapto (Essential Energy),132,0.9946,0.9883,0.9916
48
+ NDUN,Dunoon,132,1.0204,1.1151,1.0251
49
+ NEP3,Eraring 330 PS Unit 1 & 2,330,,0.9842,0.9856
50
+ NEPS,Eraring 500 PS Unit 3 & 4 & Load,500,,0.9857,0.9867
51
+ NEV1,Far North VTN,,0.9674,0.9756,0.9819
52
+ NEV2,North of Broken Bay VTN ,,0.995,0.9931,0.9949
53
+ NEV3,South of Broken Bay VTN ,,1.0082,1.0044,1.005
54
+ NFB2,Forbes,66,1.0565,1.0517,1.0411
55
+ NFNY,Finley,66,1.0426,0.9752,1.0235
56
+ NGAD,Gadara,132,1.0145,0.9652,0.9934
57
+ NGF3,Gosford,66,1.0045,1.0001,1.0017
58
+ NGJP,Jindabyne pump at Guthega,132,,1.1865,1.138
59
+ NGLN,Glen Innes,66,1.0196,1.0672,1.0217
60
+ NGN2,Gunnedah,66,1.0383,1.0571,1.036
61
+ NGRF,Griffith ,33,1.0465,0.9773,1.0146
62
+ NGSF,Gosford,33,1.0056,0.9992,1.0019
63
+ NGSQ,Green Square,11,1.0077,1.006,1.0069
64
+ NGUR,Gullen Range Wind Farm,330,,0.9667,0.977
65
+ NGUT,Guthega,132,,0.8987,0.8882
66
+ NGWF,West Gosford,11,1.0063,1.0018,1.0033
67
+ NHBB,Homebush Bay,11,1.0147,1.0082,1.0108
68
+ NHLD,Holroyd,132,1.0004,1.0008,1.0029
69
+ NHNC,Heron's Creek,132,1.0686,1.086,1.0462
70
+ NHUM,Hume (NSW Share),132,,0.9232,0.9483
71
+ NHYM,Haymarket,132,1.0073,1.0055,1.0068
72
+ NING,Ingleburn,66,0.9983,0.9977,0.9991
73
+ NKCK,Kemps Creek,330,0.9964,0.9943,0.9954
74
+ NKHN,Khancoban,330,1.0449,1.0826,1.0468
75
+ NKL6,Koolkhan,66,1.0245,1.0839,1.025
76
+ NKN1,Kurnell,132,1.0043,1.0037,1.0039
77
+ NKS2,Kempsey ,66,1.0592,1.0803,1.036
78
+ NKS3,Kempsey ,33,1.0556,1.0824,1.0391
79
+ NKU1,Kurri ,11,0.9921,0.9919,0.9942
80
+ NKU3,Kurri ,33,0.9951,0.9949,0.9969
81
+ NKUR,Kurri ,132,0.9879,0.9833,0.9944
82
+ NLCV,Lane Cove,132,1.0137,1.0054,1.0082
83
+ NLD3,Liddell,33,0.9675,0.9755,0.974
84
+ NLDP,"Liddell 330 PS Load & Unit 1,2,3,4",330,,0.9663,0.9676
85
+ NLFD,Ilford,132,0.988,0.9882,0.9895
86
+ NLP1,Liverpool,132,1.0007,1.0004,1.001
87
+ NLS2,Lismore,132,1.0217,1.1047,1.0268
88
+ NLTS,Lower Tumut Generation & Pumps - dual MLF ,330,,0.9309,0.9465
89
+ NMBK,Meadowbank,11,1.0212,1.0092,1.0112
90
+ NMBM,Murrumbateman,132,0.9919,0.9656,0.98
91
+ NMC1,Macarthur,132,0.9966,0.9928,0.9913
92
+ NMC2,Macarthur ,66,0.9978,0.995,0.9959
93
+ NMCV,Macksville,132,1.0323,1.0735,1.0272
94
+ NMDG,Mudgee,132,1.008,1.0089,1.0042
95
+ NMKV,Marrickville,11,1.0146,1.0113,1.0117
96
+ NML1,Mullumbimby,11,1.0294,1.1466,1.0346
97
+ NMLB,Mullumbimby,132,0.9935,1.1416,1.0336
98
+ NMLD,Manildra,132,1.0407,1.0387,1.0342
99
+ NMN1,Munmorah 330 kV,330,,,0.9899
100
+ NMNP,Munmorah,33,0.9934,0.9898,0.9899
101
+ NMOL,Molong,132,1.0339,1.033,1.0302
102
+ NMP6,Mt Piper ,66,0.9684,0.9696,0.9754
103
+ NMPK,Mason Park,132,1.012,1.0059,1.0086
104
+ NMPP,Mt Piper ,132,0.9684,0.9696,1.0086
105
+ NMQP,Macquarie Park,11,1.0166,1.0088,1.0109
106
+ NMR1,Marulan (Endeavour Energy) & Taralga Wind Farm,132,0.9851,0.9772,0.9844
107
+ NMR2,Marulan (Essential Energy),132,0.9851,0.9772,0.9844
108
+ NMRE,Moree,66,1.1059,1.1208,1.0847
109
+ NMRK,Muswellbrook,132,0.9673,0.9757,0.9828
110
+ NMRU,Murrumburrah,66,1.0115,0.9722,0.995
111
+ NMTP,Mt Piper PS Load & Unit 1 & 2,330,,0.9698,0.9744
112
+ NMUN,Lake Munmorah,132,0.9904,0.9859,0.9885
113
+ NMUR,Murray,330,,1.0178,0.9885
114
+ NMVN,Morven,132,1.0012,0.9419,0.9844
115
+ NMY1,Munyang & Guthega Auxiliary Supply,11,1.0279,0.9885,0.9549
116
+ NMYG,Munyang ,33,1.0279,0.9885,0.9549
117
+ NNAM,Nambucca Heads,132,1.0266,1.0721,1.0237
118
+ NNB2,Narrabri,66,1.0936,1.1056,1.0699
119
+ NNEW,Newcastle,132,0.9904,0.99,0.9926
120
+ NNVL,Inverell,66,1.0387,1.0786,1.0377
121
+ NONO,Orange North,132,1.0411,1.0406,1.0367
122
+ NOR1,Ourimbah,132,1.0012,0.9968,0.9981
123
+ NOR6,Ourimbah ,66,1.0005,0.9967,0.9981
124
+ NORB,Ourimbah,33,1.0035,0.999,0.9994
125
+ NPH1,Peakhurst,132,1.0032,1.0026,1.0033
126
+ NPHT,Peakhurst,33,1.0065,1.0054,1.0059
127
+ NPK6,Parkes ,66,1.0561,1.0514,1.0432
128
+ NPKS,Parkes ,132,1.0546,1.0493,1.0413
129
+ NPMA,Panorama,66,1.0274,1.0083,1.0246
130
+ NPMQ,Pt Macquarie,33,1.0688,1.0931,1.0518
131
+ NPT1,Pyrmont ,132,1.0073,1.0056,1.0069
132
+ NPT3,Pyrmont ,33,1.008,1.0061,1.0073
133
+ NRAL,Raleigh,132,1.0162,1.0651,1.0166
134
+ NRG1,Orange ,132,1.0388,1.0396,1.0387
135
+ NRGE,Orange ,66,1.0412,1.0421,1.0398
136
+ NRGV,Regentville,132,0.9982,0.9972,0.9984
137
+ NRZH,Rozelle ,132,1.0141,1.0064,1.0085
138
+ NRZL,Rozelle ,33,1.0142,1.0069,1.0097
139
+ NSAD,Snowy Adit,132,1.0137,0.9612,0.9763
140
+ NSE2,Sydney East,132,1.0078,1.0041,1.0051
141
+ NSHN,Kangaroo Valley � Bendeela (Shoalhaven) Generation - dual MLF,330,,0.9737,0.9838
142
+ NSMB,Somersby,11,1.0055,1.0012,1.0027
143
+ NSN1,Sydney North (Ausgrid),132,1.0038,1.0001,1.0013
144
+ NSN2,Sydney North (Endeavour Energy),132,1.0038,1.0001,1.0013
145
+ NSPT,St Peters,11,1.0113,1.0089,1.0096
146
+ NSRD,Stroud,132,1.0145,1.0119,1.0096
147
+ NSW1,Sydney West (Ausgrid),132,1.0057,1.0026,1.0018
148
+ NSW2,Sydney West (Endeavour Energy),132,1.0057,1.0026,1.0018
149
+ NSYS,Sydney South,132,1.0018,1.0011,1.0016
150
+ NTA2,Tamworth,66,0.9785,1.0044,0.983
151
+ NTG3,Tuggerah ,132,0.997,0.9933,0.9946
152
+ NTMC,Tomago (Essential Energy),132,0.9945,0.9911,0.9928
153
+ NTME,Tomago (Ausgrid),132,0.9945,0.9911,0.9928
154
+ NTMG,Tomago ,330,0.9932,0.9925,0.9931
155
+ NTNR,Terranora,110,1.0394,1.0956,1.0347
156
+ NTPR,Top Ryde,11,1.0142,1.0066,1.0091
157
+ NTR2,Taree (Essential Energy),132,1.0647,1.068,1.0462
158
+ NTTF,Tenterfield,132,1.0241,1.0802,1.0259
159
+ NTU2,"Tumut & Lower Tumut Pipe, T2, T4 Auxiliary",66,1.0137,0.9666,0.991
160
+ NURQ,"Uranquinty PS Unit 11,12,13,14",132,,0.8675,0.897
161
+ NUTS,Upper Tumut,330,,0.9363,0.9538
162
+ NVP1,Vales Pt. ,132,0.9903,0.9858,0.9898
163
+ NVPP,Vales Point 330 PS Load & Unit 5 & 6,330,,0.9865,0.9877
164
+ NVYD,Vineyard,132,0.9987,0.9998,0.9996
165
+ NWDL,Williamsdale,132,1.0005,0.9655,0.983
166
+ NWG2,Wagga,66,1.0109,0.9533,0.9889
167
+ NWG6,Wagga North,66,1.0107,0.9545,0.9923
168
+ NWGN,Wagga North,132,1.0065,0.9545,0.991
169
+ NWL8,Wellington ,132,0.9878,0.9875,0.9903
170
+ NWR1,BHP (Waratah),132,0.9918,0.9919,0.9923
171
+ NWST,Boambee South,132,1.014,1.1322,1.0157
172
+ NWW5,Wallerawang (Essential Energy),132,0.967,0.9691,0.9741
173
+ NWW6,Wallerawang (Endeavour Energy),132,0.967,0.9691,0.9741
174
+ NWW7,Wallerawang 66,66,0.9678,0.97,0.9748
175
+ NWYG,Wyong,11,0.9998,0.9955,0.9966
176
+ NYA3,Yanco,33,1.027,0.9672,1.0049
177
+ NYS1,Yass ,132,0.986,0.9609,0.9742
178
+ NYS6,Yass,66,0.993,0.9661,0.9806
179
+ QABM,Abermain ,33,0.9968,0.9943,0.9965
180
+ QABR,Abermain ,110,0.9948,0.9915,0.9945
181
+ QAGW,Ashgrove West,33,1.0172,1.027,1.0152
182
+ QALC,Alligator Creek,33,1.0813,1.0809,1.0627
183
+ QALG,Algester,33,1.0123,1.0127,1.0112
184
+ QALH,Alligator Creek,132,1.0836,1.0817,1.0627
185
+ QASF,Alan Sherriff,132,1.0942,1.0948,1.0855
186
+ QBBS,Belmont Wecker Road,33,1.0093,1.004,1.0012
187
+ QBDA,Bundamba,110,0.9958,0.9938,0.9961
188
+ QBGH,Barron Gorge PS Unit 1 & 2,132,,1.0883,1.0677
189
+ QBIL,Biloela,66/11 ,0.9489,0.9497,0.9625
190
+ QBK2,Bulli Creek (Essential Energy),132,0.9615,0.9523,0.9608
191
+ QBKS,Blackstone,110,0.9941,0.9927,0.9953
192
+ QBLF,Bluff,132,1.0644,1.0555,1.0594
193
+ QBLK,Bulli Creek (Waggamba),132,0.9612,0.9523,0.9608
194
+ QBMH,Belmont,110,1.0057,1.0061,1.0067
195
+ QBNB,Bolingbroke ,132,1.0553,1.0543,1.0447
196
+ QBNN,Bowen North ,66,1.0729,1.0748,1.0586
197
+ QBOH,Boyne Island,275,0.9945,0.9999,1.005
198
+ QBOL,Boyne Island,132,0.993,0.9998,1.0054
199
+ QBRA,"Braemar PS Unit 1,2,3,5,6,7 & Darling Downs PS",275,,0.948,0.9567
200
+ QBRE,Braemer - Kumbarilla Park,275,0.9556,0.951,0.9593
201
+ QBUR,Burton Downs,132,1.0975,1.0845,1.0679
202
+ QBWH,Blackwater ,132,1.062,1.0537,1.0565
203
+ QBWL,Blackwater ,66/11 ,1.065,1.0548,1.0575
204
+ QCAA,Callide A PS Unit 4 & Load,132,,0.9365,0.9563
205
+ QCAB,Callide B PS Unit 1 & 2,275,,0.9525,0.9671
206
+ QCAC,Callide C PS Unit 3 & 4,275,,0.9525,0.9648
207
+ QCAR,Calliope River,132,0.9884,0.9836,0.9906
208
+ QCAX,Callide PS Load,132,,0.9412,0.959
209
+ QCBL,Columboola,132,0.9547,0.9522,0.9651
210
+ QCBW,Ashgrove West,110,1.0164,1.0237,1.0141
211
+ QCDW,Cardwell,22,1.1131,1.1025,1.0893
212
+ QCHA,Chinchilla,132,0.9806,0.9726,0.9722
213
+ QCLR,Clare,66,1.1,1.111,1.099
214
+ QCMD,Callemondah (Rail),132,0.988,0.9873,0.993
215
+ QCND,Condamine PS,132,,0.9519,0.9642
216
+ QCNS,Cairns City,132,1.1168,1.1117,1.0914
217
+ QCOL,Collinsville Load,33,1.0761,1.0723,1.0637
218
+ QCOP,Coppabella (Rail),132,1.1297,1.0974,1.0767
219
+ QCRN,Cairns ,22,1.1192,1.1148,1.0928
220
+ QDGL,Dan Gleeson,66,1.1117,1.1035,1.0869
221
+ QDNG,Dingo (Rail),132,1.0496,1.0333,1.0481
222
+ QDRG,Duaringa,132,1.033,1.0332,1.0381
223
+ QDYS,Dysart,66/22 ,1.1079,1.0834,1.0696
224
+ QEGD,Eagle Downs Mine,132,1.1167,1.1026,1.0798
225
+ QEGN,Egans Hill,66,0.986,0.9838,0.988
226
+ QELA,El Arish,22,1.1203,1.1123,1.0922
227
+ QEMS,Kemmis ,132,1.0793,1.0702,1.0581
228
+ QEMT,Edmonton,22,1.1245,1.1188,1.0934
229
+ QGAR,Garbutt,66,1.1033,1.1026,1.0887
230
+ QGDA,Goodna,33,1.001,1.001,1.0013
231
+ QGLH,"Gladstone PS (275 kV) Unit 1,2,5,6",275,,0.9807,0.9868
232
+ QGLL,"Gladstone PS (132 kV) Unit 3,4 & Load",132,,0.9777,0.9855
233
+ QGNG,Gin Gin,132,0.9988,1.002,1.0024
234
+ QGRE,Gregory (Rail),132,1.0416,1.0356,1.0288
235
+ QGRN,Grantleigh (Rail),132,1.0002,0.9941,1.0116
236
+ QGST,Gladstone South,66/11 ,0.9903,0.9932,0.9961
237
+ QGYR,Goonyella Riverside Mine,132,1.1405,1.1191,1.0973
238
+ QINF,Innisfail,22,1.1257,1.1195,1.096
239
+ QING,Ingham,66,1.1169,1.1159,1.0936
240
+ QINV,Invicta Load,132,1.0841,1.0877,1.1033
241
+ QKAM,Kamerunga,22,1.1228,1.1178,1.0949
242
+ QKCK,King Creek,132,1.1084,1.0894,1.07
243
+ QKYH,"Kareeya PS Unit 1,2,3,4",132,,1.087,1.069
244
+ QLCM,Lilyvale (Barcaldine),132,1.0384,1.0314,1.0328
245
+ QLGH,Loganlea,110,1.0051,1.0055,1.0078
246
+ QLGL,Loganlea,33,1.012,1.0099,1.0118
247
+ QLIL,Lilyvale,66,1.0425,1.0352,1.0373
248
+ QMAL,Molendinar,33,1.0064,1.0037,1.0039
249
+ QMAR,Molendinar,110,1.0069,1.0042,1.0042
250
+ QMBS,Moranbah South (Rail),132,1.1276,1.1087,1.0871
251
+ QMGB,Mudgeeraba,110,1.0067,1.0016,1.0036
252
+ QMGL,Mudgeeraba,33,1.0073,1.0023,1.0041
253
+ QMKA,Mackay,33,1.0744,1.0731,1.0602
254
+ QMLN,Millmerran PS Unit 1 & 2(Millmerran),330,,0.9532,0.9612
255
+ QMND,Mindi (Rail),132,1.0462,1.0406,1.0365
256
+ QMOB,Belmont Wecker Road,11,1.038,1.0335,1.0313
257
+ QMRA,Moura,66/11 ,1.0044,0.9992,1.0056
258
+ QMRE,Murarrie (Belmont),110,1.0072,1.0071,1.0069
259
+ QMRG,Middle Ridge (Ergon),110,0.9731,0.9732,0.9729
260
+ QMRH,Moranbah Substation,132,1.1295,1.1058,1.0839
261
+ QMRL,Moranbah (Town),11,1.1235,1.1,1.0824
262
+ QMRN,Moranbah (Mine),66,1.1318,1.107,1.089
263
+ QMRX,Middle Ridge (Energex),110,0.9731,0.9732,0.9729
264
+ QMSP,"Mt Stuart PS Unit 1,2,3",132,,1.0041,1.0156
265
+ QMTM,Mt McLaren (Rail),132,1.1649,1.1259,1.0875
266
+ QNEB,Nebo,11,1.0417,1.0388,1.0343
267
+ QNGY,North Goonyella,132,1.142,1.1225,1.0981
268
+ QNLD,Newlands,66,1.1353,1.1173,1.0977
269
+ QNOR,Norwich Park (Rail),132,1.0755,1.064,1.0559
270
+ QOKT,Oakey,110,0.9755,0.975,0.9725
271
+ QOKY,"Oakey PS Unit 1,2",110,,0.9519,0.9498
272
+ QOON,Oonooie (Rail),132,1.0864,1.0899,1.0703
273
+ QORH,Orana ,275,0.958,0.9517,0.9625
274
+ QPAL,Pandoin,66,0.9894,0.9854,0.9909
275
+ QPAN,Pandoin,132,0.9894,0.987,0.9914
276
+ QPIV,Pioneer Valley,66,1.0733,1.0717,1.0568
277
+ QPKD,Peak Downs (Rail),132,1.1288,1.103,1.0832
278
+ QPRO,Proserpine,66,1.122,1.0956,1.0937
279
+ QPWD,Palmwoods,132/110 ,1.027,1.0155,1.0124
280
+ QQAH,Queensland Alumina Ltd (Gladstone South),132,0.9923,0.9921,0.9974
281
+ QQNH,Queensland Nickel (Yabulu),132,1.0805,1.0809,1.0779
282
+ QRBS,Runcorn,33,1.013,1.0135,1.0123
283
+ QRCK,Rocklands (Rail),132,0.9814,0.9787,0.9858
284
+ QRGL,Raglan,275,0.9897,0.9809,0.9886
285
+ QRLD,Richlands,33,1.0116,1.0137,1.0099
286
+ QRLE,Rocklea (Archerfield),110,1.0037,1.0004,1.0039
287
+ QROC,Rockhampton,66,0.9871,0.9901,0.9949
288
+ QROS,Ross,132,1.0883,1.087,1.0764
289
+ QRPN,Redbank Plains,11,0.999,0.9978,0.9996
290
+ QSPN,South Pine,110,1.006,1.0071,1.0057
291
+ QSTN,"Stanwell PS Unit 1,2,3,4",275,,0.9693,0.9784
292
+ QSTX,Stanwell PS Load,132,,0.9858,0.9897
293
+ QSUM,Sumner,110,1.0043,1.0027,1.0044
294
+ QSWE,Swanbank E GT,275,,0.9934,0.9972
295
+ QSYC,Stony Creek,132,1.1588,1.0962,1.0805
296
+ QTBC,Teebar Creek,132,1.012,1.0126,1.0107
297
+ QTKM,Tangkam (Dalby) ,110,0.9673,0.9702,0.9747
298
+ QTLL,Tully,22,1.1368,1.1317,1.1003
299
+ QTNN,Tennyson (Rail),110,1.0059,1.0017,1.0056
300
+ QTNS,Tennyson,33,1.008,1.0043,1.0076
301
+ QTNT,Tarong North PS,275,,0.9678,0.9707
302
+ QTRL,Tarong ,66,0.9703,0.9684,0.9711
303
+ QTRN,"Tarong PS Unit 1,2,3,4",275,,0.9677,0.9708
304
+ QTUH,Turkinje (Craiglee),132,1.136,1.1343,1.1127
305
+ QTUL,Turkinje,66,1.137,1.1355,1.1137
306
+ QTVE,Townsville East,66,1.1123,1.1046,1.0886
307
+ QTVS,Townsville South,66,1.11,1.102,1.0872
308
+ QTYP,Yabulu PS,132,,1.0292,1.0337
309
+ QTZS,Townsville South (KZ),132,1.1016,1.1022,1.0916
310
+ QWAN,Wandoo (Rail),132,1.0468,1.0526,1.0387
311
+ QWCB,Wycarbah,132,0.9914,0.9859,0.9901
312
+ QWDN,Kogan Creek PS,275,,0.9493,0.9582
313
+ QWIP,"Wivenhoe Pump,1,2",275,0.9942,0.993,0.9941
314
+ QWIV,Wivenhoe Generation Unit 1 & 2,275,,0.9891,0.9895
315
+ QWLG,Woolooga (Energex),132,1.0057,1.0083,1.0062
316
+ QWLN,Woolooga (Ergon),132,1.0057,1.0083,1.0062
317
+ QWOT,Wotonga,132,1.0917,1.095,1.0769
318
+ QWRE,Woree,132,1.1164,1.1127,1.0902
319
+ QWSH,Wandoan South,132,0.9562,0.9587,0.9744
320
+ QYAE,Yarwun - Boat Creek (Ergon),132,0.9965,0.9842,0.9901
321
+ QYAG,Yarwun PS,132,,0.9837,0.9879
322
+ QYAR,Yarwun - Rio Tinto ,132,0.9878,0.984,0.9889
323
+ SACR,City West,66,1.0041,1.0047,1.0054
324
+ SANC,Angas Creek,33,1.0111,1.012,1.0115
325
+ SARW,Ardrossan West,33,0.9567,0.9459,0.9382
326
+ SBAC,Back Callington,11,1.013,1.0155,1.0133
327
+ SBAR,Baroota,33,0.9911,0.9918,0.9918
328
+ SBE1,Berri (POWERCOR),66,1.0683,1.1204,1.0536
329
+ SBEL,North Brown Hill & The Bluff Wind Farms,275,,0.9795,0.9767
330
+ SBER,Berri,66,1.0683,1.1204,1.0536
331
+ SBHP,Whyalla Terminal LMF,33,0.9883,0.9948,0.9943
332
+ SBL1,Blanche (POWERCOR),33,0.9981,1.0241,0.9903
333
+ SBLA,Blanche,33,0.9981,1.0241,0.9903
334
+ SBLW,Snowtown WF Stage 2 - North & South,275,,0.9861,0.9782
335
+ SBRK,Brinkworth,33,0.9886,0.9928,0.9928
336
+ SBUN,Bungama Industrial,33,0.9872,0.9879,0.9874
337
+ SBUR,Bungama Rural,33,0.9872,0.988,0.9984
338
+ SCGW,Clements Gap Wind Farm,132,,0.9658,0.9701
339
+ SCLN,Clare North,33,0.9895,0.9931,0.9906
340
+ SCRK,Cathedral Rocks Wind Farm,132,,0.8774,0.8775
341
+ SDAL,Dalrymple,33,0.9141,0.9157,0.8995
342
+ SDAV,Davenport,275,0.9803,0.989,0.9886
343
+ SDAW,Davenport,33,0.9812,0.9895,0.9891
344
+ SDPS,"Dry Creek PS Unit 1,2,3",66,,1.0022,1.0018
345
+ SDRN,Dorrien,33,1.0047,1.0048,1.0082
346
+ SETC,East Terrace,66,1.0036,1.005,1.0055
347
+ SHPS,Hallet PS & WF,275,,0.9869,0.9835
348
+ SHUM,Hummocks,33,0.9752,0.9613,0.9599
349
+ SHVA,Happy Valley,66,1.007,1.007,1.0068
350
+ SJP1,South Australian VTN,,1.0005,1.0049,1.0012
351
+ SKAD,Kadina East,33,0.9823,0.968,0.9648
352
+ SKAN,Kanmantoo,11,1.0124,1.0153,1.0133
353
+ SKET,Keith,33,1.0133,1.0258,1.0062
354
+ SKLB,Kilburn,66,1.0036,1.003,1.0029
355
+ SKNC,Kincraig,33,1.0096,1.0262,0.9975
356
+ SLCC,Leigh Creek & Northern PS Load 2,33,1.0005,1.0348,1.0482
357
+ SLCS,Leigh Creek South,33,1.0036,1.0383,1.0477
358
+ SLFE,Lefevre,66,0.9992,0.9995,1.0002
359
+ SMA1,Mannum - Adelaide Pipeline 1,3.3,1.0205,1.0232,1.0199
360
+ SMA2,Mannum - Adelaide Pipeline 2,3.3,1.0199,1.0224,1.0191
361
+ SMA3,Mannum - Adelaide Pipeline 3,3.3,1.0183,1.0205,1.0177
362
+ SMAG,Magill,66,1.0063,1.005,1.0053
363
+ SMAN,Mannum,33,1.0156,1.0176,1.014
364
+ SMAY,"Lake Bonney Wind Farm 1,2,3",33,,0.9665,0.9352
365
+ SMBA,Mt Barker,66,1.0065,1.0077,1.0072
366
+ SMBK,Middleback,132,0.9833,0.9889,0.9893
367
+ SMBL,Mobilong,33,1.0148,1.0162,1.0126
368
+ SMBS,Mount Barker South,66,1.0065,1.0078,1.0073
369
+ SMDL,Middleback,33,0.9834,0.9878,0.988
370
+ SMGA,Mt Gambier,33,1.0002,1.0231,0.9908
371
+ SMGU,Mt Gunson,33,0.9936,0.9747,0.9969
372
+ SMH1,Murray Bridge - Hahndorf Pipeline 1,11,1.0176,1.0192,1.0173
373
+ SMH2,Murray Bridge - Hahndorf Pipeline 2,11,1.0185,1.02,1.0193
374
+ SMH3,Murray Bridge - Hahndorf Pipeline 3,11,1.0167,1.017,1.0166
375
+ SMLB,Millbrook,132,1.0047,1.0047,1.0061
376
+ SMOK,Hallet 2 WF,275,,0.9843,0.9811
377
+ SMPS,Mintaro PS,132,,0.9879,0.9736
378
+ SMTM,Mt Millar Wind Farm,33,,0.8971,0.9016
379
+ SMVE,Morphett Vale East,66,1.0084,1.008,1.0075
380
+ SMW1,Morgan - Whyalla Pipeline 1,3.3,1.0264,1.054,1.0292
381
+ SMW2,Morgan - Whyalla Pipeline 2,3.3,1.0127,1.0309,1.0163
382
+ SMW3,Morgan - Whyalla Pipeline 3,3.3,0.9998,1.0093,1.0028
383
+ SMW4,Morgan - Whyalla Pipeline 4,3.3,0.9938,0.9995,0.9957
384
+ SNBN,New Osborne,66,0.999,0.9992,0.9998
385
+ SNEU,Neuroodla,33,0.9975,1.0138,1.0164
386
+ SNFD,Northfield,66,1.0032,1.0029,1.0042
387
+ SNPS,Northern PS Unit 1 & 2,275,,0.9744,0.9826
388
+ SNWB,North West Bend,66,1.0281,1.0567,1.0261
389
+ SNWF,Snowtown Wind Farm,33,,0.9136,0.9198
390
+ SOCP,O.C.P.L. Unit 1,66,,0.999,0.9995
391
+ SPAA,Playford & Northern PS Load 1,33,0.9792,0.9993,0.9929
392
+ SPAR,Para,66,1.0036,1.0036,1.0059
393
+ SPEN,Penola West ,33,0.997,1.0194,0.9861
394
+ SPEW,"Ladbroke Grove PS Unit 1,2",132,,0.9884,0.9563
395
+ SPGW,Parafield Gardens West,66,1.0022,1.0024,1.0045
396
+ SPL3,Port Lincoln 3,33,,0.9108,0.8976
397
+ SPLN,Port Lincoln,33,0.969,0.9726,0.9645
398
+ SPMB,Pimba,132,0.9915,0.9845,0.9991
399
+ SPPR,Port Pirie,33,0.9916,0.9906,0.9957
400
+ SPPS,Playford PS,275,,0.9882,0.9881
401
+ SPPT,Pelican Point PS,275,,0.9994,1.001
402
+ SPTL,Port Lincoln PS,132,,0.9447,0.952
403
+ SQPS,"Quarantine PS Unit 1,2,3,4,5",66,,0.9939,0.9932
404
+ SRSW,Roseworthy,11,1.0091,1.0092,1.0111
405
+ SSNN,Snuggery Industrial,33,0.9636,1.0081,0.9704
406
+ SSNR,Snuggery Rural,33,0.9708,1.003,0.9701
407
+ SSPN,Stony Point,11,0.9867,0.9947,0.9947
408
+ SSPS,Snuggery PS Units 1 to 3,132,,0.9944,0.9829
409
+ SSYP,Wattle Point Wind Farm,132,,0.8218,0.8195
410
+ STAL,Tailem Bend,33,1.0132,1.0161,1.0096
411
+ STEM,Templers,33,1.0037,1.0048,1.0062
412
+ STPS,"Torrens Island PS A Unit 1,2,3,4 & B Unit 1,2,3,4",275,,1.0004,1.0019
413
+ STSY,Torrens Island & PS Load,66,1,1,1
414
+ SWAT,Waterloo,33,0.9901,0.9924,0.9881
415
+ SWHY,Whyalla,33,0.9884,0.9986,0.9881
416
+ SWLE,Waterloo Wind Farm,132,,0.9819,0.9764
417
+ SWMA,Woomera,132,0.9944,0.9664,0.9984
418
+ SWUD,Wudinna,66,0.9829,0.9905,0.9855
419
+ SWYC,Whyalla Central ,33,0.9884,0.994,0.993
420
+ SYAD,Yadnarie,66,0.9753,0.9777,0.9731
421
+ TAL2,Arthurs Lake,6.6,0.9991,0.9849,0.9911
422
+ TAV2,Avoca,22,1.0287,0.994,1.0167
423
+ TBU3,Burnie,22,0.9861,0.9821,0.9835
424
+ TBW2,Bridgewater,11,1.0359,0.9911,1.0143
425
+ TBYA,Boyer SWA,6.6,1.0401,0.9891,1.0141
426
+ TBYB,Boyer SWB,6.6,1.0412,0.9982,1.0223
427
+ TCO1,Comalco,220,1.0005,1.0006,1.0006
428
+ TCR2,Creek Road,33,1.038,0.9891,1.0127
429
+ TCS3,Chapel St.,11,1.0351,0.9898,1.0132
430
+ TDB2,Derwent Bridge,22,0.9497,0.9154,0.9438
431
+ TDE2,Derby,22,0.9642,0.9366,0.9566
432
+ TDP2,Devonport,22,0.9918,0.9859,0.9874
433
+ TEB2,Emu Bay,11,0.984,0.9789,0.9811
434
+ TEL2,Electrona,11,1.0513,1.002,1.0235
435
+ TFI1,Fisher (Rowallan),220,0.9729,0.9645,0.9701
436
+ TGO2,Gordon,22,1.0269,0.953,0.9903
437
+ TGT1,George Town (Basslink),220,1,1,1
438
+ TGT3,George Town,22,1.0035,1.0024,1.0025
439
+ THA3,Hadspen,22,0.9963,0.9789,0.9904
440
+ THM2,Hampshire,110,0.9843,0.9782,0.9796
441
+ THR2,Huon River,11,1.0478,1.0003,1.0179
442
+ TK13,Kingston,33,1.043,0.9938,1.0179
443
+ TKE2,Kermandie,11,1.0523,1.0028,1.0256
444
+ TKI2,Kingston,11,1.0454,0.9942,1.02
445
+ TKR2,Knights Road,11,1.0552,1.004,1.0284
446
+ TLF2,Lindisfarne,33,1.0393,0.9938,1.0164
447
+ TMB2,Meadowbank,22,1.0188,0.9624,0.9828
448
+ TMT2,Mornington ,33,1.0466,0.9879,1.0145
449
+ TMY2,Mowbray,22,0.9954,0.9766,0.9881
450
+ TNH2,North Hobart,11,1.0368,0.9872,1.0119
451
+ TNN2,New Norfolk,22,1.0351,0.9828,1.0068
452
+ TNT2,Newton,22,0.9811,0.9795,0.9603
453
+ TNT3,Newton,11,0.9716,0.9616,0.9642
454
+ TNW2,Norwood,22,0.9951,0.9776,0.9884
455
+ TPL2,Port Latta,22,0.9663,0.9563,0.9589
456
+ TPM3,Palmerston,22,0.9934,0.9626,0.9844
457
+ TQT2,Queenstown,22,0.9707,0.9658,0.9633
458
+ TQT3,Queenstown,11,0.9818,0.9748,0.9668
459
+ TQU2,Que,22,0.9811,0.9678,0.9731
460
+ TRA2,Railton,22,0.9905,0.9853,0.9878
461
+ TRB2,Rosebery,44,0.9765,0.971,0.9707
462
+ TRI3,Risdon,11,1.0383,0.9889,1.0152
463
+ TRI4,Risdon,33,1.038,0.989,1.0131
464
+ TRK2,Rokeby,11,1.0382,0.9975,1.0175
465
+ TSD2,Scottsdale,22,0.9761,0.9554,0.9661
466
+ TSL2,St Leonard,22,0.9951,0.978,0.988
467
+ TSM2,St. Marys,22,1.0535,1.0098,1.0324
468
+ TSO2,Sorell,22,1.0447,0.9985,1.0207
469
+ TSR2,Savage River,22,0.9984,0.9982,1.0003
470
+ TST2,Smithton,22,0.9524,0.9434,0.9414
471
+ TSW1,Starwood,110,1.0011,1.001,1.001
472
+ TTB2,Triabunna,22,1.0476,1.0018,1.0332
473
+ TTE1,Temco,110,1.0039,1.0037,1.0041
474
+ TTR2,Trevallyn,22,0.9951,0.9779,0.9886
475
+ TTU2,Tungatinah,22,0.9531,0.921,0.9483
476
+ TUL2,Ulverstone,22,0.9888,0.983,0.9854
477
+ TVN1,Greater Hobart Area VTN,,1.0378,0.9902,1.0137
478
+ TVN2,Tamar Region VTN,,0.997,0.9811,0.9904
479
+ TWA2,Waddamana,22,0.9718,0.9389,0.9644
480
+ TWV2,Wesley Vale,22,0.9852,0.9765,0.9845
481
+ TWY2,Wayatinah,11,1.0074,0.9693,0.9927
482
+ VAPD,Portland,500,1.0073,1.0005,1.0033
483
+ VAT2,Altona & Laverton PS (LNGS1 & LNGS2),220,0.9968,0.9972,0.9985
484
+ VATS,Altona,66,1.0057,1.0036,1.0032
485
+ VBAT,Ballarat,66,1.0274,1.0239,1.0207
486
+ VBE2,Bendigo,22,1.0665,1.0781,1.0684
487
+ VBE6,Bendigo,66,1.0699,1.0784,1.0672
488
+ VBL2,Brooklyn (Jemena),22,1.0054,1.0039,1.0039
489
+ VBL3,Brooklyn (POWERCOR),22,1.0054,1.0039,1.0039
490
+ VBL6,Brooklyn (Jemena),66,1.0049,1.0034,1.0053
491
+ VBL7,Brooklyn (POWERCOR),66,1.0049,1.0034,1.0053
492
+ VBT2,Brunswick (CITIPOWER),22,0.9991,0.9994,0.9995
493
+ VBTS,Brunswick (Jemena),22,0.9991,0.9994,0.9995
494
+ VCB2,Cranbourne,220,0.9885,0.9878,0.9901
495
+ VCB5,Cranbourne (UE),66,0.9909,0.9904,0.9919
496
+ VCBT,Cranbourne (SPI Electricity),66,0.9909,0.9904,0.9919
497
+ VDPS,Banimboola & Dartmouth PS,220,,1.0097,1.0004
498
+ VELT,Mt Mercer Windfarm,220,,1.0064,1.0033
499
+ VEPS,Eildon PS Unit 1 & 2,220,,1.0078,1.0026
500
+ VER2,East Rowville (SPI Electricity),66,0.9923,0.9916,0.9931
501
+ VERT,East Rowville (UE),66,0.9923,0.9916,0.9931
502
+ VFB2,Fishermens Bend (POWERCOR),66,1.0033,1.0053,1.0043
503
+ VFBT,Fishermens Bend (CITIPOWER),66,1.0033,1.0053,1.0043
504
+ VFVT,Fosterville,220,1.0683,1.08,1.0649
505
+ VGNT,Glenrowan,66,1.0579,1.0799,1.0532
506
+ VGT6,Geelong,66,1.0058,0.9982,0.9987
507
+ VHOT,Horsham,66,1.0812,1.076,1.068
508
+ VHTS,Heatherton,66,0.998,0.999,0.9985
509
+ VHWP,"Hazelwood PS Load & Unit 1,2,3,4,5,6,7,8",220,,0.9691,0.9723
510
+ VHY2,Heywood,22,1.005,0.9984,1.0007
511
+ VJLA,BHP Western Port,220,0.99,0.9893,0.991
512
+ VJLG,"Jeeralang A PS Unit 1,2,3,4 & B PS Unit 1,2,3",220,,0.9647,0.9667
513
+ VKG2,Kerang,22,1.0944,1.1077,1.0988
514
+ VKG6,Kerang,66,1.0944,1.107,1.0986
515
+ VKT2,Keilor (Jemena),66,1.0032,1.0015,1.0014
516
+ VKTS,Keilor (POWERCOR),66,1.0032,1.0015,1.0014
517
+ VLY6,Loy Yang Substation,66,0.9684,0.9703,0.9765
518
+ VLYP,"Loy Yang A PS Load & Unit 1,2,3,4 & Loy Yang B PS Unit 1,2 & Valley Power Unit 1,2,3,4,5,6",500,,0.9704,0.9742
519
+ VM0P,Mortlake Unit 1 & 2,500,,0.9922,0.9942
520
+ VMBT,Mt Beauty,66,1.0345,1.0539,1.0368
521
+ VMT2,Malvern,22,0.9958,0.996,0.9964
522
+ VMT6,Malvern,66,0.9945,0.9947,0.9953
523
+ VMWG,"Morwell PS G1, 2 and 3",66,,0.9682,0.9704
524
+ VMWP,Morwell PS G4 & G5,11,,0.9698,0.9732
525
+ VMWT,Morwell TS & PS Load,66,0.978,0.9777,0.9799
526
+ VNPS,Newport PS,220,,0.9953,0.9952
527
+ VPTH,Pt Henry & Anglesea PS,220,1.0112,0.9849,0.9799
528
+ VRC2,Red Cliffs,22,1.1169,1.126,1.1205
529
+ VRC6,Red Cliffs,66,1.1139,1.1243,1.1212
530
+ VRCA,Red Cliffs (Essential Energy),66,1.1139,1.1243,1.1212
531
+ VRT2,Richmond,22,0.9976,0.9969,0.9977
532
+ VRT6,Richmond (UE),66,1.0045,0.9993,1.0023
533
+ VRT7,Richmond (CITIPOWER),66,1.0045,0.9993,1.0023
534
+ VRW2,Ringwood (UE),22,1.0013,0.9998,0.9998
535
+ VRW3,Ringwood (SPI Electricity),22,1.0013,0.9998,0.9998
536
+ VRW6,Ringwood (UE),66,0.999,0.9992,0.9993
537
+ VRW7,Ringwood (SPI Electricity),66,0.999,0.9992,0.9993
538
+ VSHT,Shepparton,66,1.0675,1.0869,1.0639
539
+ VSM6,South Morang ,66,0.9987,0.9992,0.9987
540
+ VSMT,South Morang ,66,0.9987,0.9992,0.9987
541
+ VSV2,Springvale (UE),66,0.9964,0.9965,0.997
542
+ VSVT,Springvale (CITIPOWER),66,0.9964,0.9965,0.997
543
+ VT14,McKay Creek / Bogong PS,220,,1.0083,0.9883
544
+ VTBL,Basslink (Loy Yang PS Switchyard) Tasmania to Victoria,500,,0.9684,0.9828
545
+ VTBT,Tyabb,66,0.992,0.9909,0.9924
546
+ VTGT,Terang,66,1.0284,1.0262,1.03
547
+ VTRT,MacArthur Wind Farm,500,,0.9946,0.994
548
+ VTS2,Templestowe (CITIPOWER),66,0.9991,0.9991,0.9993
549
+ VTS3,Templestowe (SPI Electricity),66,0.9991,0.9991,0.9993
550
+ VTS4,Templestowe (UE),66,0.9991,0.9991,0.9993
551
+ VTST,Templestowe (Jemena),66,0.9991,0.9991,0.9993
552
+ VTT2,Thomastown (SPI Electricity),66,1,1,1
553
+ VTTS,Thomastown (Jemena),66,1,1,1
554
+ VWBT,Waubra Wind Farm,220,,1.0157,1.0122
555
+ VWET,Wemen TS,66,1.1137,1.124,1.1206
556
+ VWKP,West Kiewa PS Unit 1 & 2,220,,1.0416,1.0247
557
+ VWM2,West Melbourne,22,1.0018,1.0026,1.0023
558
+ VWM6,West Melbourne (Jemena),66,1.0044,1.0043,1.0039
559
+ VWM7,West Melbourne (CITIPOWER),66,1.0044,1.0043,1.0039
560
+ VWO2,Wodonga,22,1.0509,1.0756,1.0495
561
+ VWO6,Wodonga,66,1.0489,1.0733,1.048
562
+ VYP1,Yallourn,11,0.9495,0.9564,0.9597
563
+ VYP2,"Yallourn W PS 220 Load & Unit 2,3,4",220,,0.9536,0.9563
564
+ VYP3,Yallourn W PS 220 Unit 1,220,,0.9538,0.9589