International Journal of Computer Engineering and Applications, Volume XII, Special Issue, March 18, ISSN

Size: px
Start display at page:

Download "International Journal of Computer Engineering and Applications, Volume XII, Special Issue, March 18, ISSN"

Transcription

1 SMART SOLUTION FOR LOW FREQUENCY PROBLEM IN SMART GRIDS Avani Pujara Abstract-Supply and load mismatch creates low frequency problems. Low frequency leads to unscheduled interchange which causes penalty to be paid by state utility to central utility. Different techniques have been proposed so far by various authors for controlling frequency under smart grid environment. This paper proposes low frequency problem solving based on sampling technique and RMS value algorithm for smart transmission system. Algorithm is developed for ABT (availability based tariff) meter and load prioritization is done for smart transmission system. Availability based tariff has three components in this methodology third component is discussed as it is frequency liked. Real time data is used to validate the proposed concept. Keywords: ABT, Unscheduled Interchange, Frequency linked component, Smart Grid, load prioritization, Sampling, RMS value, Real time, load mismatch, transmission system Dr. S.M. Bakre 1. INTRODUCTION Smart grid makes future power system abundant, clear, efficient and reliable. However, it may suffer from some challenges and problems. The effective frequency regulation is still a problem. Frequency instability leads to massive and cascade blackout in the power system. Restoration after blackout takes time. [1] Dr. V. Muralidhara v.muralidhara1952@gmail.com Proposed method provides smart solution based on Unscheduled interchange pricing and load prioritization using RMS value algorithm and sampling techniques. As a part of revolution in metering era Advanced metering infrastructure is implemented, ABT metering is part of advanced metering infrastructure is three-part tariff Third component of ABT is frequency based. Frequency control maintains the frequency of a power network at its nominal value when demand or supply fluctuates [2] frequency regulation can be achieved by two ways 1) by some regulatory approach like using under frequency relay or 2) by market based approach like frequency linked pricing. Load prioritization is nothing but shutting off by providing the feature of different range of frequencies in meter itself will control frequency back to range and mismatch of supply and demand can be overcome [3] Instead of getting schedule of dispatch of drawl next day and penalty charges details provided to state utilities the control circuit of ABT will control UI [4] Smart metering is the most important mechanism used in the SG for obtaining information from end users devices and appliances, while also controlling the behavior of the devices. Automatic metering infrastructure (AMI) systems. [5] AMI allows faster outage detection and restoration of service. It also provides customer with greater control over their electricity usage. AMI contains many devices like data management center master station communication center, intelligent terminal and smart meter. Among them smart meter is the key component of the advance metering Avani Pujara, Dr. S.M. Bakre, Dr. V. Muralidhara 1

2 SMART SOLUTION FOR LOW FREQUENCY PROBLEM IN SMART GRIDS infrastructure. [6] ABT is one of the component of AMI. following diagram shows ABT meter Sampling algorithm Fig. 1. Proposed ABT meter ABT meters and multifunction meters data is continuously monitored by ABT server located at central monitoring station from web server of LDC applicable charges for UI and mismatch between actual and scheduled is sent to state utility. [3] 1.1. RMS value algorithm Fig. 2 flow chart 1 Fig. 4 Total harmonic distortion flow chart 2 Fig 3 THD measurement [7] Total harmonic distortion value says how much distortion in fundamental values of voltage and current due to harmonics. Harmonic frequencies are component in a signal which are multiple of main signal. THD= VRMS without fundamental/vrms fundamental. Sampling rate and number of samples can give frequency, in meter three different range of frequencies are set to check load cut off as per priority. Proposed ABT meter itself is smart enough to shut down load if frequency goes beyond range 49.5Hz to 50.5 Hz for Avani Pujara, Dr. S.M. Bakre, Dr. V. Muralidhara 2

3 Indian power transmission system. There are at least two cases where the frequency determination from under sampled waveforms is useful. The first case is when only under sampled data is available. The second case is when it is desired to have as large detectable frequencies as possible given certain sampling rates. [7] Numerous studies have estimated the fundamental frequency of asynchronously sampled signals, and several interesting results have been published in recent decades [ 8]. Fig 4 shows the flow chart for frequency estimation procedure using total harmonic distortion value. Smart grid environment gives smart way of controlling frequency The smart grid is expected to revolutionize existing electrical grid by allowing two-way communications to improve efficiency, reliability, economics, and sustainability of the generation, transmission, and distribution of electrical power [9]. Unscheduled interchange charges are frequency dependent charges. It can be minimized by controlling frequency [10] Details: 66 KV Jiav substation Surat Total consumers on feeder :207 Total load :215 Amp Industrial load HP Commercial: MW Domestic load :4.27 MW Date :28/06/2017 Lowest frequency happened at 3:00 am Hz. As per proposed circuit of ABT meter the load must get shutoff as per priority. Domestic load is least priority load so it should get shutoff. In charge engineer of that jurisdiction will get message on smart phone from ABT meter itself and load will be shutoff automatically at the same time Frequency data for 24hrs: Tirupati feeder Table 1 Test feeder data. Sr No Time Frequency in HZ 1 1: : : : : : : : : : : : : : : : : : : : : : : : Fig 5 Frequency variation for test feeder Once 4.27 MW domestic load on feeder gets shut off frequency will come back to normal range and again at 4:00 am its 50 HZ. Load will be restored back CONCLUSION: Using of GSM technology and advanced metering infrastructure low frequency problem can be solved. proposed design of ABT meter where frequency range is provided in meter itself and load gets shut off as per priority is effective way of solving frequency regulation issues under smart grid environment. Table 1 shows frequency data collected for test feeder to understand 24 hours variation of frequency. Avani Pujara, Dr. S.M. Bakre, Dr. V. Muralidhara 3

4 SMART SOLUTION FOR LOW FREQUENCY PROBLEM IN SMART GRIDS 2. APPENDIX Source code-i // Algorithm -Sampling V & I Waves import java. util. Scanner; public class Main {public static void main (String [] args) {double I1, I3, I5. I7, I9 Scanner s=new Scanner(System.in); System.out.println("Read from port"); System, out. println ("Fundamental il ); i1=s.nextdouble(); System.out.println("Read i3, i5, i7 & i9"); i3=s.nextdouble() i5=s.nextdouble() i7=s. nextdouble ;i9=s.nextdouble() System.out.println('lih="+ih); ithd=ih/il System.out.println( l Ithd='l+ithd); double VI, V3, V5, V7, V9; System.out.println("Read voltages") ; v1=s.nextdouble() V3=s.nextDouble() v5=s.nextdouble() V7=s.nextDouble() v9=s.nextdouble() vh=math. sqrt((v3*v3)+(v5*v5)+( v7*v7)+( v9*v9)) System.out.println( vthd= +vthd):}} Source code II // Sampling of sinusoidal waveforms //Computation of various parameters import java.util. Random; publicclassmain( public static void main(string[] args) Random random=newrandomly: double a[j=new double[3000]: double b[]=new double[3000], double sum=0, sum1=0,sum2=0: for(int ( a[ij=random.nextdouble(): sum sum+la[i] a[i]), b[i]=random. nextdouble(): sum1=sum1+b[i] *b[i] sum2=sum2+( a[i] b[i]):) System.out.printIn("Sampling parameters ): double irms=(math.sqrt (sum))/3000: System.out.println(" lrms="+irms),double vrms=(math.sqrt/ sum1))/30 f System.out.printIn( Vrms= +vrms);double virms=vrms irms: System.out.printIn( VIrms= +virms); double p sum2/3000: System.out.printIn("Prms=" +p): System.out.println("pf="+p/virms):]) 3. ACKNOWLEDGMENT The Authors are grateful to Jain University, Bangalore for providing required research facilities and encouragement. The author gratefully acknowledges DGVCL Surat India for all the help with data of frequency. REFERENCES [1] Avani Pujara, Velhal Geeta Vilas, S.M. Bakre, V. Muralidhara Smart Way of Controlling Frequency Linked Component of Availability Based Tariff IEEMA journal volume 8 Issue no 8 April 2017 p. no ISSN [2] Enrique Mallada, Changhong Zhao, and Steven Low Optimal load-side control for frequency regulation in smart grids, arxiv: v3 [math. OC] 17 Nov 2015 [3] Velhal, G. Pujara, A.,Bakre, S.M. ; Muralidhara, V. Implementation of metering practices in Smart Grid,ICSTM-2015 IEEE Xplore. [4] Pujara, A., Velhal G Bakre, S.M. ; Muralidhara, V. Communication Feasibility Study for Smart Grid with Advanced metering Infrastructure IJEEER ISSN: x(E): X Vol.5, Issue6, Dec 2015 [5] Velhal, G. Pujara, A.,Bakre, S.M. ; Muralidhara, V.On progress of communication infrastructure for fault location and ABT metering,ieee 2015 [6] [7] Xiang-GenXia An Efficient Frequency- Determination Algorithm from Multiple Under Sampled Waveforms IEEE transactions on signal processing letters, vol. 7, no. 2, February 2000 [8] Joon-Hyuck Moon, Sang-Hee Kang, Dong-Hun Ryu, Jae-Lim Chang and Soon-Ryul Nam, A Two-Stage Algorithm to Estimate the Fundamental Frequency of Asynchronously Sampled Signals in Power Systems, energies ISSN [9] AtaulBari, JinJiang, WalidSaad,andArunitaJaekel Challenges in the Smart Grid Applications: An Overview Volume 2014, Article ID , InternationalJournalofDistributedSensorNetworks [10] K.V.V. Reddy, Ashwani Kumar, and Saurabh Chanana, Frequency linked pricing as an Instrument for frequency regulation market and ABT mechanism, /06/ 2006 IEEE. Avani Pujara, Dr. S.M. Bakre, Dr. V. Muralidhara 4

5 Avani Pujara has received her BE Electrical Engineering degree from Saurastra University. She earned her ME power system from Pune University. Her teaching experience is 9 years. She is currently a research scholar at. Her interest revolves around power system stability, smart grid and smart metering. She has published 3 papers in IEEE Xplore,1 paper in Elsevier journal, 5 papers in various international journals and 4 papers in National level conferences as a part of her research work. Dr. Shashikant M. Bakre completed his bachelor s degree in Electrical Engineering from Govt Engineering College Amravati (Nagpur University); followed by master s degree in engineering from COEP (Pune University). He also completed MMS, master s degree in management from Pune University. Later, he completed his doctorate from Bharati Vidyapeeth Deemed University, Pune in the year He is the author of ten books on computer engineering. Some of his books are Computer Fundamentals, Computer Master, Build your own website, OOPS and Core Java, Object Oriented Analysis and Design and Supply Chain Management. He has published about 25 research papers. Dr. V. Muralidhara Obtained B.E. in Electrical Engineering, M.E. in Power Systems from Mysore University and PhD from Kuvempu University. During the years 1975, 1978 and 2012 respectively. He has started his teaching career from PES College of Engineering Mandya during 1976 and served there for 6 years and retired as Prof. and Head of EEE at BIT, Bangalore and served there for 31 years. At present serving the School of Engineering and Technology, as an Associate Director. Published 4 papers in International conferences and one paper in International Journal as a part of the research work. His field of interest is Power Systems and High Voltage Engineering. Avani Pujara, Dr. S.M. Bakre, Dr. V. Muralidhara 5

Measurement tools at heart of Smart Grid need calibration to ensure reliability

Measurement tools at heart of Smart Grid need calibration to ensure reliability Measurement tools at heart of Smart Grid need calibration to ensure reliability Smart grid; PMU calibration position 1 The North American interconnections, or electric transmission grids, operate as a

More information

Simulation with Experimental Measurement of Voltage Total Harmonic Distortion and Harmonic Frequency in Three-Phase Induction Motor fed from Inverter

Simulation with Experimental Measurement of Voltage Total Harmonic Distortion and Harmonic Frequency in Three-Phase Induction Motor fed from Inverter Proceedings of the World Congress on Engineering 217 Vol I WCE 217, July 5-7, 217, London, U.K. Simulation with Experimental Measurement of Voltage Total Harmonic Distortion and Harmonic Frequency in Three-Phase

More information

NOWADAYS, there is much interest in connecting various

NOWADAYS, there is much interest in connecting various IEEE TRANSACTIONS ON SMART GRID, VOL. 4, NO. 1, MARCH 2013 419 Modified Dynamic Phasor Estimation Algorithm for the Transient Signals of Distributed Generators Dong-Gyu Lee, Sang-Hee Kang, and Soon-Ryul

More information

Harmonic distortion Blackouts Under or over voltage Dips (or sags) and surges, Transients.

Harmonic distortion Blackouts Under or over voltage Dips (or sags) and surges, Transients. Power Quality Standards in India Power Quality is a measure of an ideal power supply system. It can be defined as any power problem manifested in voltage, current and frequency deviations that result in

More information

MITIGATION OF VOLTAGE SAG AND SWELL FOR POWER QUALITY IMPROVEMENT USING DISTRIBUTED POWER FLOW CONTROLLER

MITIGATION OF VOLTAGE SAG AND SWELL FOR POWER QUALITY IMPROVEMENT USING DISTRIBUTED POWER FLOW CONTROLLER MITIGATION OF VOLTAGE SAG AND SWELL FOR POWER QUALITY IMPROVEMENT USING DISTRIBUTED POWER FLOW CONTROLLER Sai Lakshmi K Department of Electrical and Electronics engineering, G.Narayanamma Institute of

More information

AUTOMATED WATER METER READING

AUTOMATED WATER METER READING AUTOMATED WATER METER READING Padmini M S(Assistant Professor) 1, Sejal S Kulkarni 2, Shruthi K Bhat 3, Shruti S Uppin 4 Dept. of Computer Science and Engineering,National Institute Of Engineering,Mysore,

More information

[Nayak, 3(2): February, 2014] ISSN: Impact Factor: 1.852

[Nayak, 3(2): February, 2014] ISSN: Impact Factor: 1.852 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY Classification of Transmission Line Faults Using Wavelet Transformer B. Lakshmana Nayak M.TECH(APS), AMIE, Associate Professor,

More information

Manjeet Baniwal 1, U.Venkata Reddy 2, Gaurav Kumar Jha 3

Manjeet Baniwal 1, U.Venkata Reddy 2, Gaurav Kumar Jha 3 Application of to alleviate voltage sag and swell Manjeet Baniwal 1, U.Venkata Reddy 2, Gaurav Kumar Jha 3 123 (Electrical Engineering, AGPCE Nagpur/ RTMNU, INDIA) ABSTRACT : This paper deals with modelling

More information

Smart Grid Where We Are Today?

Smart Grid Where We Are Today? 1 Smart Grid Where We Are Today? Meliha B. Selak, P. Eng. IEEE PES DLP Lecturer melihas@ieee.org 2014 IEEE ISGT Asia, Kuala Lumpur 22 nd May 2014 2 Generation Transmission Distribution Load Power System

More information

Power Quality Basics. Presented by. Scott Peele PE

Power Quality Basics. Presented by. Scott Peele PE Power Quality Basics Presented by Scott Peele PE PQ Basics Terms and Definitions Surge, Sag, Swell, Momentary, etc. Measurements Causes of Events Possible Mitigation PQ Tool Questions Power Quality Measurement

More information

Volume I Issue VI 2012 September-2012 ISSN

Volume I Issue VI 2012 September-2012 ISSN A 24-pulse STATCOM Simulation model to improve voltage sag due to starting of 1 HP Induction-Motor Mr. Ajay Kumar Bansal 1 Mr. Govind Lal Suthar 2 Mr. Rohan Sharma 3 1 Associate Professor, Department of

More information

Frequency Linked Price using Unscheduled Interchange (UI) Signals of Two Area Power System

Frequency Linked Price using Unscheduled Interchange (UI) Signals of Two Area Power System Frequency Linked Price using Unscheduled Interchange (UI) Signals of Two Area Power System Aravind.R Jennathu Beevi.S Jayashree.R PG Student [Power System], Assistant Professor, Professor, Dept. of EEE,

More information

Analysis and modeling of thyristor controlled series capacitor for the reduction of voltage sag Manisha Chadar

Analysis and modeling of thyristor controlled series capacitor for the reduction of voltage sag Manisha Chadar Analysis and modeling of thyristor controlled series capacitor for the reduction of voltage sag Manisha Chadar Electrical Engineering department, Jabalpur Engineering College Jabalpur, India Abstract:

More information

Application of Fuzzy Logic Controller in UPFC to Mitigate THD in Power System

Application of Fuzzy Logic Controller in UPFC to Mitigate THD in Power System International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 9, Issue 8 (January 2014), PP. 25-33 Application of Fuzzy Logic Controller in UPFC

More information

A Power Quality Survey on a 22 kv Electrical Distribution System of a Technical Institution as per Standards

A Power Quality Survey on a 22 kv Electrical Distribution System of a Technical Institution as per Standards Indian Journal of Science and Technology, Vol 9(30), DOI: 10.17485/ijst/2016/v9i30/99034, August 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 A Power Quality Survey on a 22 kv Electrical Distribution

More information

Power Quality Overview

Power Quality Overview Power Quality Overview James Brackett P.E. Colorado Springs Utility, GE, Retired What I will present today Introduction and thank you PQ overview Cause of PQ problems How Smart Grid, DER, VVAR and AMI

More information

Maximum Allowable PV Penetration by Feeder Reconfiguration Considering Harmonic Distortion Limits

Maximum Allowable PV Penetration by Feeder Reconfiguration Considering Harmonic Distortion Limits Maximum Allowable PV Penetration by Feeder Reconfiguration Considering Harmonic Distortion Limits Vemula Mahesh Veera Venkata Prasad #1, R. Madhusudhana Rao *, Mrutyunjay Mohanty #3 #1 M.Tech student,

More information

Accurate Current Measurement Transducer for Relaying Purpose

Accurate Current Measurement Transducer for Relaying Purpose Accurate Current Measurement Transducer for Relaying Purpose Ashish S. Paramane 1, Dr.P.K.Katti 2 Department of Electrical Engineering Dr. Babasaheb Ambedkar Technological University, Lonere, Maharashtra

More information

II. RESEARCH METHODOLOGY

II. RESEARCH METHODOLOGY Comparison of thyristor controlled series capacitor and discrete PWM generator six pulses in the reduction of voltage sag Manisha Chadar Electrical Engineering Department, Jabalpur Engineering College

More information

THD Reduction Using Series Transformer Connection In A STATCOM Within Mosul Ring System

THD Reduction Using Series Transformer Connection In A STATCOM Within Mosul Ring System Al-Nimma: THD reduction using series transformer connection in a STATCOM within THD Reduction Using Series Transformer Connection In A STATCOM Within Mosul Ring System Dhaiya A. Al-Nimma Majed S. Al-Hafid

More information

PHASOR MEASUREMENT UNIT: - A Revolution in Power System

PHASOR MEASUREMENT UNIT: - A Revolution in Power System PHASOR MEASUREMENT UNIT: - A Revolution in Power System Sonal Kumar Singh Electrical engineering, JECRC University, Jaipur -------------------------------------------------------------------------***------------------------------------------------------------------------

More information

Power Quality Study of Electrical Installation in Academic Institute Case Study

Power Quality Study of Electrical Installation in Academic Institute Case Study Power Quality Study of Electrical Installation in Academic Institute Case Study Mr. Mukteshwar N. Patil 1, Prof. Rajesh M. Holmukhe 1#, Mr. Sadashiv Munde 2 1 Department of Electrical Engineering, Bharati

More information

Simulation and Comparison of DVR and DSTATCOM Used For Voltage Sag Mitigation at Distribution Side

Simulation and Comparison of DVR and DSTATCOM Used For Voltage Sag Mitigation at Distribution Side Simulation and Comparison of DVR and DSTATCOM Used For Voltage Sag Mitigation at Distribution Side 1 Jaykant Vishwakarma, 2 Dr. Arvind Kumar Sharma 1 PG Student, High voltage and Power system, Jabalpur

More information

Anti-IslandingStrategyforaPVPowerPlant

Anti-IslandingStrategyforaPVPowerPlant Global Journal of Researches in Engineering: F Electrical and Electronics Engineering Volume 15 Issue 7 Version 1.0 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals

More information

I J C T A, 10(9), 2017, pp International Science Press

I J C T A, 10(9), 2017, pp International Science Press I J C T A, 10(9), 2017, pp. 533-539 International Science Press ISSN: 0974-5572 Substation Monitoring System (SMS) For Remote Power Quality Monitoring and Analysis of Power Distribution Network using Object

More information

Renewable Interconnection Standard & Experimental Tests. Yahia Baghzouz UNLV Las Vegas, NV, USA

Renewable Interconnection Standard & Experimental Tests. Yahia Baghzouz UNLV Las Vegas, NV, USA Renewable Interconnection Standard & Experimental Tests Yahia Baghzouz UNLV Las Vegas, NV, USA Overview IEEE Std 1547 Voltage limitations Frequency limitations Harmonic limitations Expansion of IEEE Std

More information

PQ Audit - The right choice to ensure power system performance. Mr Lalit Kumar Wasan Tata Power- DDL

PQ Audit - The right choice to ensure power system performance. Mr Lalit Kumar Wasan Tata Power- DDL PQ Audit - The right choice to ensure power system performance Mr Lalit Kumar Wasan Tata Power- DDL Outline vpower Quality v Present Challenges v Harmonics & Its Impact on DISCOM v Future Challenges Roof-Top

More information

UNIFIED POWER QUALITY CONDITIONER IN DISTRIBUTION SYSTEM FOR ENHANCING POWER QUALITY

UNIFIED POWER QUALITY CONDITIONER IN DISTRIBUTION SYSTEM FOR ENHANCING POWER QUALITY International Journal of Electrical Engineering & Technology (IJEET) Volume 7, Issue 6, Nov Dec, 2016, pp.55 63, Article ID: IJEET_07_06_005 Available online at http://www.iaeme.com/ijeet/issues.asp?jtype=ijeet&vtype=7&itype=6

More information

Power Quality Analysis: A Study on Off-Line UPS Based System

Power Quality Analysis: A Study on Off-Line UPS Based System Power Quality Analysis: A Study on Off-Line UPS Based System P.K.DHAL Department of Electrical and Electronics Engineering VelTech Dr.RR&Dr.SR Technical University # 42 Avadi- VelTech Road, Chennai-62

More information

INTEGRATION AND OPERATION STRATEGIES FOR INVERTER-INTERFACED DISTRIBUTED GENERATION SYSTEM

INTEGRATION AND OPERATION STRATEGIES FOR INVERTER-INTERFACED DISTRIBUTED GENERATION SYSTEM INTEGRATION AND OPERATION STRATEGIES FOR INVERTER-INTERFACED DISTRIBUTED GENERATION SYSTEM Il-Yop Chung, Won-Wook Jung, Seung-Il Moon, Byung-Moon Han, Jae-Eon Kim, and Joon-Ho Choi School of Electrical

More information

UPGRADING SUBSTATION RELAYS TO DIGITAL RECLOSERS AND THEIR COORDINATION WITH SECTIONALIZERS

UPGRADING SUBSTATION RELAYS TO DIGITAL RECLOSERS AND THEIR COORDINATION WITH SECTIONALIZERS UPGRADING SUBSTATION RELAYS TO DIGITAL RECLOSERS AND THEIR COORDINATION WITH SECTIONALIZERS 1 B. RAMESH, 2 K. P. VITTAL Student Member, IEEE, EEE Department, National Institute of Technology Karnataka,

More information

SIMULATION OF D-STATCOM IN POWER SYSTEM

SIMULATION OF D-STATCOM IN POWER SYSTEM IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) SIMULATION OF D-STATCOM IN POWER SYSTEM Akil Ahemad 1, Sayyad Naimuddin 2 1 (Assistant Prof. Electrical Engineering Dept., Anjuman college

More information

PERFORMANCE OF DISTRIBUTION STATIC COMPENSATOR IN LOW VOLTAGE DISTRIBUTION SYSTEM

PERFORMANCE OF DISTRIBUTION STATIC COMPENSATOR IN LOW VOLTAGE DISTRIBUTION SYSTEM PERFORMANCE OF DISTRIBUTION STATIC COMPENSATOR IN LOW VOLTAGE DISTRIBUTION SYSTEM Bhupali P. Kumbhar 1, Prof. V. V. Khatavkar 2 1 PG Student, Dept. of Electrical Engineering, 2 Asst. Professor, Dept. of

More information

Performance Evaluation of a Cascaded Multilevel Inverter with a Single DC Source using ISCPWM

Performance Evaluation of a Cascaded Multilevel Inverter with a Single DC Source using ISCPWM International Journal of Electrical Engineering. ISSN 0974-2158 Volume 5, Number 1 (2012), pp. 49-60 International Research Publication House http://www.irphouse.com Performance Evaluation of a Cascaded

More information

Auto Selection of Any Available Phase in 3 Phase Supply System

Auto Selection of Any Available Phase in 3 Phase Supply System Auto Selection of Any Available Phase in 3 Phase Supply System Prof. Praful Kumbhare 1, Pramod Donode 2, Mahesh Nimbulkar 3, Harshada Kale 4, Mayur Waghamare 5, Akansha Patil 6, 1, 2, 3, 4, 5, 6 Department

More information

Mitigation of Current Harmonics with Combined p-q and Id-IqControl Strategies for Fuzzy Controller Based 3Phase 4Wire Shunt Active Filter

Mitigation of Current Harmonics with Combined p-q and Id-IqControl Strategies for Fuzzy Controller Based 3Phase 4Wire Shunt Active Filter Mitigation of Current Harmonics with Combined p-q and Id-IqControl Strategies for Fuzzy Controller Based 3Phase 4Wire Shunt Active Filter V.Balasubramanian 1, T.Rajesh 2, T.Rama Rajeswari 3 P.G. Student,

More information

REMOTE METER READING OVER POWER DISTRIBUTION LINES.

REMOTE METER READING OVER POWER DISTRIBUTION LINES. REMOTE METER READING OVER POWER DISTRIBUTION LINES. K. Gamage, A. Ranaweera, J. P. Karunadasa, D. Dias* Department of Electrical Engineering, University of Moratuwa *Department of Electronic & Telecommunication

More information

Improvement of Power System Distribution Quality Due to Using Dc-Converter Loads and Electric Arc Furnaces. H.A. Khalik, M. A. Aziz, and E. Farouk.

Improvement of Power System Distribution Quality Due to Using Dc-Converter Loads and Electric Arc Furnaces. H.A. Khalik, M. A. Aziz, and E. Farouk. , 2011;4(12) Improvement of Power System Distribution Quality Due to Using Dc-Converter Loads and Electric Arc Furnaces H.A. Khalik, M. A. Aziz, and E. Farouk. Electrical power and Machines Engineering

More information

Improvement of Power Quality Using a Hybrid Interline UPQC

Improvement of Power Quality Using a Hybrid Interline UPQC Improvement of Power Quality Using a Hybrid Interline UPQC M.K.Elango 1, C.Vengatesh Department of Electrical and Electronics Engineering K.S.Rangasamy College of Technology Tiruchengode, Tamilnadu, India

More information

ANALYSIS OF PWM STRATEGIES FOR Z-SOURCE CASCADED MULTILEVEL INVERTER FOR PHOTOVOLTAIC APPLICATIONS

ANALYSIS OF PWM STRATEGIES FOR Z-SOURCE CASCADED MULTILEVEL INVERTER FOR PHOTOVOLTAIC APPLICATIONS U.P.B. Sci. Bull., Series C, Vol. 77, Iss. 2, 215 ISSN 2286-354 ANALYSIS OF PWM STRATEGIES FOR Z-SOURCE CASCADED MULTILEVEL INVERTER FOR PHOTOVOLTAIC APPLICATIONS Ramalingam SEYEZHAI* 1 MultiLevel Inverters

More information

[Mahagaonkar*, 4.(8): August, 2015] ISSN: (I2OR), Publication Impact Factor: 3.785

[Mahagaonkar*, 4.(8): August, 2015] ISSN: (I2OR), Publication Impact Factor: 3.785 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY POWER QUALITY IMPROVEMENT OF GRID CONNECTED WIND ENERGY SYSTEM BY USING STATCOM Mr.Mukund S. Mahagaonkar*, Prof.D.S.Chavan * M.Tech

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

Improvement Voltage Sag And Swell Under Various Abnormal Condition Using Series Compensation

Improvement Voltage Sag And Swell Under Various Abnormal Condition Using Series Compensation Improvement Voltage Sag And Swell Under Various Abnormal Condition Using Series Compensation Sumit Borakhade #1, Sumit Dabhade *2, Pravin Nagrale #3 # Department of Electrical Engineering, DMIETR Wardha.

More information

Impact of Harmonic Resonance and V-THD in Sohar Industrial Port C Substation

Impact of Harmonic Resonance and V-THD in Sohar Industrial Port C Substation Impact of Harmonic Resonance and V-THD in Sohar Industrial Port C Substation R. S. Al Abri, M. H. Albadi, M. H. Al Abri, U. K. Al Rasbi, M. H. Al Hasni, S. M. Al Shidi Abstract This paper presents an analysis

More information

Keywords: Forward Boost Converter, SMPS, Power Factor Correction, Power Quality, Efficiency.

Keywords: Forward Boost Converter, SMPS, Power Factor Correction, Power Quality, Efficiency. www.semargroups.org, www.ijsetr.com ISSN 2319-8885 Vol.02,Issue.19, December-2013, Pages:2243-2247 Power Quality Improvement in Multi-Output Forward Boost Converter NARLA KOTESWARI 1, V. MADHUSUDHAN REDDY

More information

Reducing the Effects of Short Circuit Faults on Sensitive Loads in Distribution Systems

Reducing the Effects of Short Circuit Faults on Sensitive Loads in Distribution Systems Reducing the Effects of Short Circuit Faults on Sensitive Loads in Distribution Systems Alexander Apostolov AREVA T&D Automation I. INTRODUCTION The electric utilities industry is going through significant

More information

A Versatile Control Scheme for UPQC for Power Quality Improvement using fuzzy controller

A Versatile Control Scheme for UPQC for Power Quality Improvement using fuzzy controller IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 04, Issue 09 (September. 2014), V3 PP 11-20 www.iosrjen.org A Versatile Control Scheme for UPQC for Power Quality Improvement

More information

Comparative Study of Different Types of Voltage Stabilization Schemes

Comparative Study of Different Types of Voltage Stabilization Schemes Proc. of Int. Conf. on Emerging Trends in Engineering & Technology, IETET Comparative Study of Different Types of Voltage Stabilization Schemes Ranu Kumar 1 and Vijayendra Kumar 2 1 B.E (Hons.) 4 th year

More information

Power Quality Notes 2-2 (AK)

Power Quality Notes 2-2 (AK) Power Quality Notes 2-2 (AK) Marc Thompson, Ph.D. Senior Managing Engineer Exponent 21 Strathmore Road Natick, MA 01760 Alex Kusko, Sc.D, P.E. Vice President Exponent 21 Strathmore Road Natick, MA 01760

More information

WIRELESS THREE PHASE LINE FAULT MONITORING

WIRELESS THREE PHASE LINE FAULT MONITORING WIRELESS THREE PHASE LINE FAULT MONITORING Vaishnavi Kailas Pardeshi 1, Pooja Anil Kawade 2, Rutuja Ratanakar Kshirsagar 3 1,2,3 Department Electrical Engineer, Sandip Polytechnic, Nashik Maharashtra (India)

More information

Improvement of Voltage Profile using D- STATCOM Simulation under sag and swell condition

Improvement of Voltage Profile using D- STATCOM Simulation under sag and swell condition ISSN (Online) 232 24 ISSN (Print) 232 5526 Vol. 2, Issue 7, July 24 Improvement of Voltage Profile using D- STATCOM Simulation under sag and swell condition Brijesh Parmar, Prof. Shivani Johri 2, Chetan

More information

ALP-UDR Universal Detection Relay user-defined protection, automation, and monitoring

ALP-UDR Universal Detection Relay user-defined protection, automation, and monitoring ALP-UDR Universal Detection Relay user-defined protection, automation, and monitoring The first Real-Time Protection and Automation platform that can be adapted to a wide variety of applications. While

More information

Application of Distribution Static Synchronous Compensator in Electrical Distribution System

Application of Distribution Static Synchronous Compensator in Electrical Distribution System Application of Distribution Static Synchronous Compensator in Electrical Distribution System Smriti Dey Assistant Professor, Department of Electrical and Electronics Engineering, School of Technology,

More information

Frequently Asked Questions (FAQs) MV1000 Drive

Frequently Asked Questions (FAQs) MV1000 Drive QUESTION 1. What is a conventional PWM Inverter? 2. What is a medium voltage inverter? 3. Are all MV inverters Voltage Source (VSI) design? 4. What is a Current Source Inverter (CSI)? 5. What output power

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

e-issn: p-issn:

e-issn: p-issn: Available online at www.ijiere.com International Journal of Innovative and Emerging Research in Engineering e-issn: 2394-3343 p-issn: 2394-5494 PFC Boost Topology Using Average Current Control Method Gemlawala

More information

Design and Development of Pre-paid electricity billing using Raspberry Pi2

Design and Development of Pre-paid electricity billing using Raspberry Pi2 International Journal of Electronics Engineering Research. ISSN 0975-6450 Volume 9, Number 7 (2017) pp. 995-1005 Research India Publications http://www.ripublication.com Design and Development of Pre-paid

More information

ISSN Vol.04,Issue.16, October-2016, Pages:

ISSN Vol.04,Issue.16, October-2016, Pages: WWW.IJITECH.ORG ISSN 2321-8665 Vol.04,Issue.16, October-2016, Pages:3000-3006 Active Control for Power Quality Improvement in Hybrid Power Systems VINUTHAS 1, DHANA DEEPIKA. B 2, S. RAJESH 3 1 PG Scholar,

More information

Performance of DVR under various Fault conditions in Electrical Distribution System

Performance of DVR under various Fault conditions in Electrical Distribution System IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 8, Issue 1 (Nov. - Dec. 2013), PP 06-12 Performance of DVR under various Fault conditions

More information

Modelling of Dynamic Voltage Restorer for Mitigation of Voltage Sag and Swell Using Phase Locked Loop

Modelling of Dynamic Voltage Restorer for Mitigation of Voltage Sag and Swell Using Phase Locked Loop Modelling of Dynamic Voltage Restorer for Mitigation of Voltage Sag and Swell Using Phase Locked Loop Deepa Patil 1, Datta Chavan 2 1, 2 Electrical Engineering, Bharati Vidaypeeth Deemed University, Pune,

More information

An Experimental Study of the Effect of Current THD to kwh Meter s Energy Measurement

An Experimental Study of the Effect of Current THD to kwh Meter s Energy Measurement An Experimental Study of the Effect of Current THD to kwh Meter s Energy Measurement Syafrudin Masri 1, M.N. Mamat 2, M.Y. Yahya 3 Associate Professor, PPKEE, Universiti Sains Malaysia, Penang, Malaysia

More information

Mitigation of Power Quality Problems Using DVR in Distribution Network for Welding Load

Mitigation of Power Quality Problems Using DVR in Distribution Network for Welding Load IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 10, Issue 4 Ver. I (July Aug. 2015), PP 106-112 www.iosrjournals.org Mitigation of Power Quality

More information

Effective Harmonic Mitigation with Active Filters

Effective Harmonic Mitigation with Active Filters Advancing Power Quality White Paper Effective Harmonic Mitigation with Active Filters Written by: Ian Wallace Variable Speed Drive with no Harmonic Mitigation Industry standard variable speed drives, with

More information

Automatic Generation Control of Two Area using Fuzzy Logic Controller

Automatic Generation Control of Two Area using Fuzzy Logic Controller Automatic Generation Control of Two Area using Fuzzy Logic Yagnita P. Parmar 1, Pimal R. Gandhi 2 1 Student, Department of electrical engineering, Sardar vallbhbhai patel institute of technology, Vasad,

More information

Voltage Profile Improvement of Distribution System using Dynamic Evolution Controller for Boost Converter in Photovoltaic System

Voltage Profile Improvement of Distribution System using Dynamic Evolution Controller for Boost Converter in Photovoltaic System International Journal of Engineering and Advanced Technology (IJEAT) ISSN: 2249 8958, Volume-7 Issue-2, December 217 Voltage Profile Improvement of Distribution System using Dynamic Evolution Controller

More information

A Review of Adaptive Under Frequency Load Shedding Scheme on Islanded Distribution System Using MATLAB/SIMULINK

A Review of Adaptive Under Frequency Load Shedding Scheme on Islanded Distribution System Using MATLAB/SIMULINK A Review of Adaptive Under Frequency Load Shedding Scheme on Islanded Distribution System Using MATLAB/SIMULINK Dhananjay 1, Vijay Garg 2 1 M.Tech Scholar, Electrical Engineering, U.I.E.T, Kurukshetra,

More information

Voltage Sags in Distribution Systems with Induction Motor Loads Fed by Power Converters and Voltage Mitigation using DVR and D-STATCOM

Voltage Sags in Distribution Systems with Induction Motor Loads Fed by Power Converters and Voltage Mitigation using DVR and D-STATCOM International Journal of Electrical Engineering. ISSN 0974-2158 Volume 5, Number 7 (2012), pp. 889-902 International Research Publication House http://www.irphouse.com Voltage Sags in Distribution Systems

More information

Wide Area Monitoring with Phasor Measurement Data

Wide Area Monitoring with Phasor Measurement Data Wide Area Monitoring with Phasor Measurement Data Dr. Markus Wache Siemens E D EA, Nuremberg, Germany Content Content Basics of Phasor Measurement Realization of PMUs Power System Stability Standard IEEE

More information

A Voltage Controlled D-STATCOM for Power Quality Improvement with DVR

A Voltage Controlled D-STATCOM for Power Quality Improvement with DVR A Voltage Controlled D-STATCOM for Power Quality Improvement with DVR Rongali. Shiva Kumar P.G Student Scholar, Department of Electrical & Electronics Engineering, Gokul Group Of Institutions Abstract:

More information

Low Cost Multipurpose Platform for Distribution System Monitoring and Analysis with Sample Grid Applications

Low Cost Multipurpose Platform for Distribution System Monitoring and Analysis with Sample Grid Applications Low Cost Multipurpose Platform for Distribution System Monitoring and Analysis with Sample Grid Applications Lukram Dhanachandra Singh 1, P Musthafa 2, R Rajkamal 3 Department of Electrical and Electronics

More information

Multi-level converters for three-phase photovoltaic applications

Multi-level converters for three-phase photovoltaic applications Multi-level converters for three-phase photovoltaic applications Renato M. Nakagomi, Ye Zhao, Brad Lehman Dept. of Electrical and Computer Engineering Northeastern University Boston, Massachusetts 02115

More information

ISSN Vol.05,Issue.07, July-2017, Pages:

ISSN Vol.05,Issue.07, July-2017, Pages: WWW.IJITECH.ORG ISSN 2321-8665 Vol.05,Issue.07, July-2017, Pages:1240-1245 Fuzzy Logic Control of Single-Phase PV Cascaded H-Bridge Multilevel Grid Connected Inverter A. YAMINI 1, K. RAMA MOHAN REDDY 2,

More information

Real-time Visualization, Monitoring and Controlling of Electrical Distribution System using MATLAB

Real-time Visualization, Monitoring and Controlling of Electrical Distribution System using MATLAB Real-time Visualization, Monitoring and Controlling of Electrical Distribution System using MATLAB Ravi Prakash Saini 1, Vijay Kumar 2, J. Sandeep Soni 3 UG Student, Dept. of EE, B. K. Birla Institute

More information

INTERIM ARRANGEMENTS FOR GRID TIED DISTRIBUTED ENERGY RESOURCES. Technical Requirements for Grid-Tied DERs

INTERIM ARRANGEMENTS FOR GRID TIED DISTRIBUTED ENERGY RESOURCES. Technical Requirements for Grid-Tied DERs INTERIM ARRANGEMENTS FOR GRID TIED DISTRIBUTED ENERGY RESOURCES Technical Requirements for Grid-Tied DERs Projects Division 6/29/2017 Contents 1 Definitions and Acronyms... 1 2 Technical Interconnection

More information

MMC based D-STATCOM for Different Loading Conditions

MMC based D-STATCOM for Different Loading Conditions International Journal of Engineering Research And Management (IJERM) ISSN : 2349-2058, Volume-02, Issue-12, December 2015 MMC based D-STATCOM for Different Loading Conditions D.Satish Kumar, Geetanjali

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 3.134 International Journal of Advance Engineering and Research Development Volume 2,Issue 12,December -2015 E-ISSN (O): 2348-4470 P-ISSN (P): 2348-6406 Detection

More information

GRID RELIABILITY MONITORING

GRID RELIABILITY MONITORING GRID RELIABILITY MONITORING Using Smart Grids WASS TM - A SynchroPhasor Technology based Real Time Wide Area Situational Awareness Software for Monitoring, Detection and Diagnosis of Power System Issues

More information

Harmonic Analysis and Power Factor Correction For Food Processing Industry

Harmonic Analysis and Power Factor Correction For Food Processing Industry International Journal of Computational Engineering Research Vol, 03 Issue, 6 Harmonic Analysis and Power Factor Correction For Food Processing Industry Rupali Shinde 1, Amit Pathak 2, Bhakti Chaughule

More information

SHORT CIRCUIT ANALYSIS OF 220/132 KV SUBSTATION BY USING ETAP

SHORT CIRCUIT ANALYSIS OF 220/132 KV SUBSTATION BY USING ETAP SHORT CIRCUIT ANALYSIS OF 220/132 KV SUBSTATION BY USING ETAP Kiran V. Natkar 1, Naveen Kumar 2 1 Student, M.E., Electrical Power System, MSS CET/ Dr. B.A.M. University, (India) 2 Electrical Power System,

More information

Active Elimination of Low-Frequency Harmonics of Traction Current-Source Active Rectifier

Active Elimination of Low-Frequency Harmonics of Traction Current-Source Active Rectifier Transactions on Electrical Engineering, Vol. 1 (2012), No. 1 30 Active Elimination of Low-Frequency Harmonics of Traction Current-Source Active Rectifier Jan Michalík1), Jan Molnár2) and Zdeněk Peroutka2)

More information

Transient Detection in Industrial Grids and Compensation Using FCL DVR

Transient Detection in Industrial Grids and Compensation Using FCL DVR Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 3, March 2015,

More information

Design and Simulation of Three Phase Shunt Active Power Filter Using SRF Theory

Design and Simulation of Three Phase Shunt Active Power Filter Using SRF Theory Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 3, Number 6 (2013), pp. 651-660 Research India Publications http://www.ripublication.com/aeee.htm Design and Simulation of Three Phase

More information

Company Directive POLICY DOCUMENT: SD4/7. Relating to 11kV and 6.6kV System Design

Company Directive POLICY DOCUMENT: SD4/7. Relating to 11kV and 6.6kV System Design Company Directive POLICY DOCUMENT: SD4/7 Relating to 11kV and 6.6kV System Design Policy Summary This document describes the standard requirements for the design of the 11kV and 6.6kV systems. Reference

More information

International Journal of Engineering Research and General Science Volume 5, Issue 2, March-April, 2017 ISSN

International Journal of Engineering Research and General Science Volume 5, Issue 2, March-April, 2017 ISSN Analysis of H Link in Large Scale Offshore farm, Study and Comparison of LCC and SC Based H Links and Interconnection of Asynchronous Power Systems Utilizing SC-Based H Converter *Usman Raees Baig, **Mokhi

More information

Intelligent Power Economy System (Ipes)

Intelligent Power Economy System (Ipes) American Journal of Engineering Research (AJER) e-issn : 2320-0847 p-issn : 2320-0936 Volume-02, Issue-08, pp-108-114 www.ajer.org Research Paper Open Access Intelligent Power Economy System (Ipes) Salman

More information

DISTRIBUTION TRANSFORMER MONITORING AND CONTROL SYSTEM FOR REMOTE ELECTRIC POWER GRIDS THROUGH GSM

DISTRIBUTION TRANSFORMER MONITORING AND CONTROL SYSTEM FOR REMOTE ELECTRIC POWER GRIDS THROUGH GSM DISTRIBUTION TRANSFORMER MONITORING AND CONTROL SYSTEM FOR REMOTE ELECTRIC POWER GRIDS THROUGH GSM KIRAN DILIP DESAI 1, RAMCHANDRA P.HASABE 2 Electrical Engg.Department, Walchand College of Engg., Sangli.

More information

AUTOMATIC POWER FACTOR CORRECTION AND MONITORING BY USING PIC MICROCONTROLLER

AUTOMATIC POWER FACTOR CORRECTION AND MONITORING BY USING PIC MICROCONTROLLER AUTOMATIC POWER FACTOR CORRECTION AND MONITORING BY USING PIC MICROCONTROLLER Miss. Manali Ashok Hirave 1, Prof.A.S.Mali 2, Dr. B.T. Salokhe 3 1 Master of Engineering in Electronics, T.K.I.E.T. Warananagar

More information

ISSN (PRINT): , (ONLINE): , VOLUME-4, ISSUE-1,

ISSN (PRINT): , (ONLINE): , VOLUME-4, ISSUE-1, GSM BASED SMART ENERGY METER TO IMPLEMENT BILLING SYSTEM AND TO CONTROL ELECTRICITY THEFT Vidyashree M S Assistant Professor, GSSSIETW, Mysuru, Karnataka Abstract Automatic meter reading (AMR) system give

More information

Implementation of a Low Cost PWM Voltage Source Multilevel Inverter

Implementation of a Low Cost PWM Voltage Source Multilevel Inverter International Journal of Engineering and Technology Volume No., February, 01 Implementation of a Low Cost PWM Voltage Source Multilevel Inverter Neelashetty Kashappa 1, Ramesh Reddy K 1 EEE Department,

More information

CHAPTER 8 Effect of HT Distribution Feeder Voltage on Distribution Transformer Losses

CHAPTER 8 Effect of HT Distribution Feeder Voltage on Distribution Transformer Losses CHAPTER 8 Effect of HT Distribution Feeder Voltage on Distribution Transformer Losses 8.1 Introduction The present level of Transmission and Distribution (T & D) losses in Indian power system is estimated

More information

Real Time Monitoring of SF6 Gas Pressure for Optimization Point on Wave Switching of SF6 Circuit Breaker

Real Time Monitoring of SF6 Gas Pressure for Optimization Point on Wave Switching of SF6 Circuit Breaker Real Time Monitoring of SF6 Gas Pressure for Optimization Point on Wave Switching of SF6 Circuit Breaker Ashish Maheshwari 1, Sunil Kumar Singla 2 1 PG Scholar, EIE Department, Thapar University Patiala,

More information

Key terms: Voltage, Phase Angle, FACTS, Multilevel Converter, Power Quality, STATCOM.

Key terms: Voltage, Phase Angle, FACTS, Multilevel Converter, Power Quality, STATCOM. Modeling and Analysis of Multi Level Voltage Source Inverter Based Statcom for Improving Power Quality *P.UPENDRA KUMAR, **J.ANAND KUMAR, **K.MANOHAR, **T.M.MANOHAR, **CH.S.K.CHAITANYA *Associate.Professor,

More information

Line Impedance Estimation Using SCADA Data

Line Impedance Estimation Using SCADA Data Line Impedance Estimation Using SCADA Data Presenter: Ramiro Da Corte - Power System Engineer Prepared by: James Shen - Principal Engineer, AESO Nov. 5, 214 Background AESO is responsible for grid reliability

More information

Harmonic Study in Low Voltage Distribution Network in a Real Time Foundry Industry

Harmonic Study in Low Voltage Distribution Network in a Real Time Foundry Industry I J C T A, 9(37) 2016, pp. 769-781 International Science Press Harmonic Study in Low Voltage Distribution Network in a Real Time Foundry Industry D. Ravichandran * and Er. R. Panneerselvam ** Abstract:

More information

Power Quality Improvement in Distribution System Using D-STATCOM

Power Quality Improvement in Distribution System Using D-STATCOM Power Quality Improvement in Distribution System Using D-STATCOM 1 K.L.Sireesha, 2 K.Bhushana Kumar 1 K L University, AP, India 2 Sasi Institute of Technology, Tadepalligudem, AP, India Abstract This paper

More information

Low Frequency Demand Disconnection Summary

Low Frequency Demand Disconnection Summary Low Frequency Demand Disconnection Summary This article assesses the suitability of current low frequency protection on the network as more distributed generation is connected to WPD s network. DSOF June

More information

Power Factor Concepts with Nonsinusoidal Current Through LabVIEW: a Learning Tool

Power Factor Concepts with Nonsinusoidal Current Through LabVIEW: a Learning Tool Power Factor Concepts with Nonsinusoidal Current Through LabVIEW: a Learning Tool Code: 27.002 Yara Quilles Marinho, Paulo José Amaral Serni Universidade Estadual Paulista UNESP Sorocaba 11/10/2017 1 Semiconductor

More information

ECE 528 Understanding Power Quality

ECE 528 Understanding Power Quality ECE 58 Understanding Power Quality http://www.ece.uidaho.edu/ee/power/ece58/ Paul Ortmann portmann@uidaho.edu 08-733-797 (voice) Lecture 9 Today Harmonics fundamentals Harmonic Distortion Voltage and Current

More information

Adaptive ANN based STATCOM and DVR for optimal integration of wind energy with grid using permanent magnet synchronous generator

Adaptive ANN based STATCOM and DVR for optimal integration of wind energy with grid using permanent magnet synchronous generator Adaptive ANN based STATCOM and DVR for optimal integration of wind energy with grid using permanent magnet synchronous generator Priyanka Sahu Columbia Institute of Engineering and Technology, Raipur,

More information

Design and Implementation of Loss Reduction of Transmission and Distribution Line Using GSM Technology and ZIGBEE

Design and Implementation of Loss Reduction of Transmission and Distribution Line Using GSM Technology and ZIGBEE Design and Implementation of Loss Reduction of Transmission and Distribution Line Using GSM Technology and ZIGBEE Pooja J. Jari 1, Mr. Girish A. Kulkarni 2 Department Name: Electronics And Communication

More information