-
Notifications
You must be signed in to change notification settings - Fork 0
/
TOVPaper2.lyx~
2074 lines (1548 loc) · 46.1 KB
/
TOVPaper2.lyx~
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#LyX 2.2 created this file. For more info see http://www.lyx.org/
\lyxformat 508
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass IEEEtran
\begin_preamble
% for subfigures/subtables
\usepackage[caption=false,font=footnotesize]{subfig}
%\newref{fig}{name = \RSFigtxt}
%\newref{tab}{name = \RSTabtxt}
\end_preamble
\options conference
\use_default_options false
\maintain_unincluded_children false
\language english
\language_package none
\inputencoding auto
\fontencoding global
\font_roman "default" "default"
\font_sans "default" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command bibtex
\index_command default
\float_placement h
\paperfontsize default
\spacing single
\use_hyperref true
\pdf_title "Your Title"
\pdf_author "Your Name"
\pdf_bookmarks true
\pdf_bookmarksnumbered true
\pdf_bookmarksopen true
\pdf_bookmarksopenlevel 1
\pdf_breaklinks false
\pdf_pdfborder true
\pdf_colorlinks false
\pdf_backref false
\pdf_pdfusetitle false
\pdf_quoted_options "pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 0
\use_package esint 0
\use_package mathdots 1
\use_package mathtools 0
\use_package mhchem 1
\use_package stackrel 0
\use_package stmaryrd 0
\use_package undertilde 0
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification true
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 2
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
title{
\backslash
LARGE A Reduced Order Model for a TOV Study in a Solar PV Project}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
author{
\backslash
IEEEauthorblockN{
\backslash
large Ahmad~Abdullah
\backslash
IEEEauthorrefmark{1}and Billy~Yancey
\backslash
IEEEauthorrefmark{2}}
\backslash
IEEEauthorblockA{
\backslash
IEEEauthorrefmark{1}Electric Power Engineers, Inc and the Department of
Electrical Power and Machines
\backslash
\backslash
Cairo University, Faculty of Engineering
\backslash
\backslash
Cairo, Egypt 12613
\backslash
\backslash
E-mail: ahmad.abdullah@ieee.org}
\backslash
IEEEauthorblockA{
\backslash
IEEEauthorrefmark{2}Electric Power Engineers, Inc
\backslash
\backslash
Austin, TX, USA 78738
\backslash
\backslash
Email: byancey@epeconsulting.com}}
\end_layout
\end_inset
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
setlength{
\backslash
columnsep}{0.25in}
\end_layout
\begin_layout Plain Layout
\backslash
maketitle
\end_layout
\end_inset
\end_layout
\begin_layout Abstract
Special system studies are needed to assess the different preliminary designs
of solar photovoltaic (PV) projects.
One of these is a Temporary Overvoltage (TOV) study.
The main purpose of a TOV study is to evaluate the capability of the surge
arresters (SAs) within the substation.
To assess the capability of the SAs accurately, a detailed electromagnetic
transient (EMT) model of the project has to be built.
With the detailed EMT model, which has a large number of inverters, the
run time of the model becomes prohibitive even for a single scenario.
In this paper, we propose a method to systematically reduce the order of
the EMT model at the substation level thus making the model suitable for
TOV studies.
The response of the reduced order model is then benchmarked against the
response of the full order model of an 80 MW solar PV project for various
TOV scenarios.
Simulation results show satisfactory agreement between the response of
the detailed model and the response of the reduced order model.
Additionally, the run time of the proposed reduced order model is less
than the run time of the full order model by a factor of ninety six.
\end_layout
\begin_layout Keywords
Solar power generation, Photovoltaic systems, Electromagnetic transients,
Surge arresters, Transient overvoltage, Surge protection, Temporary Overvoltage
\end_layout
\begin_layout Section
Introduction
\begin_inset CommandInset label
LatexCommand label
name "sec:Introduction"
\end_inset
\end_layout
\begin_layout Standard
With the increased penetration of renewable energy into the grid, special
system studies are called upon to assess their impact on various aspects
of the power system.
One of these aspects is evaluating the adequacy the of surge arresters
within the substation.
Surge arrester MCOV and energy handling capability are generally selected
on an ad hoc manner in the early design stage.
Assessment of the adequacy of the SAs in the substation ensures that SAs
can ride through the TOV by absorbing an amount of energy that is within
their energy handling capability and that the TOV level is limited to a
value determined by applicable standards.
The IEEE Standard C62.82.1-2010
\begin_inset CommandInset citation
LatexCommand cite
key "IEEEStd1312.1-19961996"
\end_inset
defines TOV as “an oscillatory phase-to-ground or phase-to-phase overvoltage
that is at a given location of relatively long duration (seconds, even
minutes) and that is undamped or only weakly damped; resulting from operation
of a switching device or fault condition
\begin_inset Quotes erd
\end_inset
.
\end_layout
\begin_layout Standard
This can occur when the PV inverter is suddenly disconnected from the grid.
Because inverters act as a constant current source, hence when a circuit
breaker opens the inverter terminal voltage can cause voltage fluctuations.
When this occurs, inverters quickly shut down, but there can be a short
period of time where some inverters can create overvoltage spikes.
This is a concern for PV system owners and utilities since large voltage
spikes can damage other equipment that is still connected in the vicinity.
\end_layout
\begin_layout Standard
Historically, assessment of SAs had been done under specific assumptions
about the nature of TOV.
For example, in conventional gas generation and if the neutral of synchronous
generator is ungrounded, it is known that a single line to ground fault
can cause the phase to ground voltage to increase by a factor of
\begin_inset Formula $\sqrt{3}$
\end_inset
.
This value can be used along with the surge arrester TOV withstand capability
curve
\begin_inset CommandInset citation
LatexCommand cite
key "6093926"
\end_inset
to judge the adequacy of the SA.
However, due to the nature of the technology used in renewable energy resources
, this might not be true.
Renewable energy resources are generally inverter based generation.
These inverters incorporate a large number of switches and are of various
topologies.
The temporary overvoltage withstand capability is usable for TOVs lasting
at least 10 milliseconds and due to the microprocessor controller used
within these inverters, most TOV events are transient in nature and the
duration of the TOV events in most cases do not exceed milliseconds.
Thus, the SA overvoltage withstand capability curve is of no practical
usefulness in case of TOV events due to inverter based technologies.
Hence, it is not always possible to assess the capability of a SA using
the project configuration, grounding scheme and the TOV withstand capability.
\end_layout
\begin_layout Standard
This necessitates a paradigm shift in performing TOV studies.
Building the renewable energy project in an EMT type software becomes a
must to assess the performance of SAs under various scenarios.
The model must include all inverters as well as all SAs characteristics
in order to accurately represent the project.
Running such models in EMT software requires small solution time step and
thus a long simulation run time.
Moreover, performing many TOV scenarios becomes a daunting task due to
the long simulation run time.
Thus, it is of utmost importance to develop a method to reduce the total
number of switches (inverters) in the model to reduce the simulation run
time.
\end_layout
\begin_layout Standard
Most equivalencing techniques
\begin_inset CommandInset citation
LatexCommand cite
key "Hussein2013"
\end_inset
treat the renewable project as one unit, i.e., the whole project starting
from the main power transformer (MPT) down to the medium voltage collector
system and the low voltage inverters are replaced by a single electrical
component that accurately captures the transient performance of the project
as a whole.
This is done mainly for grid impact studies and specifically for dynamic
simulations.
Popular methods such as the one in
\begin_inset CommandInset citation
LatexCommand cite
key "muljadi2006equivalencing"
\end_inset
is suitable only for power flow and dynamic studies not EMT type simulations.
\end_layout
\begin_layout Standard
In this paper, we provide a way to reduce the order of the solar PV project
at the substation level.
Each feeder of the collector system is reduced on its own to a simple generatio
n resource and an impedance.
Thus the number of the inverters in the EMT model is drastically reduced
to the number of the feeders in the collector system.
It thus possible to study the performance of the SAs in the substation
since they, generally, are installed at the beginning of each of these
collector feeders.
\end_layout
\begin_layout Standard
The paper is organized as follows.
The detailed system EMT model is described in
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:Full-System-Mode"
\end_inset
.
The benchmark response of the inverter as supplied by the manufacturer
is shown in
\begin_inset CommandInset ref
LatexCommand ref
reference "sec:Inverter-Benchmark-Tests"
\end_inset
.
The methodology is provided in
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:Methodology"
\end_inset
.
The TOV scenarios used for comparing the detailed and reduced order model
is provided in
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:Scenarios"
\end_inset
.
The results of the reduced order model is shown in
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:Results"
\end_inset
.
Conclusions are summarized in
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:Conclusions"
\end_inset
.
\end_layout
\begin_layout Section
Detailed System Model
\begin_inset CommandInset label
LatexCommand label
name "sec:Full-System-Mode"
\end_inset
\end_layout
\begin_layout Standard
The system under study is an 80 MW solar PV project and is shown in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Full-Order-EMT-Model"
\end_inset
.
The project is divided into four collector feeders and two capacitor banks
each rated at 4.5 MVAr.
Each feeder has different number of inverters connected to it.
The configuration of each feeder has been removed from the paper for confidenti
ality reasons.
\end_layout
\begin_layout Standard
The number of inverters on each feeder is shown in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Full-Order-EMT-Model"
\end_inset
.
The project has a total of 45 inverters and each one is capable of producing
1.8 MVA.
Each inverter block in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Full-Order-EMT-Model"
\end_inset
has a DC to AC stage, an LC filter and an inverter step up transformer
(ISU) transformer.
Each ISU transformer is rated at 1.85 MVA and connected in delta-star with
the star connected to the low voltage side of the inverter and ungrounded.
The low voltage is 0.42 kV while the medium voltage is 34.5 kV.
A schematic of the inverter is shown in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Schematic-of-the"
\end_inset
.
\begin_inset Float figure
wide false
sideways false
status collapsed
\begin_layout Plain Layout
\align center
\begin_inset Graphics
filename graphics/Project.tif
scale 45
\end_inset
\begin_inset Caption Standard
\begin_layout Plain Layout
Full Order EMT model
\begin_inset CommandInset label
LatexCommand label
name "fig:Full-Order-EMT-Model"
\end_inset
\end_layout
\end_inset
\end_layout
\end_inset
\begin_inset Float figure
wide false
sideways false
status collapsed
\begin_layout Plain Layout
\align center
\begin_inset Graphics
filename graphics/Inverer.tif
\end_inset
\end_layout
\begin_layout Plain Layout
\begin_inset Caption Standard
\begin_layout Plain Layout
Schematic of the inverter in the project
\begin_inset CommandInset label
LatexCommand label
name "fig:Schematic-of-the"
\end_inset
\end_layout
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Surge Arresters exist at the beginning of each feeder inside the substation
as shown in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Full-Order-EMT-Model"
\end_inset
.
All surge arresters at the medium voltage level are MOV type, have the
same MCOV of 24.4 kV and have the same energy handling capability of 219
kJ.
The V-I characteristics of the SAs are obtained from
\begin_inset CommandInset citation
LatexCommand cite
key "jonathanwoodworth2014"
\end_inset
and is shown in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Voltage-Current-(V-I)-Characteri"
\end_inset
.
\begin_inset Float figure
wide false
sideways false
status collapsed
\begin_layout Plain Layout
\align center
\begin_inset Graphics
filename graphics/SA 24 kv.png
scale 50
\end_inset
\begin_inset Caption Standard
\begin_layout Plain Layout
Voltage-Current (V-I) Characteristics of the MV surge arrester
\begin_inset CommandInset label
LatexCommand label
name "fig:Voltage-Current-(V-I)-Characteri"
\end_inset
\end_layout
\end_inset
\end_layout
\end_inset
The project connects to the Point of Interconnection (POI) at 138 kV thorough
the MPT which has a rating of 89 MVA.
The feeder circuit breakers are EMA type breakers
\begin_inset CommandInset citation
LatexCommand cite
key "EMAbreakers"
\end_inset
.
These circuit breakers are equipped with a mechanically interlocked switch
on the load side that grounds the load side within 1 cycle of opening the
circuit breaker's main contacts.
\end_layout
\begin_layout Section
Inverter Benchmark Tests
\begin_inset CommandInset label
LatexCommand label
name "sec:Inverter-Benchmark-Tests"
\end_inset
\end_layout
\begin_layout Standard
As has been stated in
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:Introduction"
\end_inset
, the inverter response in fundamentally different from conventional synchronous
machines.
To be able to successfully reduce the order of the model and design the
benchmark scenarios in
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:Scenarios"
\end_inset
, the response of the inverter under specific tests has to be known.
The inverter manufacturer supplied two benchmark tests.
The first one is a load rejection test in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Load-reject-test"
\end_inset
and the second one is a line to line fault in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Phase-A-to"
\end_inset
.
The fault is performed at the inverter terminals with the ISU transformer
terminals connected to a infinite bus.
It can be seen from both
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Load-reject-test"
\end_inset
and
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Phase-A-to"
\end_inset
that the load rejection test produces the worst TOV as opposed to conventional
power systems where generally the single line to ground fault causes the
highest TOV.
\begin_inset Float figure
wide false
sideways false
status collapsed
\begin_layout Plain Layout
\align center
\begin_inset Graphics
filename graphics/load rejection.PNG
scale 40
\end_inset
\begin_inset Caption Standard
\begin_layout Plain Layout
Load rejection test (upper curve is voltage - lower curve is current)
\begin_inset CommandInset label
LatexCommand label
name "fig:Load-reject-test"
\end_inset
\end_layout
\end_inset
\end_layout
\end_inset
\begin_inset Float figure
wide false
sideways false
status collapsed
\begin_layout Plain Layout
\align center
\begin_inset Graphics
filename graphics/Ab-B fsault.PNG
scale 45
\end_inset
\begin_inset Caption Standard
\begin_layout Plain Layout
Phase A to Phase B fault on the inverter terminal
\begin_inset CommandInset label
LatexCommand label
name "fig:Phase-A-to"
\end_inset
\end_layout
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Section
Methodology
\begin_inset CommandInset label
LatexCommand label
name "sec:Methodology"
\end_inset
\end_layout
\begin_layout Standard
Just as any electrical source can be represent by its Thevenin's or Norton's
equivalent
\begin_inset CommandInset citation
LatexCommand cite
key "watson2003power,bobrow1997elementary"
\end_inset
, the inverters within the solar PV project can be modeled as such depending
on the technology used within the inverter.
However, most manufacturers of solar PV inverters use a technology that
makes the inverters act as a current source or a voltage controlled current
source.
Due to that, Norton's equivalent model would be most suitable.
A Norton's equivalent consists of two parts: the Norton's current source
and the impedance in parallel with it.
\end_layout
\begin_layout Standard
The basic idea behind the method in this paper is to represent each feeder
by a pseudo-Norton's equivalent.
The pseudo-Norton's equivalent will consist of two parts: a pseudo-Norton
source and an impedance in parallel.
The pseudo-Norton's source will be responsible for equivalencing the low
frequency response of the feeder, while the impedance in parallel will
be equivalencing the high frequency response of the feeder.
This effectively means that the step response of the pseudo-Norton's source
should correspond to the low frequency response portion of the overall
feeder frequency response.
This also means that the step response of the impedance in parallel should
correspond to the high frequency response portion of the overall feeder
frequency response.
The construction of the pseudo-Norton's source is provided in
\begin_inset CommandInset ref
LatexCommand formatted
reference "subsec:The-pseudo-Norton-source"
\end_inset
while the construction of the impedance in parallel is provided in
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:The-impedance-in-paralel"
\end_inset
.
\end_layout
\begin_layout Subsection
The Pseudo-Norton's Source
\begin_inset CommandInset label
LatexCommand label
name "subsec:The-pseudo-Norton-source"
\end_inset
\end_layout
\begin_layout Standard
The pseudo-Norton's source will consist of an inverter stage with its associated
controls, a filter as well a transformer.
Generally speaking, any inverter must contain a filter to shape the output
waveforms by rejecting the high frequency switching harmonics.
Inverter manufacturers can use transformerless
\begin_inset CommandInset citation
LatexCommand cite
key "inzunza20056"
\end_inset
technology, but this is outside the scope of this paper.
The validity of the current methodology is yet to be investigated under
transformerless technology.
\end_layout
\begin_layout Standard
To construct the pseudo-Norton's source, the inverter MVA rating must be
scaled up by a factor equal to the total number of inverters on the feeder.
Many vendors supply proprietary EMT models of their inverters that has
the number of inverters or the MVA variable.
If the user is using a custom EMT model, then the model must have the MVA
rating or the number of inverters variable.
The controls of the inverter are to kept the same without any change.
The values of the inductance and the capacitance of LC filter are also
to be scaled up by the number of inverters.
Lastly, the ISU transformer MVA rating is also to be scaled up by a factor
equal to the number of inverters without changing the per unit impedance
of the ISU transformer.
\end_layout
\begin_layout Standard
In this paper, we used a confidential model supplied by the manufacturer.
The model has proprietary control algorithms, proprietary switching topology,
LC filer and an ISU transformer.
We only scaled the model as described in this section.
\end_layout
\begin_layout Subsection
The Impedance in Parallel
\begin_inset CommandInset label
LatexCommand label
name "sec:The-impedance-in-paralel"
\end_inset
\end_layout
\begin_layout Standard
It is necessary that the parallel impedance represents the high frequency
response of the collector system.
Since it is typical in power flow studies to represent the cable sections
in the collector system using pi-models, the reader is to be warned against
such representation in EMT type analysis as this representation is only
valid at the power frequency.
The parallel impedance is nothing other than a frequency dependent impedance
that captures the high frequency response of the cable sections in collector
feeder.
Thus the cable sections along the feeder have to be modeled by a suitable
frequency dependent model.
The user has two choices:
\end_layout
\begin_layout Enumerate
Perform a frequency scan on the feeder with all inverters removed from the
project (ISU transformers have to be open-circuited as well as the feeder
breaker).
Using that frequency scan, the user can use vector fitting
\begin_inset CommandInset citation
LatexCommand cite
key "gustavsen1999rational,morched1983transmission"
\end_inset
to construct a frequency dependent model.
Passivity has to be enforced upon the resulting fitting by insuring that
negative resistance is not a result of the fitting.
Negative resistance causes instability in the EMT simulations.
\end_layout
\begin_layout Enumerate
Keep the feeder intact without performing a vector fitting.
This means that the cable sections are to be kept in the model but without
the inverters, LC filters or the ISU transformers.
\end_layout
\begin_layout Standard
Theoretically, both methods should represent the same impedance.
The first choice above can be done very quickly in PSCAD™/EMTDC.
However, PSCAD™/EMTDC does not enforce passivity on the resulting frequency
dependent model.
Due to that, the authors used the second choice and they will treat the
first method in a separate publication.
\end_layout
\begin_layout Standard
The authors also noted that for the equivalencing to produce satisfactory
results, some cable sections in feeder have to be left out from this equivalenc
ing process.
It turned out that the first cable section has to be removed from this
frequency dependent impedance.
The overall reduced order model is shown in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:Reduced-Order-Model"
\end_inset
.
\begin_inset Float figure
wide false
sideways false
status collapsed
\begin_layout Plain Layout
\align center
\begin_inset Graphics
filename graphics/Project_eqlent.tif
scale 50
\end_inset
\begin_inset Caption Standard
\begin_layout Plain Layout
Reduced Order Model
\begin_inset CommandInset label
LatexCommand label
name "fig:Reduced-Order-Model"
\end_inset
\end_layout
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Section
TOV Scenarios
\begin_inset CommandInset label
LatexCommand label
name "sec:Scenarios"
\end_inset
\end_layout