SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 101
Improvement In Quality Of Power By PI Controller Hybrid PSO Using
STATCOM
Navneet Chauhan1 , Rahul Jain2
1PG Student [CSE], Dept. of EIE, HCST, Farah, Mathura, Uttar Pradesh, India
2Assistant professor, Dept. of ECE, HCST, Farah, Mathura, Uttar Pradesh, India
---------------------------------------------------------------------***---------------------------------------------------------------------
ABSTRACT: This paper presents an overview of one of the
FACT device D-STATCOM, inmitigatingpowerqualityproblem
for an instance say voltage sag and to reach a more optimal
solution within set parameters by using hybrid PSO technique
to maximize the chances of having best power quality which
lead to reduction in cost.
The above device is studied and analyzed. And also the control
strategy to control the device is presented in this project to
obtain a best optimal solution. The proposed control strategy
is simulated in MATLAB SIMULINK environment and the
results are presented. An improved result based on the
performance of device in obtaining a betteroptimalsolutionis
presented.
Key Words: Power quality, Power quality issues, PI
controller D-STATCOM ,PSO ,Optimized PSO
1. INTRODUCTION
Among different forms of energy available to human
kind .As in present time the electrical power is mostpopular
and efficient form of energy and the development of
industries as well as of civilization is largelydependenton it,
so the smooth supply of electric power which would be free
from all sorts of power quality issues is must for better
growth of an economy. Also the life and performance of the
utility equipment also depend upon the quality of supply it
would get and the quality of power is of utmost importance
for the proper functioning of the utility equipment. Many of
the loads which are employed for commercial as well as for
industrial purpose require continuous supply of power
which is free from all sorts of disturbances and power
quality issues..so requirement of both qualityandcontinuity
of electric power is of importance for us.
.Now the power supply continuity is affected mainly
due to the faults which occur at different locations in the
system thus to make possible the regularity in delivering
best quality of power it is required to clear the fault as early
as possible and for this the protectionandswitchgearcircuit
should be designed as such to operate without any time lag
or almost with zero time lag.
The quality of power is affected due to many problems
which encountered in transmission system and distribution
system. Some of the power quality issues which led to the
change in quality of power from a good one to a bad one are
like- voltage sag, swell ,harmonics ,transients etc. These
problems led to the improper functioning of power utility
equipment.. In order to enhance the behavior of the power
system, these all problems should be eliminated.
With the developments that took place in nowadays in
electronic devices which are primarily used in power
systems recent, now it is possible to achieve the smooth
operation in power systems and thus we can reduce manyof
the problems related to the efficient operation of power
systems. One of the method is to employ the custom power
devices and Flexible AC Transmission System (FACTS)
devices. The implementation of these devices in the power
system helps in improving the efficiency and reliability of
the whole power system. In this project the mitigation of
power quality problems like voltage sag using one of the
FACT devices - D STATCOM is studied and analyzed using a
hybrid concept iterative method of PSO to reach at a more
acceptable optimal solution within a given setparametersof
available power quality to reduce its cost and improve its
efficiency and performance thus reducing the overall cost.
Particle Swarm Optimization (PSO) is an optimization
method based on the principles of natural selection and
genetics. This method can look for more solutions
simultaneously. PSO generatesrandominitial particlesin the
first step and then it applies velocity vectors to update the
particles until a process stop condition is satisfied.
The particle swarm concept originated as a simulation of
simplified social system. The original intent was to
graphically simulate the choreography of birdofa birdblock
or fish school. However, it was found that particle swarm
model can be used as an optimizer.
The velocity on that dimension is limited to Vmax. Each
particle moves according to its velocity. At each iteration,
the particle movement is computed as follows:
xi(t + 1) = xi(t) + vi(t);
(1)
vi(t + 1) = wvi(t) + c1r1(pbesti(t) - xi(t)) + c2r2(gbest(t) -
xi(t))
1.1 ABOUT PSO
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 102
……………….......................................................................... (2)
Equations (1) and (2), xi(t) is the position of particleiattime
t, vi(t) is the velocity of particle i at time t, pbesti(t) is the
best position found by particle itself so far, gbest(t) is the
best position found by the whole swarm so far, ! is an inertia
weight scaling the previous time step velocity, c1 and c2 are
two acceleration coefficients that scale the influence of the
best personal position of the particle (pbesti(t))andthebest
global position (gbest(t)), and r1 and r2 are random
variables within the range of 0 and 1.
Equations (3) and (4) denotes how the personal and global
best values are updated at time t, respectively. It is assumed
below that the swarm consists of s particles and the
objective function f is used to calculate the fitness of the
particles with a minimization task.
pbesti(t + 1) = { pbesti(t) if f(pbesti(t)) ≤ f(xi(t + 1)) (3)
xi(t + 1) if f(pbesti(t)) > f(xi(t + 1)) (4)
gbest(t + 1) = min f(y); f(gbest(t))
where; y € fpbest0(t); pbest1(t); : : : pbests(t)g
1.2HYBRID PSO
In this scheme, a new hybrid particle swarm optimization
along with the genetic algorithm is proposed to minimize a
simplified model of the voltage function variation of the
model. The proposed algorithm is called Hybrid Particle
Swarm Optimization an(HPSO)alongwithgeneticalgorithm
characters or simply hybrid particle swarm optimization.
The HPSOGA is based on three different mechanisms.
The initial or first mechanism is applying the particleswarm
optimization to balance between the exploration and the
exploitation process in the proposed algorithm.
PSO with Gaussian mutation (GPSO) whose global searching
ability is more efficient than the standard PSO, is proposed
by Natsuki and Hitoshi. Ling proposed a hybrid PSO with
wavelet mutation namedHWPSO,in whicha tuning mutating
method is used.
In HWPSO, by performing mutation operation on the
selected particle, the solutionspaceshouldbe explored more
efficiently ,and premature convergence is more likely to be
avoided. Although different mutation operators have been
applied to enhance the achievements of PSO, the new
mutation process needs to be further investigated so as to
achieve better balance between global and local searching
abilities and preserving the most important advantages of
PSO when compared with GA, which is easy to implement,
and there are few parameters to adjust.
The pseudo code for HPSOM algorithm/COPSO
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 103
2. VOLTAGE SAG
Definition:It can be defined as per IEEE standards 1346-
1998 as the decrease in voltage valueorcurrent in rmsatthe
power frequency for durations of 0.5 cycle to 1 min.The
voltage sag is characterized by its magnitude, duration and
phase angle jump
Fig. Voltage sag
2.1 DURATION OF SAG
2.2 SYSTEM DESIGN EXPLANATION: The system which we
have designed in simulink has been examined on unlike or
dissimilar abnormal conditions with different types of load.
The system has a supply source which is of three phase in
nature The system design of the whole system includes
various subsystems which includes the PI controller ,
STATCOM different transformer and other connecting
circuitry in simulink then we minimize the cost problem to
show the improvement in power quality .
The PI controller used in the design have some parameter
which can be tabulated as follows:
The different parameter used in PI controller are based on
hoit and trial method which is the best method for proper
tuning.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 104
3. RESULTS AND DISCUSSION
CASE I: At start when particles try to overlap and in
search for best possible result
Fig. 1 At start when particles try to overlap and in
search for best possible result
In the fig 1, Out of different possible cases we observed the
case when we have the present best position values of
particle start to obtain the global optimum values i.e. the
values are start to overlap with global best.
CASE II: Simulation Results Using STATCOM With PSO
(gbest value with best fitness in voltage regulation and
improving weight inertia). The result in this case shows
the improvement in inertia weight from about 0.87 to 0.85
approximately which is of almost an improvement of about
0.02 in inertia weight which leads us to the conclusion that
we have an improved result with the technique which we
have used here. Also from this we concluded that we have
the improved gbest fitness in voltage regulation with
improved weight inertia.
CASE III: Simulation Results Using STATCOM With
COPSO/Hybrid PSO (Final Improved weight with
maximum coverage of voltage with copso). Now we
utilized the concept of COPSO which gives us the further
improved results. In the below fig.3 now again we have
obtain the dimensional plot of the system which we have
design to obtain the particle dynamicswithCOPSO whichwe
have with 5 dimensions and now as we have the inertia
weight in the above result as close to 0.83 which is an
improved version from the previouscasewhichismorethan
the result of inertia weight obtained in this so in this casewe
obtained the gbest fitness in voltage regulation with
improved weight inertia.
3. CONCLUSION
Thus in this paper we present the MATLAB SIMULINK
simulation results of Hybrid PSO using D-STATCOM. The
device performance in mitigating voltage sag and other
power quality problems is studied and analyzed. A
comparative study is also made based on the THD and other
parameters as needed of the load voltage after
compensation. From the comparative study it can inferred
that the hybrid particle swamp optimization is efficient in
mitigating the voltage sag and other powerqualityproblems
and allow us to arrive us a more suitable acceptable solution
close to global best.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 105
[1]. Kantaria, R. A.; Joshi, S.K.; Siddhapura, K. R., "A novel
technique for mitigation of voltage sag/swell by Dynamic
Voltage Restorer (DVR)," Electro/Information Technology
(EIT), 2010 IEEE International Conference on , vol., no.,
pp.1,4,20-22 May 2010.
[2]. Kong Shuhong; Yin Zhongdong; Shan Renzhong; Shang
Weidong, "A Survey on the Principle and Control ofDynamic
Voltage Restorer," Energy and Environment Technology,
2009. ICEET '09. International Conference on , vol.2, no.,
pp.57,60, 16-18 Oct. 2009.
[3]. Elango, S.; Chandra Sekaran, E., "Mitigation of Voltage
Sag by Using Distribution Static Compensator (D-
STATCOM)," Process Automation, Control and Computing
(PACC), 2011 International Conference on , vol., no., pp.1,6,
20-22 July 2011.
[4]. Ledwich, G.; Ghosh, A., "A flexible DSTATCOM operating
in voltage or current control mode," Generation,
Transmission and Distribution, IEE Proceedings- , vol.149,
no.2, pp.215,224, Mar 2002.
[5]. Ambarnath Banerji , Sujit K. Biswas , Bhim Singh ,
“DSTATCOM Application for Mitigation of Voltage Sag
Caused by Dynamic Loads in Autonomous Systems”
International Journal of Power ElectronicsandDriveSystem
(IJPEDS), vol.2, No.2, June 2012.
[6]. Haque, M. H., "Compensation of distribution system
voltage sag by DVR and D-STATCOM," Power Tech
Proceedings, 2001 IEEE Porto , vol.1, no., pp.5 pp. vol.1,,
2001.
[7] Sainadh singh “libs/statcom with pso based pi
controller for a grid connected wind energy system “ Energy
and EnvironmentTechnology,2009.ICEET'09.International
Conference on , vol.2, no., pp.67,72, 18-23 Nov. 2012.
[8] V. tuzikova, z. müller, j. švec, v. valouch “particle swarm
based optimization of power losses in network using
statcom” ARPN journal of engineering and applied science,
vol. 2, no. 3, pp. 7-13, June 2007.
REFERENCES

More Related Content

What's hot

Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...IRJET Journal
 
Oscillatory Stability Prediction Using PSO Based Synchronizing and Damping To...
Oscillatory Stability Prediction Using PSO Based Synchronizing and Damping To...Oscillatory Stability Prediction Using PSO Based Synchronizing and Damping To...
Oscillatory Stability Prediction Using PSO Based Synchronizing and Damping To...journalBEEI
 
Tuning of different controlling techniques for magnetic suspending system usi...
Tuning of different controlling techniques for magnetic suspending system usi...Tuning of different controlling techniques for magnetic suspending system usi...
Tuning of different controlling techniques for magnetic suspending system usi...IJECEIAES
 
GWO-based estimation of input-output parameters of thermal power plants
GWO-based estimation of input-output parameters of thermal power plantsGWO-based estimation of input-output parameters of thermal power plants
GWO-based estimation of input-output parameters of thermal power plantsTELKOMNIKA JOURNAL
 
Model predictive control of magnetic levitation system
Model predictive control of magnetic levitation system Model predictive control of magnetic levitation system
Model predictive control of magnetic levitation system IJECEIAES
 
18 9741 chaos paper id 0015 (edit ty)
18 9741 chaos paper id 0015 (edit ty)18 9741 chaos paper id 0015 (edit ty)
18 9741 chaos paper id 0015 (edit ty)IAESIJEECS
 
A cost effective computational design of maximum power point tracking for pho...
A cost effective computational design of maximum power point tracking for pho...A cost effective computational design of maximum power point tracking for pho...
A cost effective computational design of maximum power point tracking for pho...IJECEIAES
 
Disturbance observer-based controller for inverted pendulum with uncertaintie...
Disturbance observer-based controller for inverted pendulum with uncertaintie...Disturbance observer-based controller for inverted pendulum with uncertaintie...
Disturbance observer-based controller for inverted pendulum with uncertaintie...IJECEIAES
 
Voltage Stability Improvement by Reactive Power Rescheduling Incorporating P...
Voltage Stability Improvement by Reactive Power Rescheduling  Incorporating P...Voltage Stability Improvement by Reactive Power Rescheduling  Incorporating P...
Voltage Stability Improvement by Reactive Power Rescheduling Incorporating P...IJMER
 
Metaheuristics-based Optimal Reactive Power Management in Offshore Wind Farms...
Metaheuristics-based Optimal Reactive Power Management in Offshore Wind Farms...Metaheuristics-based Optimal Reactive Power Management in Offshore Wind Farms...
Metaheuristics-based Optimal Reactive Power Management in Offshore Wind Farms...Aimilia-Myrsini Theologi
 
Optimization of Preventive Maintenance Practice in Maritime Academy Oron
Optimization of Preventive Maintenance Practice in Maritime Academy OronOptimization of Preventive Maintenance Practice in Maritime Academy Oron
Optimization of Preventive Maintenance Practice in Maritime Academy OronIJERA Editor
 
Evaluation of IEEE 57 Bus System for Optimal Power Flow Analysis
Evaluation of IEEE 57 Bus System for Optimal Power Flow AnalysisEvaluation of IEEE 57 Bus System for Optimal Power Flow Analysis
Evaluation of IEEE 57 Bus System for Optimal Power Flow AnalysisIJERA Editor
 
Soft Computing Technique Based Enhancement of Transmission System Lodability ...
Soft Computing Technique Based Enhancement of Transmission System Lodability ...Soft Computing Technique Based Enhancement of Transmission System Lodability ...
Soft Computing Technique Based Enhancement of Transmission System Lodability ...IJERA Editor
 
A Critical Review on Employed Techniques for Short Term Load Forecasting
A Critical Review on Employed Techniques for Short Term Load ForecastingA Critical Review on Employed Techniques for Short Term Load Forecasting
A Critical Review on Employed Techniques for Short Term Load ForecastingIRJET Journal
 
Compromising between-eld-&-eed-using-gatool-matlab
Compromising between-eld-&-eed-using-gatool-matlabCompromising between-eld-&-eed-using-gatool-matlab
Compromising between-eld-&-eed-using-gatool-matlabSubhankar Sau
 
Vibration Analysis and Modelling of a Cantilever Beam
Vibration Analysis and Modelling of a Cantilever Beam Vibration Analysis and Modelling of a Cantilever Beam
Vibration Analysis and Modelling of a Cantilever Beam Muhammad Usman
 
Optimal tuning of a wind plant energy production based on improved grey wolf ...
Optimal tuning of a wind plant energy production based on improved grey wolf ...Optimal tuning of a wind plant energy production based on improved grey wolf ...
Optimal tuning of a wind plant energy production based on improved grey wolf ...journalBEEI
 

What's hot (20)

Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
Optimization of Unit Commitment Problem using Classical Soft Computing Techni...
 
Oscillatory Stability Prediction Using PSO Based Synchronizing and Damping To...
Oscillatory Stability Prediction Using PSO Based Synchronizing and Damping To...Oscillatory Stability Prediction Using PSO Based Synchronizing and Damping To...
Oscillatory Stability Prediction Using PSO Based Synchronizing and Damping To...
 
Tuning of different controlling techniques for magnetic suspending system usi...
Tuning of different controlling techniques for magnetic suspending system usi...Tuning of different controlling techniques for magnetic suspending system usi...
Tuning of different controlling techniques for magnetic suspending system usi...
 
GWO-based estimation of input-output parameters of thermal power plants
GWO-based estimation of input-output parameters of thermal power plantsGWO-based estimation of input-output parameters of thermal power plants
GWO-based estimation of input-output parameters of thermal power plants
 
Model predictive control of magnetic levitation system
Model predictive control of magnetic levitation system Model predictive control of magnetic levitation system
Model predictive control of magnetic levitation system
 
18 9741 chaos paper id 0015 (edit ty)
18 9741 chaos paper id 0015 (edit ty)18 9741 chaos paper id 0015 (edit ty)
18 9741 chaos paper id 0015 (edit ty)
 
D010232026
D010232026D010232026
D010232026
 
A cost effective computational design of maximum power point tracking for pho...
A cost effective computational design of maximum power point tracking for pho...A cost effective computational design of maximum power point tracking for pho...
A cost effective computational design of maximum power point tracking for pho...
 
poster presentation
poster presentationposter presentation
poster presentation
 
Disturbance observer-based controller for inverted pendulum with uncertaintie...
Disturbance observer-based controller for inverted pendulum with uncertaintie...Disturbance observer-based controller for inverted pendulum with uncertaintie...
Disturbance observer-based controller for inverted pendulum with uncertaintie...
 
Voltage Stability Improvement by Reactive Power Rescheduling Incorporating P...
Voltage Stability Improvement by Reactive Power Rescheduling  Incorporating P...Voltage Stability Improvement by Reactive Power Rescheduling  Incorporating P...
Voltage Stability Improvement by Reactive Power Rescheduling Incorporating P...
 
Metaheuristics-based Optimal Reactive Power Management in Offshore Wind Farms...
Metaheuristics-based Optimal Reactive Power Management in Offshore Wind Farms...Metaheuristics-based Optimal Reactive Power Management in Offshore Wind Farms...
Metaheuristics-based Optimal Reactive Power Management in Offshore Wind Farms...
 
G04454759
G04454759G04454759
G04454759
 
Optimization of Preventive Maintenance Practice in Maritime Academy Oron
Optimization of Preventive Maintenance Practice in Maritime Academy OronOptimization of Preventive Maintenance Practice in Maritime Academy Oron
Optimization of Preventive Maintenance Practice in Maritime Academy Oron
 
Evaluation of IEEE 57 Bus System for Optimal Power Flow Analysis
Evaluation of IEEE 57 Bus System for Optimal Power Flow AnalysisEvaluation of IEEE 57 Bus System for Optimal Power Flow Analysis
Evaluation of IEEE 57 Bus System for Optimal Power Flow Analysis
 
Soft Computing Technique Based Enhancement of Transmission System Lodability ...
Soft Computing Technique Based Enhancement of Transmission System Lodability ...Soft Computing Technique Based Enhancement of Transmission System Lodability ...
Soft Computing Technique Based Enhancement of Transmission System Lodability ...
 
A Critical Review on Employed Techniques for Short Term Load Forecasting
A Critical Review on Employed Techniques for Short Term Load ForecastingA Critical Review on Employed Techniques for Short Term Load Forecasting
A Critical Review on Employed Techniques for Short Term Load Forecasting
 
Compromising between-eld-&-eed-using-gatool-matlab
Compromising between-eld-&-eed-using-gatool-matlabCompromising between-eld-&-eed-using-gatool-matlab
Compromising between-eld-&-eed-using-gatool-matlab
 
Vibration Analysis and Modelling of a Cantilever Beam
Vibration Analysis and Modelling of a Cantilever Beam Vibration Analysis and Modelling of a Cantilever Beam
Vibration Analysis and Modelling of a Cantilever Beam
 
Optimal tuning of a wind plant energy production based on improved grey wolf ...
Optimal tuning of a wind plant energy production based on improved grey wolf ...Optimal tuning of a wind plant energy production based on improved grey wolf ...
Optimal tuning of a wind plant energy production based on improved grey wolf ...
 

Similar to Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOM

Congestion Management in Deregulated Power by Rescheduling of Generators
Congestion Management in Deregulated Power by Rescheduling of GeneratorsCongestion Management in Deregulated Power by Rescheduling of Generators
Congestion Management in Deregulated Power by Rescheduling of GeneratorsIRJET Journal
 
Optimization of FLC Using PSO – FF Hybrid Algorithm Using DSTATCOM for Powe...
Optimization of FLC Using PSO  –  FF Hybrid Algorithm Using DSTATCOM for Powe...Optimization of FLC Using PSO  –  FF Hybrid Algorithm Using DSTATCOM for Powe...
Optimization of FLC Using PSO – FF Hybrid Algorithm Using DSTATCOM for Powe...YogeshIJTSRD
 
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...IRJET Journal
 
IRJET- A Survey on Optimization Technique for Congestion Managenment in Restr...
IRJET- A Survey on Optimization Technique for Congestion Managenment in Restr...IRJET- A Survey on Optimization Technique for Congestion Managenment in Restr...
IRJET- A Survey on Optimization Technique for Congestion Managenment in Restr...IRJET Journal
 
IRJET- PSO Tuned PID Controller for Single-Area Multi- Source LFC System
IRJET- PSO Tuned PID Controller for Single-Area Multi- Source LFC SystemIRJET- PSO Tuned PID Controller for Single-Area Multi- Source LFC System
IRJET- PSO Tuned PID Controller for Single-Area Multi- Source LFC SystemIRJET Journal
 
IRJET- Swarm Optimization Technique for Economic Load Dispatch
IRJET- Swarm Optimization Technique for Economic Load DispatchIRJET- Swarm Optimization Technique for Economic Load Dispatch
IRJET- Swarm Optimization Technique for Economic Load DispatchIRJET Journal
 
Optimization of automatic voltage regulator by proportional integral derivati...
Optimization of automatic voltage regulator by proportional integral derivati...Optimization of automatic voltage regulator by proportional integral derivati...
Optimization of automatic voltage regulator by proportional integral derivati...eSAT Journals
 
G0362046052
G0362046052G0362046052
G0362046052theijes
 
Hybrid Gravitational Search Flower Pollination Algorithm for Combined Economi...
Hybrid Gravitational Search Flower Pollination Algorithm for Combined Economi...Hybrid Gravitational Search Flower Pollination Algorithm for Combined Economi...
Hybrid Gravitational Search Flower Pollination Algorithm for Combined Economi...IRJET Journal
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Editor IJARCET
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Editor IJARCET
 
IRJET- Optimum Design of PSO based Tuning using PID Controller for an Automat...
IRJET- Optimum Design of PSO based Tuning using PID Controller for an Automat...IRJET- Optimum Design of PSO based Tuning using PID Controller for an Automat...
IRJET- Optimum Design of PSO based Tuning using PID Controller for an Automat...IRJET Journal
 
Artificial Intelligent and meta-heuristic Control Based DFIG model Considered...
Artificial Intelligent and meta-heuristic Control Based DFIG model Considered...Artificial Intelligent and meta-heuristic Control Based DFIG model Considered...
Artificial Intelligent and meta-heuristic Control Based DFIG model Considered...IRJET Journal
 
Enhancement of Power System Performance by Optimal Placement of Distributed G...
Enhancement of Power System Performance by Optimal Placement of Distributed G...Enhancement of Power System Performance by Optimal Placement of Distributed G...
Enhancement of Power System Performance by Optimal Placement of Distributed G...IRJET Journal
 
Load Shifting Technique on 24Hour Basis for a Smart-Grid to Reduce Cost and P...
Load Shifting Technique on 24Hour Basis for a Smart-Grid to Reduce Cost and P...Load Shifting Technique on 24Hour Basis for a Smart-Grid to Reduce Cost and P...
Load Shifting Technique on 24Hour Basis for a Smart-Grid to Reduce Cost and P...IRJET Journal
 
IRJET- Comparison of GA and PSO Optimization Techniques to Optimal Planning o...
IRJET- Comparison of GA and PSO Optimization Techniques to Optimal Planning o...IRJET- Comparison of GA and PSO Optimization Techniques to Optimal Planning o...
IRJET- Comparison of GA and PSO Optimization Techniques to Optimal Planning o...IRJET Journal
 
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...IJERD Editor
 
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...IJERD Editor
 
IRJET - Design And Analysis of Belt Conveyor for Weight Reduction in Foundry
IRJET -  	  Design And Analysis of Belt Conveyor for Weight Reduction in FoundryIRJET -  	  Design And Analysis of Belt Conveyor for Weight Reduction in Foundry
IRJET - Design And Analysis of Belt Conveyor for Weight Reduction in FoundryIRJET Journal
 
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET Journal
 

Similar to Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOM (20)

Congestion Management in Deregulated Power by Rescheduling of Generators
Congestion Management in Deregulated Power by Rescheduling of GeneratorsCongestion Management in Deregulated Power by Rescheduling of Generators
Congestion Management in Deregulated Power by Rescheduling of Generators
 
Optimization of FLC Using PSO – FF Hybrid Algorithm Using DSTATCOM for Powe...
Optimization of FLC Using PSO  –  FF Hybrid Algorithm Using DSTATCOM for Powe...Optimization of FLC Using PSO  –  FF Hybrid Algorithm Using DSTATCOM for Powe...
Optimization of FLC Using PSO – FF Hybrid Algorithm Using DSTATCOM for Powe...
 
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
IRJET- PSO based PID Controller for Bidirectional Inductive Power Transfer Sy...
 
IRJET- A Survey on Optimization Technique for Congestion Managenment in Restr...
IRJET- A Survey on Optimization Technique for Congestion Managenment in Restr...IRJET- A Survey on Optimization Technique for Congestion Managenment in Restr...
IRJET- A Survey on Optimization Technique for Congestion Managenment in Restr...
 
IRJET- PSO Tuned PID Controller for Single-Area Multi- Source LFC System
IRJET- PSO Tuned PID Controller for Single-Area Multi- Source LFC SystemIRJET- PSO Tuned PID Controller for Single-Area Multi- Source LFC System
IRJET- PSO Tuned PID Controller for Single-Area Multi- Source LFC System
 
IRJET- Swarm Optimization Technique for Economic Load Dispatch
IRJET- Swarm Optimization Technique for Economic Load DispatchIRJET- Swarm Optimization Technique for Economic Load Dispatch
IRJET- Swarm Optimization Technique for Economic Load Dispatch
 
Optimization of automatic voltage regulator by proportional integral derivati...
Optimization of automatic voltage regulator by proportional integral derivati...Optimization of automatic voltage regulator by proportional integral derivati...
Optimization of automatic voltage regulator by proportional integral derivati...
 
G0362046052
G0362046052G0362046052
G0362046052
 
Hybrid Gravitational Search Flower Pollination Algorithm for Combined Economi...
Hybrid Gravitational Search Flower Pollination Algorithm for Combined Economi...Hybrid Gravitational Search Flower Pollination Algorithm for Combined Economi...
Hybrid Gravitational Search Flower Pollination Algorithm for Combined Economi...
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138
 
Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138Volume 2-issue-6-2130-2138
Volume 2-issue-6-2130-2138
 
IRJET- Optimum Design of PSO based Tuning using PID Controller for an Automat...
IRJET- Optimum Design of PSO based Tuning using PID Controller for an Automat...IRJET- Optimum Design of PSO based Tuning using PID Controller for an Automat...
IRJET- Optimum Design of PSO based Tuning using PID Controller for an Automat...
 
Artificial Intelligent and meta-heuristic Control Based DFIG model Considered...
Artificial Intelligent and meta-heuristic Control Based DFIG model Considered...Artificial Intelligent and meta-heuristic Control Based DFIG model Considered...
Artificial Intelligent and meta-heuristic Control Based DFIG model Considered...
 
Enhancement of Power System Performance by Optimal Placement of Distributed G...
Enhancement of Power System Performance by Optimal Placement of Distributed G...Enhancement of Power System Performance by Optimal Placement of Distributed G...
Enhancement of Power System Performance by Optimal Placement of Distributed G...
 
Load Shifting Technique on 24Hour Basis for a Smart-Grid to Reduce Cost and P...
Load Shifting Technique on 24Hour Basis for a Smart-Grid to Reduce Cost and P...Load Shifting Technique on 24Hour Basis for a Smart-Grid to Reduce Cost and P...
Load Shifting Technique on 24Hour Basis for a Smart-Grid to Reduce Cost and P...
 
IRJET- Comparison of GA and PSO Optimization Techniques to Optimal Planning o...
IRJET- Comparison of GA and PSO Optimization Techniques to Optimal Planning o...IRJET- Comparison of GA and PSO Optimization Techniques to Optimal Planning o...
IRJET- Comparison of GA and PSO Optimization Techniques to Optimal Planning o...
 
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
 
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
Neuro-Genetic Optimization of LDO-fired Rotary Furnace Parameters for the Pro...
 
IRJET - Design And Analysis of Belt Conveyor for Weight Reduction in Foundry
IRJET -  	  Design And Analysis of Belt Conveyor for Weight Reduction in FoundryIRJET -  	  Design And Analysis of Belt Conveyor for Weight Reduction in Foundry
IRJET - Design And Analysis of Belt Conveyor for Weight Reduction in Foundry
 
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
IRJET- Fuel Cost Reduction for Thermal Power Generator by using G.A, PSO, QPS...
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...ranjana rawat
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 

Recently uploaded (20)

the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
(TARA) Talegaon Dabhade Call Girls Just Call 7001035870 [ Cash on Delivery ] ...
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 

Improvement in Quality of Power by PI Controller Hybrid PSO using STATCOM

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 101 Improvement In Quality Of Power By PI Controller Hybrid PSO Using STATCOM Navneet Chauhan1 , Rahul Jain2 1PG Student [CSE], Dept. of EIE, HCST, Farah, Mathura, Uttar Pradesh, India 2Assistant professor, Dept. of ECE, HCST, Farah, Mathura, Uttar Pradesh, India ---------------------------------------------------------------------***--------------------------------------------------------------------- ABSTRACT: This paper presents an overview of one of the FACT device D-STATCOM, inmitigatingpowerqualityproblem for an instance say voltage sag and to reach a more optimal solution within set parameters by using hybrid PSO technique to maximize the chances of having best power quality which lead to reduction in cost. The above device is studied and analyzed. And also the control strategy to control the device is presented in this project to obtain a best optimal solution. The proposed control strategy is simulated in MATLAB SIMULINK environment and the results are presented. An improved result based on the performance of device in obtaining a betteroptimalsolutionis presented. Key Words: Power quality, Power quality issues, PI controller D-STATCOM ,PSO ,Optimized PSO 1. INTRODUCTION Among different forms of energy available to human kind .As in present time the electrical power is mostpopular and efficient form of energy and the development of industries as well as of civilization is largelydependenton it, so the smooth supply of electric power which would be free from all sorts of power quality issues is must for better growth of an economy. Also the life and performance of the utility equipment also depend upon the quality of supply it would get and the quality of power is of utmost importance for the proper functioning of the utility equipment. Many of the loads which are employed for commercial as well as for industrial purpose require continuous supply of power which is free from all sorts of disturbances and power quality issues..so requirement of both qualityandcontinuity of electric power is of importance for us. .Now the power supply continuity is affected mainly due to the faults which occur at different locations in the system thus to make possible the regularity in delivering best quality of power it is required to clear the fault as early as possible and for this the protectionandswitchgearcircuit should be designed as such to operate without any time lag or almost with zero time lag. The quality of power is affected due to many problems which encountered in transmission system and distribution system. Some of the power quality issues which led to the change in quality of power from a good one to a bad one are like- voltage sag, swell ,harmonics ,transients etc. These problems led to the improper functioning of power utility equipment.. In order to enhance the behavior of the power system, these all problems should be eliminated. With the developments that took place in nowadays in electronic devices which are primarily used in power systems recent, now it is possible to achieve the smooth operation in power systems and thus we can reduce manyof the problems related to the efficient operation of power systems. One of the method is to employ the custom power devices and Flexible AC Transmission System (FACTS) devices. The implementation of these devices in the power system helps in improving the efficiency and reliability of the whole power system. In this project the mitigation of power quality problems like voltage sag using one of the FACT devices - D STATCOM is studied and analyzed using a hybrid concept iterative method of PSO to reach at a more acceptable optimal solution within a given setparametersof available power quality to reduce its cost and improve its efficiency and performance thus reducing the overall cost. Particle Swarm Optimization (PSO) is an optimization method based on the principles of natural selection and genetics. This method can look for more solutions simultaneously. PSO generatesrandominitial particlesin the first step and then it applies velocity vectors to update the particles until a process stop condition is satisfied. The particle swarm concept originated as a simulation of simplified social system. The original intent was to graphically simulate the choreography of birdofa birdblock or fish school. However, it was found that particle swarm model can be used as an optimizer. The velocity on that dimension is limited to Vmax. Each particle moves according to its velocity. At each iteration, the particle movement is computed as follows: xi(t + 1) = xi(t) + vi(t); (1) vi(t + 1) = wvi(t) + c1r1(pbesti(t) - xi(t)) + c2r2(gbest(t) - xi(t)) 1.1 ABOUT PSO
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 102 ……………….......................................................................... (2) Equations (1) and (2), xi(t) is the position of particleiattime t, vi(t) is the velocity of particle i at time t, pbesti(t) is the best position found by particle itself so far, gbest(t) is the best position found by the whole swarm so far, ! is an inertia weight scaling the previous time step velocity, c1 and c2 are two acceleration coefficients that scale the influence of the best personal position of the particle (pbesti(t))andthebest global position (gbest(t)), and r1 and r2 are random variables within the range of 0 and 1. Equations (3) and (4) denotes how the personal and global best values are updated at time t, respectively. It is assumed below that the swarm consists of s particles and the objective function f is used to calculate the fitness of the particles with a minimization task. pbesti(t + 1) = { pbesti(t) if f(pbesti(t)) ≤ f(xi(t + 1)) (3) xi(t + 1) if f(pbesti(t)) > f(xi(t + 1)) (4) gbest(t + 1) = min f(y); f(gbest(t)) where; y € fpbest0(t); pbest1(t); : : : pbests(t)g 1.2HYBRID PSO In this scheme, a new hybrid particle swarm optimization along with the genetic algorithm is proposed to minimize a simplified model of the voltage function variation of the model. The proposed algorithm is called Hybrid Particle Swarm Optimization an(HPSO)alongwithgeneticalgorithm characters or simply hybrid particle swarm optimization. The HPSOGA is based on three different mechanisms. The initial or first mechanism is applying the particleswarm optimization to balance between the exploration and the exploitation process in the proposed algorithm. PSO with Gaussian mutation (GPSO) whose global searching ability is more efficient than the standard PSO, is proposed by Natsuki and Hitoshi. Ling proposed a hybrid PSO with wavelet mutation namedHWPSO,in whicha tuning mutating method is used. In HWPSO, by performing mutation operation on the selected particle, the solutionspaceshouldbe explored more efficiently ,and premature convergence is more likely to be avoided. Although different mutation operators have been applied to enhance the achievements of PSO, the new mutation process needs to be further investigated so as to achieve better balance between global and local searching abilities and preserving the most important advantages of PSO when compared with GA, which is easy to implement, and there are few parameters to adjust. The pseudo code for HPSOM algorithm/COPSO
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 103 2. VOLTAGE SAG Definition:It can be defined as per IEEE standards 1346- 1998 as the decrease in voltage valueorcurrent in rmsatthe power frequency for durations of 0.5 cycle to 1 min.The voltage sag is characterized by its magnitude, duration and phase angle jump Fig. Voltage sag 2.1 DURATION OF SAG 2.2 SYSTEM DESIGN EXPLANATION: The system which we have designed in simulink has been examined on unlike or dissimilar abnormal conditions with different types of load. The system has a supply source which is of three phase in nature The system design of the whole system includes various subsystems which includes the PI controller , STATCOM different transformer and other connecting circuitry in simulink then we minimize the cost problem to show the improvement in power quality . The PI controller used in the design have some parameter which can be tabulated as follows: The different parameter used in PI controller are based on hoit and trial method which is the best method for proper tuning.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 104 3. RESULTS AND DISCUSSION CASE I: At start when particles try to overlap and in search for best possible result Fig. 1 At start when particles try to overlap and in search for best possible result In the fig 1, Out of different possible cases we observed the case when we have the present best position values of particle start to obtain the global optimum values i.e. the values are start to overlap with global best. CASE II: Simulation Results Using STATCOM With PSO (gbest value with best fitness in voltage regulation and improving weight inertia). The result in this case shows the improvement in inertia weight from about 0.87 to 0.85 approximately which is of almost an improvement of about 0.02 in inertia weight which leads us to the conclusion that we have an improved result with the technique which we have used here. Also from this we concluded that we have the improved gbest fitness in voltage regulation with improved weight inertia. CASE III: Simulation Results Using STATCOM With COPSO/Hybrid PSO (Final Improved weight with maximum coverage of voltage with copso). Now we utilized the concept of COPSO which gives us the further improved results. In the below fig.3 now again we have obtain the dimensional plot of the system which we have design to obtain the particle dynamicswithCOPSO whichwe have with 5 dimensions and now as we have the inertia weight in the above result as close to 0.83 which is an improved version from the previouscasewhichismorethan the result of inertia weight obtained in this so in this casewe obtained the gbest fitness in voltage regulation with improved weight inertia. 3. CONCLUSION Thus in this paper we present the MATLAB SIMULINK simulation results of Hybrid PSO using D-STATCOM. The device performance in mitigating voltage sag and other power quality problems is studied and analyzed. A comparative study is also made based on the THD and other parameters as needed of the load voltage after compensation. From the comparative study it can inferred that the hybrid particle swamp optimization is efficient in mitigating the voltage sag and other powerqualityproblems and allow us to arrive us a more suitable acceptable solution close to global best.
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 07 | July -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 105 [1]. Kantaria, R. A.; Joshi, S.K.; Siddhapura, K. R., "A novel technique for mitigation of voltage sag/swell by Dynamic Voltage Restorer (DVR)," Electro/Information Technology (EIT), 2010 IEEE International Conference on , vol., no., pp.1,4,20-22 May 2010. [2]. Kong Shuhong; Yin Zhongdong; Shan Renzhong; Shang Weidong, "A Survey on the Principle and Control ofDynamic Voltage Restorer," Energy and Environment Technology, 2009. ICEET '09. International Conference on , vol.2, no., pp.57,60, 16-18 Oct. 2009. [3]. Elango, S.; Chandra Sekaran, E., "Mitigation of Voltage Sag by Using Distribution Static Compensator (D- STATCOM)," Process Automation, Control and Computing (PACC), 2011 International Conference on , vol., no., pp.1,6, 20-22 July 2011. [4]. Ledwich, G.; Ghosh, A., "A flexible DSTATCOM operating in voltage or current control mode," Generation, Transmission and Distribution, IEE Proceedings- , vol.149, no.2, pp.215,224, Mar 2002. [5]. Ambarnath Banerji , Sujit K. Biswas , Bhim Singh , “DSTATCOM Application for Mitigation of Voltage Sag Caused by Dynamic Loads in Autonomous Systems” International Journal of Power ElectronicsandDriveSystem (IJPEDS), vol.2, No.2, June 2012. [6]. Haque, M. H., "Compensation of distribution system voltage sag by DVR and D-STATCOM," Power Tech Proceedings, 2001 IEEE Porto , vol.1, no., pp.5 pp. vol.1,, 2001. [7] Sainadh singh “libs/statcom with pso based pi controller for a grid connected wind energy system “ Energy and EnvironmentTechnology,2009.ICEET'09.International Conference on , vol.2, no., pp.67,72, 18-23 Nov. 2012. [8] V. tuzikova, z. müller, j. švec, v. valouch “particle swarm based optimization of power losses in network using statcom” ARPN journal of engineering and applied science, vol. 2, no. 3, pp. 7-13, June 2007. REFERENCES