GIC Calculations Using PSS E. Live Demonstration February 16, 2017

Size: px
Start display at page:

Download "GIC Calculations Using PSS E. Live Demonstration February 16, 2017"

Transcription

1 GIC Calculations Using PSS E Live Demonstration February 16, 2017 usa.siemens.com/digitalgrid

2 NERC TPL GMD Vulnerability Assessment Process Source: NERC GMD Task Force Documents Page 2

3 How to run GIC analysis in PSS E? Page 3

4 PSS E GIC analysis GUI Page 4

5 Development of DC system model Power flow network data reduced to just resistance network with these modifications: Transmission lines modeled as resistor in series with induced voltage Line reactors / charging ignored Grounded two- and three-winding transformers modeled with their winding resistance to ground Grounded auto-transformers are modeled with their common and series winding resistance Grounded Bus shunts are modeled Equivalent station grounding resistance is modeled Transformer GIC blocking devices are modeled Page 5

6 GIC flow in various transformer configurations The effective GIC (I eff ) flow in a transformer due to GICs flowing in one or more of its winding is dependent upon transformer type. Refer PSS E Program Application Guide, Volume 1 Page 6

7 Effective GIC Two-winding transformer Page 7

8 Effective GIC Two-winding auto transformer Page 8

9 Mvar/Ampere Scaling Factor (K factor ) One of the effects of the GICs flowing in transformer windings is that the transformer is subjected to half-cycle saturation resulting in increased reactive power (Mvar) losses in these equipment. Using GIC to Mvar scaling factors transformer reactive power losses are calculated. When a specific K factor value is provided for a transformer: Q = I eff K factor Using generic scaling factor value based on the transformer type: VH Q = Ieff K factor 500 where V H is Transformer Windings highest voltage in kv. Page 9

10 Generic Scaling Factors (a) K factor determined based on transformer cores Core Design Cores K factor Three-phase, shell form Single-phase (three separate cores) Three-phase, 3-legged, core form Three-phase, 5-legged, core form Three-phase, 7-legged, core form (b) K factor determined based on base kv of transformer windings Windings Highest Voltage K factor Unknown core, <= 200 kv 0.6 Unknown core, > 200 kv and <= 400 kv 0.6 Unknown core, > 400 kv 1.1 Source: X. Dong, Y. Liu, J. G. Kappenman, Comparative Analysis of Exciting Current Harmonics and Reactive Power Consumption from GIC Saturated Transformers, Proceedings IEEE, 2001, pages Page 10

11 GMD events modeled in PSS E Uniform Geoelectric Field E(t) Ignores effects of local earth conductivity and local geomagnetic latitude Benchmark GMD Event E(t) E = 8 V/km Considers α, the scaling factor to account for local geomagnetic latitude, and β, the scaling factor to account for the local earth conductivity structure Non-uniform Geoelectric Field E(t) Considers 1-D local earth conductivity models Calculates E(t) using Complex Image Method Page 11

12 GIC Data File usa.siemens.com/digitalgrid

13 GIC Data File The data required to run GIC analysis which does not exist in PSS E power flow case is provided using this file. The accuracy of GIC calculations will depend on the data provided in this file. GIC data file Text file Default extension:.gic Page 13

14 GIC Data File Identification and substation data Page 14

15 GIC Data File Transformer data Page 15

16 GIC Data File Fixed shunt and branch data Page 16

17 GIC Data File User Earth model data Page 17

18 GIC Data File Branch Data Notes GMD induced electric field can be specified in branch data record in terms of INDVP and INDVQ. PSS E determines branch GMD induced efield as below. 1. When INDVP and INDVQ are specified in GIC data file, the total branch GMD induced electric field is then determined as: Page 18 Induced Efield = INDVP + j INDVQ volts 2. When INDVP and INDVQ are not specified (blank) in GIC data file, branch induced efields are calculated as per selected GMD event and branch geographical location. 3. When INDVP=0 and INDVQ=0 are specified in GIC data file, the branch is treated as underground cable. It is part of dc network, GICs can flow in this branch, but does not have induced efields. For uniform and benchmark GMD events, Induced efield is real value, but for non-uniform field modeling this will be complex value. Induced electric field will have positive polarity at branch To Bus (J bus).

19 GIC Data File User Earth model notes TPL defined Earth Conductivity Models for US and Canada are modeled as standard earth models (just use its name in GIC data file). If any other Earth Model is required, use this data record to define such an earth model. A total of up to 50 user earth models are allowed. Each earth model may have up to 25 layers. Use as many records needed to specify the data. The thickness of the last layer is infinity. This is specified as any value less than 0.0 (= for example). The thickness value less than 0.0 is also used as end of earth model data. Page 19

20 GIC Data File Example Create from Python Script (A) Generate GIC data Microsoft Excel template import psse34 import psspy, gicdata psspy.psseinit() savfile="nerc_gic_app_guide_exam_v33.sav" excelfile="template_2.xlsx" excelfile=gicdata.template_excel(savfile,excelfile, showexcel=true) (B) Edit template as required (C) Create GIC data file from template import psse34 import gicdata excelfile="template_2.xlsx" gicfile="template_2.gic" gicdata.excel2gicfile(excelfile, gicfile) Page 20

21 GIC Analysis usa.siemens.com/digitalgrid

22 PSS E GIC Calculations GMD Storm Scenario PSS E GIC Module PSS E GIC Data PSS E Power Flow Network GICs, Transformer Q Losses PSS E Power Flow Network with GIC Losses AC Power flow studies Contingency analysis PV/QV analysis Dynamic analysis Page 22

23 Run GIC Analysis from PSS E GUI Page 23

24 Run GIC Analysis from Python Script (A) Run GIC activity (gic_3) using psspy module This runs GIC activity and produces GIC analysis results in PSS E Text reports. (B) Run GIC analysis and retrieve results in Python objects using arrbox.gic OR pssarrays modules This runs GIC activity and returns GIC analysis results in Python objects. Page 24

25 arrbox.gic.gic OR pssarrays.gic objects This provides pythonic interface to GIC activity and also retrieves results into Python objects. import arrbox.gic gicobj = arrbox.gic.gic(savfile, gicfile, efield_mag, efield_deg, tielevels=0, study_year=0, thermal_ana_optn=0, substation_r=0.1, branch_xbyr=30.0, transformer_xbyr=30.0, efield_mag_local=0.0, efield_deg_local=0.0, efield_type='uniform', efield_unit='v/km', addfile_optn='rdch', gic2mvar_optn='kfactors', earth_model_name='', scan_storm_event='', power_flow_optn='', ejet_million_amps=0.0, ejet_halfwidth_km=0.0, ejet_period_min=0.0, ejet_height_km=0.0, ejet_center_deg=0.0, addfile='', purgfile='', rnwkfile='', pygicfile='nooutput', basekv=[], areas=[], buses=[], owners=[], zones=[], basekv_local=[], areas_local=[], buses_local=[], owners_local=[], zones_local=[], pf_itmxn=_i, pf_toln=_f, pf_tap=_i, pf_area=_i, pf_phshft=_i, pf_dctap=_i, pf_swsh=_i, pf_flat=_i, pf_varlmt=_i, pf_nondiv=_i) OR import pssarrays gicobj = pssarrays.gic(savfile,...) Page 25

26 Example IEEE GIC Test Case Network R. Horton, et.al., A Test Case for the Calculation of Geomagnetically Induced Currents, IEEE Transactions on Power Delivery, Vol. 27, No. 4, October 2012, pages Page 26

27 IEEE GIC Test Case Calculations with Activity GIC Refer files in folder..\pti\pssexx\example ieee_gic_test_case.sav ieee_gic_test_case.gic ieee_gic_test_case.sld Page 27

28 GIC Calculations Report Page 28

29 GIC Calculations Report (continued) Page 29

30 GIC Calculations Report (continued) Page 30

31 GIC Calculations Report (continued) Page 31

32 GIC Calculations Report (continued) Page 32

33 GIC Results on Network Maps Python Module arrbox.gicmaps.gicmaps OR pssarrays.gicmaps Use arrbox.gicmaps python module to display GIC calculation results on network map. pygicfile file produced by activity GIC or arrbox.gic.gic used as input to GICMAPS. Need open source python modules: numpy, matplotlib, basemap Get details as >>> import arrbox.gicmaps >>> help(arrbox.gicmaps) Page 33

34 GIC Results on Network Maps (continued) Page 34

35 GIC Results on Network Maps (continued) Page 35

36 GIC Results on Network Maps (continued) Page 36

37 GIC Results on Slider Diagrams Open sample.sav and sample.sld files in PSSExx. Run GIC analysis using: sample.gic GMD event as: Benchmark, scan degrees Show GIC results on slider diagram: Select slider tab Menu Diagram >Results to show >GIC results Press Title Tool Button to show title on slider diagram Page 37

38 GIC Results on Slider Diagrams (continued) Page 38

39 scan_d_m option scan results Page 39

40 Conclusion usa.siemens.com/digitalgrid

41 TPL Requirements and PSS E Conclusion Page 41 TPL Requirements R1 Identify individual or entity Company policy R2 R3 Maintain System models and GIC System (DC) models Have acceptable voltage criteria during the benchmark GMD event How to meet? PSS E Case and GIC data files Company policy R4 GMD Vulnerability Assessment studies PSS E GIC Module and other PSS E activities R5 1) Provide GIC flow information for worst case geoelectric field orientation 2) Effective GIC time series, GIC(t) R6 Conduct a thermal impact assessment with I eff /phase > 75 Amps 1) PSS E GIC module output 2) Implemented, will be available in next PSS E release Need transformer thermal response capability data R7 Develop corrective action plan a) company policy: based on grid knowledge develop this b) implement in PSS E Case and GIC data files

42 PSS E GIC Module Conclusion Fully integrated in PSS E Uses standard PSS E networks (.sav or.raw files) No Sequence data required Additional data required for GIC calculations supplied through external GIC data file GIC data files can be prepared using interactive tools, GIC Python module and Microsoft Excel or a text editor Activity GIC creates comprehensive and customizable text report Python scripts can be used to run GIC calculations, create custom reports and show GIC results on Network maps GIC calculations automatically run orientation scans to find worst orientation and magnitude scans to find maximum possible storm strength that system can withstand Page 42

43 Contact Krishnat Patil Senior Staff Software Engineer Siemens PTI Phone: Jyothirmai Chittyreddy Staff Consultant Siemens PTI Phone: usa.siemens.com/digitalgrid Page 43

GIC Analysis using PSS E. K.V. PATIL Siemens Power Technologies International Schenectady, New York, USA

GIC Analysis using PSS E. K.V. PATIL Siemens Power Technologies International Schenectady, New York, USA CIGRÉ-697 2015 CIGRÉ Canada Conference 21, rue d Artois, F-75008 PARIS http : //www.cigre.org Winnipeg, Manitoba, August 31-September 2, 2015 GIC Analysis using PSS E K.V. PATIL Siemens Power Technologies

More information

Modeling and Evaluation of Geomagnetic Storms in the Electric Power System

Modeling and Evaluation of Geomagnetic Storms in the Electric Power System 21, rue d Artois, F-75008 PARIS C4-306 CIGRE 2014 http : //www.cigre.org Modeling and Evaluation of Geomagnetic Storms in the Electric Power System K. PATIL Siemens Power Technologies International, Siemens

More information

The Engineering Problem. Calculating GIC Flow through the EHV System

The Engineering Problem. Calculating GIC Flow through the EHV System The Engineering Problem Calculating GIC Flow through the EHV System 1 Creating the GIC System Model Since the EHV system is a three-phase balanced network, it is only necessary to model a single-phase

More information

TPL Transmission System Planned Performance for Geomagnetic Disturbance Events

TPL Transmission System Planned Performance for Geomagnetic Disturbance Events TPL-007-1 Transmission System Planned Performance for Geomagnetic Disturbance Events Stan Sliwa Transmission Planning RSCS Meeting May 18, 2017 www.pjm.com TPL-007-1 Purpose: Establish requirements for

More information

Transformer Thermal Impact Assessment White Paper TPL Transmission System Planned Performance for Geomagnetic Disturbance Events

Transformer Thermal Impact Assessment White Paper TPL Transmission System Planned Performance for Geomagnetic Disturbance Events Transformer Thermal Impact Assessment White Paper TPL-007-2 Transmission System Planned Performance for Geomagnetic Disturbance Events Background Proposed TPL 007 2 includes requirements for entities to

More information

Transformer Thermal Impact Assessment White Paper TPL Transmission System Planned Performance for Geomagnetic Disturbance Events

Transformer Thermal Impact Assessment White Paper TPL Transmission System Planned Performance for Geomagnetic Disturbance Events Transformer Thermal Impact Assessment White Paper TPL-007-2 Transmission System Planned Performance for Geomagnetic Disturbance Events Background Proposed TPL-007-2 includes requirements for entities to

More information

TPL is a new Reliability Standard to specifically address the Stage 2 directives in Order No. 779.

TPL is a new Reliability Standard to specifically address the Stage 2 directives in Order No. 779. Transformer Thermal Impact Assessment White Paper Project 2013-03 (Geomagnetic Disturbance Mitigation) TPL-007-12 Transmission System Planned Performance for Geomagnetic Disturbance Events Background On

More information

Transformer Thermal Impact Assessment White Paper Project (Geomagnetic Disturbance Mitigation)

Transformer Thermal Impact Assessment White Paper Project (Geomagnetic Disturbance Mitigation) Transformer Thermal Impact Assessment White Paper Project 2013-03 (Geomagnetic Disturbance Mitigation) TPL-007-1 Transmission System Planned Performance for Geomagnetic Disturbance Events Background On

More information

Transformer Thermal Impact Assessment White Paper (Draft) Project (Geomagnetic Disturbance Mitigation)

Transformer Thermal Impact Assessment White Paper (Draft) Project (Geomagnetic Disturbance Mitigation) Transformer Thermal Impact Assessment White Paper (Draft) Project 2013-03 (Geomagnetic Disturbance Mitigation) TPL-007-1 Transmission System Planned Performance during Geomagnetic Disturbances Background

More information

GMD Voltage Collapse Study

GMD Voltage Collapse Study GMD Voltage Collapse Study Terry Volkmann 2016 Fall Reliability Conference November 2, 2016 1 GMD Voltage Collapse Studies in Wisconsin and Maine Overview: Modeling shows GMD Voltage Collapse Issues: Power

More information

Power System Impacts of Geomagnetic Disturbances

Power System Impacts of Geomagnetic Disturbances 1 Power System Impacts of Geomagnetic Disturbances Thomas J. Overbye Fox Family Professor of Electrical l and Computer Engineering i University of Illinois at Urbana Champaign overbye@illinois.edu September

More information

Case Study Effects of Geomagnetically Induced Current (GIC) Neutral Blocking Device

Case Study Effects of Geomagnetically Induced Current (GIC) Neutral Blocking Device 21, rue d Artois, F-75008 PARIS CIGRE US National Committee http : //www.cigre.org 2014 Grid of the Future Symposium Case Study Effects of Geomagnetically Induced Current (GIC) Neutral Blocking Device

More information

Evaluating Transformer Heating due to Geomagnetic Disturbances

Evaluating Transformer Heating due to Geomagnetic Disturbances Evaluating Transformer Heating due to Geomagnetic Disturbances Presented by: Brian Penny, American Transmission Company 53 rd Annual Minnesota Power Systems Conference November 7, 2017 atcllc.com Presentation

More information

See Benchmark Geomagnetic Disturbance Event Description white paper, May 12, Filed by NERC in Docket No. RM15 11 on June 28, 2016.

See Benchmark Geomagnetic Disturbance Event Description white paper, May 12, Filed by NERC in Docket No. RM15 11 on June 28, 2016. Screening Criterion for Transformer Thermal Impact Assessment White Paper TPL-007-2 Transmission System Planned Performance for Geomagnetic Disturbance Events Summary Proposed TPL 007 2 includes requirements

More information

Vulnerability Assessment and Planning

Vulnerability Assessment and Planning Vulnerability Assessment and Planning Project 2013-03 (GMD Mitigation) Standard Drafting Team GMD Task Force In-person meeting March 18-19, 2014 Topics Application of the Benchmark GMD Event in System

More information

Geomagnetic Disturbances. IEEE PES Chicago Chapter Technical Presentation March 12, Alan Engelmann Transmission Planning ComEd.

Geomagnetic Disturbances. IEEE PES Chicago Chapter Technical Presentation March 12, Alan Engelmann Transmission Planning ComEd. Geomagnetic Disturbances IEEE PES Chicago Chapter Technical Presentation March 12, 2014 Alan Engelmann Transmission Planning ComEd GMD Background Solar Disturbances Impacts Monitoring Events 2 Solar Disturbances

More information

Interfacing Power System Simulators with Geomagnetically Induced Currents (GIC) Simulation Programs. Luis Marti Hydro One, Canada

Interfacing Power System Simulators with Geomagnetically Induced Currents (GIC) Simulation Programs. Luis Marti Hydro One, Canada 1 Interfacing Power System Simulators with Geomagnetically Induced Currents (GIC) Simulation Programs Luis Marti Hydro One, Canada 2 GMD 101 Background. What is a GMD event. Effects on the power system

More information

Consolidated Edison s Experience with On-line Monitoring and Mitigation of Geomagnetic Disturbances

Consolidated Edison s Experience with On-line Monitoring and Mitigation of Geomagnetic Disturbances Consolidated Edison s Experience with On-line Monitoring and Mitigation of Geomagnetic Disturbances Gary R. Hoffman, Advanced Power Technologies Sam Sambasivan, Consolidated Edison Vincenzo Panuccio, Consolidated

More information

See Benchmark Geomagnetic Disturbance Event Description white paper, May 12, Filed by NERC in RM15-11 on June 28,

See Benchmark Geomagnetic Disturbance Event Description white paper, May 12, Filed by NERC in RM15-11 on June 28, Screening Criterion for Transformer Thermal Impact Assessment Project 2013-03 (Geomagnetic Disturbance Mitigation) TPL-007-12 Transmission System Planned Performance for Geomagnetic Disturbance Events

More information

G. KOBET, I. GRANT, G. GOZA Tennessee Valley Authority USA. R. GIRGIS, M. ESPINDOLA ABB Corporation USA SUMMARY

G. KOBET, I. GRANT, G. GOZA Tennessee Valley Authority USA. R. GIRGIS, M. ESPINDOLA ABB Corporation USA SUMMARY 21, rue d Artois, F-75008 PARIS CIGRE US National Committee http : //www.cigre.org 2016 Grid of the Future Symposium Assessment of the Impact of GMD on the TVA 500 kv Grid & Power Transformers Part II:

More information

Geo-Magnetic Disturbance Analysis of HV and EHV Grids

Geo-Magnetic Disturbance Analysis of HV and EHV Grids Engineering Conferences International ECI Digital Archives Modeling, Simulation, And Optimization for the 21st Century Electric Power Grid Proceedings Fall 10-22-2012 Geo-Magnetic Disturbance Analysis

More information

TPL Project Geomagnetic Disturbance Mitigation. Technical Conference May 20, 2014

TPL Project Geomagnetic Disturbance Mitigation. Technical Conference May 20, 2014 TPL-007-1 Project 2013-03 Geomagnetic Disturbance Mitigation Technical Conference May 20, 2014 Administrative Internet passcode: 3htw0br3wt1s (label located on desk) Presentations available on the project

More information

Unofficial Comment Form Project Geomagnetic Disturbance Mitigation

Unofficial Comment Form Project Geomagnetic Disturbance Mitigation Project 2013-03 Geomagnetic Disturbance Mitigation Please DO NOT use this form for submitting comments. Please use the electronic form to submit comments on the Standard. The electronic comment form must

More information

2013 Grid of the Future Symposium. Effect of GIC and GIC Capability of EHV Power Transformers A Case Study on an AEP 765 kv Power Transformer Design

2013 Grid of the Future Symposium. Effect of GIC and GIC Capability of EHV Power Transformers A Case Study on an AEP 765 kv Power Transformer Design 21, rue d Artois, F-75008 PARIS CIGRE US National Committee http : //www.cigre.org 2013 Grid of the Future Symposium Effect of GIC and GIC Capability of EHV Power Transformers A Case Study on an AEP 765

More information

Screening Criterion for Transformer Thermal Impact Assessment Summary Justification Figure 1 Figure 1

Screening Criterion for Transformer Thermal Impact Assessment Summary Justification Figure 1 Figure 1 Screening Criterion for Transformer Thermal Impact Assessment Project 213-3 (Geomagnetic Disturbance Mitigation) TPL-7-1 Transmission System Planned Performance for Geomagnetic Disturbance vents Summary

More information

Integration of Geomagnetic Disturbance Modeling into the Power Flow: A Methodology for Large-Scale System Studies

Integration of Geomagnetic Disturbance Modeling into the Power Flow: A Methodology for Large-Scale System Studies Copyright 2012 IEEE. Reprinted, with permission from: Integration of Geomagnetic Disturbance Modeling into the Power Flow: A Methodology for Large-Scale System Studies Thomas J. Overbye, Trevor R. Hutchins,

More information

Solar Storm Probabilities Grid Contingencies Harmonic Relay Settings

Solar Storm Probabilities Grid Contingencies Harmonic Relay Settings Presentation to NERC GMD Meeting March 18 th 19 th, 2014 SolidGround TM Transformer Neutral Blocking System Solar Storm Probabilities Grid Contingencies Harmonic Relay Settings Agenda US Power Usage and

More information

A Process for Evaluating the Degree of Susceptibility of a fleet of Power Transformers to Effects of GIC

A Process for Evaluating the Degree of Susceptibility of a fleet of Power Transformers to Effects of GIC 1 A Process for Evaluating the Degree of Susceptibility of a fleet of Power Transformers to Effects of GIC Ramsis Girgis, Kiran Vedante, and Gary Burden ABB Power Transformers Abstract: There has been

More information

Screening Criterion for Transformer Thermal Impact Assessment Summary Justification Figure 1 Figure 1

Screening Criterion for Transformer Thermal Impact Assessment Summary Justification Figure 1 Figure 1 Screening Criterion for Transformer Thermal Impact Assessment Project 2013-03 (Geomagnetic Disturbance Mitigation) TPL-007-1 Transmission System Planned Performance for Geomagnetic Disturbance Events Summary

More information

Grounding Resistance

Grounding Resistance Grounding Resistance Substation grounding resistance is the resistance in ohms between the substation neutral and earth ground (zeropotential reference) An actual fall of potential test is the best way

More information

TPL Project Geomagnetic Disturbance Mitigation. Technical Conference July 17, 2014

TPL Project Geomagnetic Disturbance Mitigation. Technical Conference July 17, 2014 TPL-007-1 Project 2013-03 Geomagnetic Disturbance Mitigation Technical Conference July 17, 2014 Administrative Meeting Space Safety Information Presentations available on the project page: http://www.nerc.com/pa/stand/pages/geomagnetic-disturbance-

More information

Screening Criterion for Transformer Thermal Impact Assessment Summary Justification Figure 1 Figure 1

Screening Criterion for Transformer Thermal Impact Assessment Summary Justification Figure 1 Figure 1 Screening Criterion for Transformer Thermal Impact Assessment Project 213-3 (Geomagnetic Disturbance Mitigation) TPL-7-1 Transmission System Planned Performance for Geomagnetic Disturbance vents Summary

More information

IEEE PES/IAS Joint Chapter July Technical Presentation Meeting Basics of solar phenomena & How transformers react and handle events

IEEE PES/IAS Joint Chapter July Technical Presentation Meeting Basics of solar phenomena & How transformers react and handle events Topic and abstract Geomagnetic disturbances Events associated with GMD have been known and studied in power systems since the 1960 s. Early events pre dating the AC power have been recorded to the 1850

More information

Transformer Technology Seminar GIC Capability of Power Transformers

Transformer Technology Seminar GIC Capability of Power Transformers Pomona CA, May 24-25, 2016 Transformer Technology Seminar GIC Capability of Power Transformers Siemens AG Transformers siemens.com/answers Geo-magnetic Induced Current GIC resistant Transformers page 2

More information

Power Grid Sensitivity Analysis of Geomagnetically Induced Currents

Power Grid Sensitivity Analysis of Geomagnetically Induced Currents IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 28, NO. 4, NOVEMBER 2013 4821 Power Grid Sensitivity Analysis of Geomagnetically Induced Currents Thomas J. Overbye, Fellow, IEEE, Komal S. Shetye, Member, IEEE,

More information

Operational Experiences of an HV Transformer Neutral Blocking Device

Operational Experiences of an HV Transformer Neutral Blocking Device MIPSYCON NOVEMBER 7, 2017 Operational Experiences of an HV Transformer Neutral Blocking Device Fred R. Faxvog, Emprimus Michael B. Marz, American Transmission Co. SolidGround GIC Neutral Blocker Fully

More information

DIRECT CURRENT COMPENSATION FIELD EXPERIENCE UNDER SERVICE CONDITIONS

DIRECT CURRENT COMPENSATION FIELD EXPERIENCE UNDER SERVICE CONDITIONS Journal of Energy VOLUME 63 2014 journal homepage: http://journalofenergy.com/ Helfried Passath Siemens AG Österreich Transformers Weiz helfried.passath@siemens.com Peter Hamberger Siemens AG Österreich

More information

SolidGround TM grid stability and harmonics mitigation system Geomagnetic Storm Induced Current (GIC) and Electromagnetic Pulse (EMP) protection

SolidGround TM grid stability and harmonics mitigation system Geomagnetic Storm Induced Current (GIC) and Electromagnetic Pulse (EMP) protection SolidGround TM grid stability and harmonics mitigation system Geomagnetic Storm Induced Current (GIC) and Electromagnetic Pulse (EMP) protection SolidGround TM GIC grid stability and harmonics mitigation

More information

concerning the risks to the electric power grid from geomagnetic storms,

concerning the risks to the electric power grid from geomagnetic storms, Description of document: Requested date: Released date: Posted date: Source of document: Idaho Public Utilities Commission (PUC) records concerning the risks to the electric power grid from geomagnetic

More information

Geomagnetic Disturbance Planning Guide

Geomagnetic Disturbance Planning Guide Geomagnetic Disturbance Planning Guide December 2013 1 of 20 3353 Peachtree Road NE Suite 600, North Tower Atlanta, GA 30326 Table of Contents Table of Contents... ii Preface... iii Chapter 1 Introduction...

More information

Effects of GIC on Power Transformers and Power Systems

Effects of GIC on Power Transformers and Power Systems Effects of GIC on Power Transformers and Power Systems Prepared by Dr. Ramsis Girgis and Kiran Vedante (USA) in the name of CIGRE SC A2 Background There has been some misconception in the electric power

More information

Model, Monitor & Mitigate Geomagnetically Induced Currents

Model, Monitor & Mitigate Geomagnetically Induced Currents Model, Monitor & Mitigate Geomagnetically Induced Currents Jeff Fleeman, American Electric Power CIGRE Grid of the Future Boston, MA October 22, 2013 CWG/9416P Page 1 Solar Storm Impacts Coronal mass ejections

More information

High-Level Harmonic Distortion During Geomagnetic Disturbances - a Hidden Threat to Grid Security

High-Level Harmonic Distortion During Geomagnetic Disturbances - a Hidden Threat to Grid Security 21, rue d Artois, F-75008 PARIS CIGRE US National Committee http : //www.cigre.org 2014 Grid of the Future Symposium High-Level Harmonic Distortion During Geomagnetic Disturbances - a Hidden Threat to

More information

Study of Power Transformer Abnormalities and IT Applications in Power Systems

Study of Power Transformer Abnormalities and IT Applications in Power Systems Study of Power Transformer Abnormalities and IT Applications in Power Systems Xuzhu Dong Dissertation submitted to the Faculty of the Virginia Polytechnic Institute and State University In partial fulfillment

More information

PowerWorld Simulator GIC

PowerWorld Simulator GIC Tom Overbye PowerWorld Client Conference February 23, 2016 2001 South First Street Champaign, Illinois 61820 +1 (217) 384.6330 support@powerworld.com http://www.powerworld.com Geomagnetic Disturbances

More information

Application Guide. Computing Geomagnetically-Induced Current in the Bulk-Power System. December 2013

Application Guide. Computing Geomagnetically-Induced Current in the Bulk-Power System. December 2013 Application Guide Computing Geomagnetically-Induced Current in the Bulk-Power System December 2013 1 3353 Peachtree Road NE Suite 600, North Tower Atlanta, GA 30326 Table of Contents Table of Contents...

More information

Grid Impact of Neutral Blocking for GIC Protection:

Grid Impact of Neutral Blocking for GIC Protection: Report submitted to EMPRIMUS - Critical Infrastructure Protection Grid Impact of Neutral Blocking for GIC Protection: Impact of neutral grounding capacitors on network resonance Prepared By: Athula Rajapakse

More information

Investigation of Geomagnetic Induced Current Effects on Power Transformer

Investigation of Geomagnetic Induced Current Effects on Power Transformer International Research Journal of Engineering and Technology (IRJET) e-issn: 2395-56 Investigation of Geomagnetic Induced Current Effects on Power Transformer Roshni.R.Jethani 1, Dr.Harikumar Naidu 2,

More information

MHD-EMP (E3) Assessment of the US Power Grid GIC and Transformer Thermal Assessment

MHD-EMP (E3) Assessment of the US Power Grid GIC and Transformer Thermal Assessment MHD-EMP (E3) Assessment of the US Power Grid GIC and Transformer Thermal Assessment NERC Joint OC-PC Webinar July 25, 2017 Randy Horton, Ph.D., P.E. Senior Program Manager High-altitude Electromagnetic

More information

GMD Impacts on Generators

GMD Impacts on Generators Walling Energy Systems Consulting, LLC GMD Impacts on Generators Reigh Walling 1 CME interacts with earth magnetic field Large solar flare - Coronal Mass Ejection (CME) Protons and electrons in solar wind

More information

Magnetohydrodynamic Electromagnetic Pulse Assessment of the Continental U.S. Electric Grid

Magnetohydrodynamic Electromagnetic Pulse Assessment of the Continental U.S. Electric Grid Magnetohydrodynamic Electromagnetic Pulse Assessment of the Continental U.S. Electric Grid Geomagnetically Induced Current and Transformer Thermal Analysis 3002009001 Magnetohydrodynamic Electromagnetic

More information

A Novel Method to Analyse the Effects of Geomagnetic Induced Current on Transformer

A Novel Method to Analyse the Effects of Geomagnetic Induced Current on Transformer IJIRST International Journal for Innovative Research in Science & Technology Volume 3 Issue 07 December 2016 ISSN (online): 2349-6010 A Novel Method to Analyse the Effects of Geomagnetic Induced Current

More information

FINNISH EXPERIENCES ON GRID EFFECTS OF GIC'S

FINNISH EXPERIENCES ON GRID EFFECTS OF GIC'S FINNISH EXPERIENCES ON GRID EFFECTS OF GIC'S ESA-SPACE WEATHER WORKSHOP The Netherlands 17. November, 2005 by J. Elovaara 1 Jarmo Elovaara Oct. 25, 2005 Content: 1. About the potential effects of GIC's

More information

Document C-29. Procedures for System Modeling: Data Requirements & Facility Ratings. January 5 th, 2016 TFSS Revisions Clean Open Process Posting

Document C-29. Procedures for System Modeling: Data Requirements & Facility Ratings. January 5 th, 2016 TFSS Revisions Clean Open Process Posting Document C-29 Procedures for System Modeling: January 5 th, 2016 TFSS Revisions Clean Open Process Posting Prepared by the SS-37 Working Group on Base Case Development for the Task Force on System Studies.

More information

GIC Neutral Blocking System Prototype to Production

GIC Neutral Blocking System Prototype to Production IEEE Meeting in Augusta, Maine GIC Neutral Blocking System Prototype to Production July 22, 2015 SolidGround TM Installed in Wisconsin Dr. Arnold Vitols, ABB Sr. Scientist and Dr. Fred Faxvog, Sr. Research

More information

GIC Distribution. Carlos David Fernández Barroso. Division of Industrial Electrical Engineering and Automation Faculty of Engineering, Lund University

GIC Distribution. Carlos David Fernández Barroso. Division of Industrial Electrical Engineering and Automation Faculty of Engineering, Lund University CODEN:LUTEDX/(TEIE-5328)/1-062/(2014) GIC Distribution Carlos David Fernández Barroso Division of Industrial Electrical Engineering and Automation Faculty of Engineering, Lund University Table of contents

More information

100-year GIC event scenarios. Antti Pulkkinen and Chigomezyo Ngwira The Catholic University of America & NASA Goddard Space Flight Center

100-year GIC event scenarios. Antti Pulkkinen and Chigomezyo Ngwira The Catholic University of America & NASA Goddard Space Flight Center 100-year GIC event scenarios Antti Pulkkinen and Chigomezyo Ngwira The Catholic University of America & NASA Goddard Space Flight Center 1 Contents Objectives. Approach. Identification of four key factors

More information

Comparison of methods for modelling geomagnetically induced currents

Comparison of methods for modelling geomagnetically induced currents Ann. Geophys., 32, 1177 1187, 2014 doi:10.5194/angeo-32-1177-2014 Author(s) 2014. CC Attribution 3.0 License. Comparison of methods for modelling geomagnetically induced currents D. H. Boteler 1 and R..

More information

DISTURBANCES IN THE SOUTHERN AFRICAN POWER NETWORK DUE TO GEOMAGNETICALLY INDUCED CURRENTS

DISTURBANCES IN THE SOUTHERN AFRICAN POWER NETWORK DUE TO GEOMAGNETICALLY INDUCED CURRENTS Cigré Session, Paris, Paper 36-26 August 22 DISTURBANCES IN THE SOUTHERN AFRICAN POWER NETWORK DUE TO GEOMAGNETICALLY INDUCED CURRENTS J. Koen *, C.T. Gaunt University of Cape Town, South Africa 1. INTRODUCTION

More information

Impact of Solar Storms on the Swiss Transmission Network

Impact of Solar Storms on the Swiss Transmission Network Impact of Solar Storms on the Swiss Transmission Network Research Center for Energy Networks - ETH Zurich Giovanni Beccuti Impact of Solar Storms on the Swiss Transmission Network 1/25 Contents 1 Introduction

More information

Impact of transformer saturation from GIC on power system voltage regulation

Impact of transformer saturation from GIC on power system voltage regulation Impact of transformer saturation from GIC on power system voltage regulation L. Gérin-Lajoie, S. Guillon, J. Mahseredjian, O. Saad Abstract - Geomagnetically induced currents (GICs) affect power systems

More information

Low-Frequency Protection Concepts for the Electric Power Grid: Geomagnetically Induced Current (GIC) and E3 HEMP Mitigation

Low-Frequency Protection Concepts for the Electric Power Grid: Geomagnetically Induced Current (GIC) and E3 HEMP Mitigation Meta-R-322 Low-Frequency Protection Concepts for the Electric Power Grid: Geomagnetically Induced Current (GIC) and E3 HEMP Mitigation John Kappenman Metatech Corporation 358 S. Fairview Ave., Suite E

More information

Southern Company Interconnection Requirements for Inverter-Based Generation

Southern Company Interconnection Requirements for Inverter-Based Generation Southern Company Interconnection Requirements for Inverter-Based Generation September 19, 2016 Page 1 of 16 All inverter-based generation connected to Southern Companies transmission system (Point of Interconnection

More information

PRC Generator Relay Loadability. Guidelines and Technical Basis Draft 4: (June 10, 2013) Page 1 of 75

PRC Generator Relay Loadability. Guidelines and Technical Basis Draft 4: (June 10, 2013) Page 1 of 75 PRC-025-1 Introduction The document, Power Plant and Transmission System Protection Coordination, published by the NERC System Protection and Control Subcommittee (SPCS) provides extensive general discussion

More information

Space Weather Impact on the Scandinavian Interconnected Power Transmission System

Space Weather Impact on the Scandinavian Interconnected Power Transmission System Space Weather Impact on the Scandinavian Interconnected Power Transmission System Roberta Piccinelli and Elisabeth Krausmann 2015 Report EUR 27571 EN European Commission Joint Research Centre Institute

More information

1200 MW Fault Induced Solar Photovoltaic Resource Interruption Disturbance Report

1200 MW Fault Induced Solar Photovoltaic Resource Interruption Disturbance Report 1200 MW Fault Induced Solar Photovoltaic Resource Interruption Disturbance Report Rich Bauer Associate Director Reliability Risk Management / Event Analysis Mid C Seminar July 19, 2017 Western Interconnection

More information

Supplemental Geomagnetic Disturbance Event Description

Supplemental Geomagnetic Disturbance Event Description Supplemental Geomagnetic Disturbance Event Description Project 2013-03 GMD Mitigation JuneOctober 2017 NERC Report Title Report Date I Table of Contents Preface... iii Introduction... iv Background...

More information

Course ELEC Introduction to electric power and energy systems. Additional exercises with answers December reactive power compensation

Course ELEC Introduction to electric power and energy systems. Additional exercises with answers December reactive power compensation Course ELEC0014 - Introduction to electric power and energy systems Additional exercises with answers December 2017 Exercise A1 Consider the system represented in the figure below. The four transmission

More information

PRC Generator Relay Loadability. Guidelines and Technical Basis Draft 5: (August 2, 2013) Page 1 of 76

PRC Generator Relay Loadability. Guidelines and Technical Basis Draft 5: (August 2, 2013) Page 1 of 76 PRC-025-1 Introduction The document, Power Plant and Transmission System Protection Coordination, published by the NERC System Protection and Control Subcommittee (SPCS) provides extensive general discussion

More information

Hydro One GMD Preparedness Plan for Cycle 24

Hydro One GMD Preparedness Plan for Cycle 24 Hydro One GMD Preparedness Plan for Cycle 24 Presented to: Critical Infrastructure Protection and Space Weather Workshop March 28-29, 2012, Ottawa, Ontario, Canada L. Marti Hydro One Networks Inc. 483

More information

SIEMENS PSS SINCAL Platform 10.5 Update 6

SIEMENS PSS SINCAL Platform 10.5 Update 6 General Information This update can exclusively be used for the PSS SINCAL Platform 10.5. It can't be used with other product versions! Procedure for Installation with Update Wizard Close all running PSS

More information

Voltage Source Converter Modelling

Voltage Source Converter Modelling Voltage Source Converter Modelling Introduction The AC/DC converters in Ipsa represent either voltage source converters (VSC) or line commutated converters (LCC). A single converter component is used to

More information

1

1 Guidelines and Technical Basis Introduction The document, Power Plant and Transmission System Protection Coordination, published by the NERC System Protection and Control Subcommittee (SPCS) provides extensive

More information

NERC Protection Coordination Webinar Series June 16, Phil Tatro Jon Gardell

NERC Protection Coordination Webinar Series June 16, Phil Tatro Jon Gardell Power Plant and Transmission System Protection Coordination Phase Distance (21) and Voltage-Controlled or Voltage-Restrained Overcurrent Protection (51V) NERC Protection Coordination Webinar Series June

More information

ITC Holdings Planning Criteria Below 100 kv. Category: Planning. Eff. Date/Rev. # 12/09/

ITC Holdings Planning Criteria Below 100 kv. Category: Planning. Eff. Date/Rev. # 12/09/ ITC Holdings Planning Criteria Below 100 kv * Category: Planning Type: Policy Eff. Date/Rev. # 12/09/2015 000 Contents 1. Goal... 2 2. Steady State Voltage & Thermal Loading Criteria... 2 2.1. System Loading...

More information

WECC Data Preparation Manual

WECC Data Preparation Manual WECC Data Preparation Manual for Interconnection-wide Cases Applicable to the 2017 Base Case Compilation Schedule System Review Work Group Technical Studies Subcommittee 155 North 400 West, Suite 200 Salt

More information

North Europe power transmission system vulnerability during extreme space weather

North Europe power transmission system vulnerability during extreme space weather J. Space Weather Space Clim. 2018, 8, A03 R. Piccinelli and E. Krausmann, Published by EDP Sciences 2017 https://doi.org/10.1051/swsc/2017033 Available online at: www.swsc-journal.org RESEARCH ARTICLE

More information

ANALYSIS OF THE MITIGATION METHODS OF GEOMAGNETICALLY INDUCED CURRENT

ANALYSIS OF THE MITIGATION METHODS OF GEOMAGNETICALLY INDUCED CURRENT ANALYSIS OF THE MITIGATION METHODS OF GEOMAGNETICALLY INDUCED CURRENT AnkitNimje 1, Nikhil Bhagadkar 2, Shubham Marsinge 3, Prof. C.S.Hiwarkar 4 1 Ankit Nimje, Electrical Department, K.D.K.C.E, Maharashtra,

More information

POWER TRANSFORMERS: Saturation Compensation Modeling, Simulation, and Experiments

POWER TRANSFORMERS: Saturation Compensation Modeling, Simulation, and Experiments POWER TRANSFORMERS: Saturation Compensation Modeling, Simulation, and Experiments John Thomas, Dr. David Cope Engineering Matters, Inc. 375 Elliot Street, Suite 130K Newton, MA 02464 www.engineeringmatters.com

More information

Jason Harchick, P.E. Sr. Manager, System Planning and Protection Ryan Young Manager, Substation Engineering

Jason Harchick, P.E. Sr. Manager, System Planning and Protection Ryan Young Manager, Substation Engineering DLC s Brady IIB Project Jason Harchick, P.E. Sr. Manager, System Planning and Protection Ryan Young Manager, Substation Engineering Project Need In 2007, PJM and Duquesne Light Company (DLC) transmission

More information

Improving High Voltage Power System Performance. Using Arc Suppression Coils

Improving High Voltage Power System Performance. Using Arc Suppression Coils Improving High Voltage Power System Performance Using Arc Suppression Coils by Robert Thomas Burgess B Com MIEAust CPEng RPEQ A Dissertation Submitted in Fulfilment of the Requirements for the degree of

More information

Benchmark Geomagnetic Disturbance Event Description

Benchmark Geomagnetic Disturbance Event Description Benchmark Geomagnetic Disturbance Event Description Project 2013-03 GMD Mitigation Standard Drafting Team May 12, 2016 NERC Report Title Report Date 1 of 23 Table of Contents Preface...3 Introduction...4

More information

Comparison Analysis of the Effects of Small Resistor and Capacitor on Mitigation GIC in Power Grid

Comparison Analysis of the Effects of Small Resistor and Capacitor on Mitigation GIC in Power Grid Comparison Analysis of the Effects of Small Resistor and Capacitor on itigation GIC in Power Grid Yang peihong; Liu lianguang State Key Laboratory of Alternate Electrical Power System with Renewable Energy

More information

Effect of Geomagnetically Induced Currents on Protection Systems

Effect of Geomagnetically Induced Currents on Protection Systems Effect of Geomagnetically Induced Currents on Protection Systems Sture Lindahl 2004-01-23 Industrial Electrical Engineering and Automation sture.lindahl@iea.lth.se Effect of GIC on Protective Relays Activity

More information

Case Identification Data. Bus Data. Load Data. Fixed Bus Shunt Data. Generator Data. Non-Transformer Branch Data. Transformer Data

Case Identification Data. Bus Data. Load Data. Fixed Bus Shunt Data. Generator Data. Non-Transformer Branch Data. Transformer Data Case Identification Data Bus Data Load Data Fixed Bus Shunt Data Generator Data Non-Transformer Branch Data Transformer Data Area Interchange Data Two-Terminal DC Transmission Line Data Voltage Source

More information

A Comprehensive Approach for Sub-Synchronous Resonance Screening Analysis Using Frequency scanning Technique

A Comprehensive Approach for Sub-Synchronous Resonance Screening Analysis Using Frequency scanning Technique A Comprehensive Approach Sub-Synchronous Resonance Screening Analysis Using Frequency scanning Technique Mahmoud Elfayoumy 1, Member, IEEE, and Carlos Grande Moran 2, Senior Member, IEEE Abstract: The

More information

Transmission Interconnection Requirements for Inverter-Based Generation

Transmission Interconnection Requirements for Inverter-Based Generation Transmission Requirements for Inverter-Based Generation June 25, 2018 Page 1 Overview: Every generator interconnecting to the transmission system must adhere to all applicable Federal and State jurisdictional

More information

Extensive LV cable network. Figure 1: Simplified SLD of the transformer and associated LV network

Extensive LV cable network. Figure 1: Simplified SLD of the transformer and associated LV network Copyright 2017 ABB. All rights reserved. 1. Introduction Many distribution networks around the world have limited earth-fault current by a resistor located in the LV winding neutral point of for example

More information

Power transformers. Shunt reactors Proven history for future success

Power transformers. Shunt reactors Proven history for future success Power transformers Shunt reactors Proven history for future success Shunt reactors an investment for today and for the future 2 Shunt reactors Improving power quality and reducing transmission costs Shunt

More information

MidAmerican Energy Company 100 kv and Above Facility Ratings Methodology

MidAmerican Energy Company 100 kv and Above Facility Ratings Methodology MidAmerican Energy Company 100 kv and Above Facility Ratings Methodology For NERC Standard FAC-008 and FAC-009 Issued by: Dan Custer Reviewed by: Tom Mielnik Version 2.7 1 1.0 Scope: This document provides

More information

Relay Protection of EHV Shunt Reactors Based on the Traveling Wave Principle

Relay Protection of EHV Shunt Reactors Based on the Traveling Wave Principle Relay Protection of EHV Shunt Reactors Based on the Traveling Wave Principle Jules Esztergalyos, Senior Member, IEEE Abstract--The measuring technique described in this paper is based on Electro Magnetic

More information

C1-207 TRANSMISSION CAPACITY INCREASE BY RETURNING POWER SYSTEM STABILIZERS

C1-207 TRANSMISSION CAPACITY INCREASE BY RETURNING POWER SYSTEM STABILIZERS 21, rue d'artois, F-75008 Paris http://www.cigre.org C1-207 Session 2004 CIGRÉ TRANSMISSION CAPACITY INCREASE BY RETURNING POWER SYSTEM STABILIZERS STEFAN ELENIUS* JUSSI JYRINSALO SIMO JOKI-KORPELA HELSINKI

More information

N. TEST TEST DESCRIPTION

N. TEST TEST DESCRIPTION Multi function system for testing substation equipment such as: current, voltage and power transformers, over-current protection relays, energy meters and transducers Primary injection testing capabilities

More information

Disturbances. Their Impact on the Power Grid. By the IEEE Power & Energy Society Technical Council Task Force on

Disturbances. Their Impact on the Power Grid. By the IEEE Power & Energy Society Technical Council Task Force on By the IEEE Power & Energy Society Technical Council Task Force on Geomagnetic Disturbances nasa/sdo/aia Geomagnetic Disturbances Their Impact on the Power Grid Digital Object Identifier 1.119/MPE.213.2256651

More information

Making VSC-HVDC Control Robust to Geomagnetically Induced Current

Making VSC-HVDC Control Robust to Geomagnetically Induced Current Making VSC-HVDC Control Robust to Geomagnetically Induced Current Siyu Gao Elia Grid International, Brussels, Belgium Mike Barnes University of Manchester, Manchester, UK Mike.barnes@manchester.ac.uk Abstract

More information

2012 Grid of the Future Symposium. Geomagnetic Disturbance Impacts and AEP GIC/Harmonics Monitoring System

2012 Grid of the Future Symposium. Geomagnetic Disturbance Impacts and AEP GIC/Harmonics Monitoring System 21, rue d Artois, F-75008 PARIS CIGRE US National Committee http : //www.cigre.org 2012 Grid of the Future Symposium Geomagnetic Disturbance Impacts and AEP GIC/Harmonics Monitoring System Q. QIU, J. FLEEMAN

More information

ISSN: X Impact factor: (Volume 3, Issue 6) Available online at Modeling and Analysis of Transformer

ISSN: X Impact factor: (Volume 3, Issue 6) Available online at   Modeling and Analysis of Transformer ISSN: 2454-132X Impact factor: 4.295 (Volume 3, Issue 6) Available online at www.ijariit.com Modeling and Analysis of Transformer Divyapradeepa.T Department of Electrical and Electronics, Rajalakshmi Engineering

More information

Comprehensive Study on Magnetization Current Harmonics of Power Transformers due to GICs

Comprehensive Study on Magnetization Current Harmonics of Power Transformers due to GICs Comprehensive Study on Magnetization Current Harmonics of Power Transformers due to GICs S. A. Mousavi, C. Carrander, G. Engdahl Abstract-- This paper studies the effect of DC magnetization of power transformers

More information

Prepared By Pierre Archambault, PEng Power Survey International Inc Trans Canada Hwy. St-Laurent, QC H4S 1S4 CANADA

Prepared By Pierre Archambault, PEng Power Survey International Inc Trans Canada Hwy. St-Laurent, QC H4S 1S4 CANADA ATCO Electric Hangingstone Substation HARMONIC STUDY Prepared By Pierre Archambault, PEng Power Survey International Inc. 8025 Trans Canada Hwy. St-Laurent, QC H4S 1S4 CANADA Rev.: 6 March 2007 TABLE OF

More information

N. TEST TEST DESCRIPTION

N. TEST TEST DESCRIPTION Multi function system for testing substation equipment such as: current, voltage and power transformers, all type of protection relays, energy meters and transducers Primary injection testing capabilities

More information