SlideShare a Scribd company logo
1 of 4
Download to read offline
National Conference on Artificial Intelligence and Agents: Theory & Applications December 2011, IT-BHU Varanasi
57

Abstract-- This paper introduces a solution of the economic load
dispatch (ELD) problem using a hybrid approach of fuzzy logic
and genetic algorithm (GA). The proposed method combines and
extends the attractive features of both fuzzy logic and GA. The
proposed approach is compared with lambda iteration method
(LIM) and GA. The investigation reveals that the proposed
approach can provide accurate solution with fast convergence
characteristics and is superior to the GA and LIM.
Index Terms-- Economic load dispatch, fuzzy logic, genetic
algorithm, lambda iteration method.
I. INTRODUCTION
The area of electric power systems are increasing rapidly to
provide the energy requirements. With the development of
integrated power system, it becomes necessary to operate the
plant units economically. Thus ELD occupied an important
position in the electric power system. For any specified load
condition, ELD determines the power output of each plant
(and each generating unit within the plant) which will
minimize the overall cost of fuel needed to serve the system
load [1].
II. ECONOMIC LOAD DISPATCH
A. Fuel cost function
The minimization of objective function is the primary
concern of an ELD problem. The objective function meets the
demand of generation and satisfies all other constraints.
Mathematically objective function of ELD problem with
constrained optimization problem is
FT is the total generation cost; N is the total number of
generating units; Fi is the power generation cost function of the
ith unit. The total cost of operation includes the fuel cost, costs
of labour, maintenance and supplies. Mostly, costs of labour,
supplies and maintenance are fixed percentages of incoming
fuel costs. Now assume that the variation of fuel cost of each
generator with the active power output is given by a quadratic
polynomial
Satyendra P. Singh is with the Department of Electrical Engineering,
Institute of Technology, B.H.U., Varanasi.
(e-mail: satya.989@gmail.com)
Suman Bhullar is with the Department of Electrical and Instrumentation
Engineering, Thapar University, Patiala.
(e-mail: suman.bhullar@thapar.edu)
Where, Pi is power output of generator i; ai, bi, and ci are cost
coefficient.
The ELD problem is defined as to minimize the total operating
cost of a power system while meeting the total load plus
transmission losses within generator limits.
Subject to (1) the energy balance equation
(2) the inequality constraints
Where PL is power transmission loss
III. LIM FOR THE SOLUTION OF THE ELD PROBLEM
The LIM is the most popular method for the solution of the
economic load dispatch. It gives a decentralized solution to the
ELD problem by equating the marginal cost of generation of
each thermal unit to the price of electricity, or, equivalently,
the marginal revenue of each unit under perfect competition
conditions, known as system lambda [2].
The minimum and maximum lambda values are initially
computed,
The initial value chosen for lambda is the mid-point of the
interval ( λmin, λmax), i.e,
IV. GENETIC ALGORITHM
The GA is a stochastic global search method that mimics
the metaphor of natural biological evolution such as selection,
crossover, and mutation [3-4]. GA‟s work on string structures
where string is binary digits which represent a coding of
control parameters for a given problem. All parameters of the
given problem are coded with strings of bits. The individual
bit is called „gene‟ and the content of the each gene is called
„allele‟. Typically, the genetic algorithms have three phases
initialization, evaluation and genetic operation. The fitness
function for the maximization problem is
f(x) = F (x)
and for the minimization problem is
Where f(x) is fitness function and F(x) is objective function.
In genetic operation phase, we generate a new population from
the previous population using genetic operators. They are
Hybrid Approach to Economic Load Dispatch
Satyendra P. Singh, Suman Bhullar
National Conference on Artificial Intelligence and Agents: Theory & Applications December 2011, IT-BHU Varanasi
58
reproduction, crossover and mutation. Reproduction is the
operator used to copy the old chromosome into matting pool
according to its fittest value. Higher the fitness of the
chromosome more is number of the copies in the next
generation chromosome.
The various methods of selecting chromosomes for parents to
crossover are roulette-wheel selection, boltzmann selection,
tournament selection, rank selection, steady state selection etc.
The commonly used reproduction operator is the roulette-
wheel selection method where a string is selected from the
mating pool with a probability proportional to the fitness [8].
The roulette-wheel mechanism is expected to make fi / fitavg
copies of ith string of the mating pool. The average fitness is
The basic operator for producing new chromosome is
crossover. In this operator, information is exchanged among
strings of matting pool to create new strings. The final genetic
operator in the algorithm is mutation. In general evolution,
mutation is a random process where one allele of a gene is
replaced by another to produce a new genetic structure.
Mutation is an important operation, because newly created
individuals have no new inheritance information and the
number of alleles is constantly decreasing.
V. HYBRID GENETIC ALGORITHM
Hybrid systems are those which employ integrated
technologies to effectively solve problems. Hybrid systems are
classified as sequential, auxiliary and embedded hybrids. For
better results and to get faster convergence, conventional GA
modes have been modified. In recent years various techniques
have been studied to achieve this objective [5].
Hybrid GA proposes a flexible Genetic Algorithm which based
on fuzzy logic rules with the ability to adjust continuously the
crossover and mutation parameters. Figure 1 presents the
proposed block diagram of a fuzzy logic controlled genetic
algorithm.
Fig 1 Global block diagram of the genetic parameters adjustment.
Crossover and Mutation are considered critical for GA
convergence. A suitable value for mutation provides balance
between global and local exploration abilities and
consequently results in a reduction of the number of iterations
required to locate the optimum solution.
A. Membership Function Design
The variables chosen for this controller are change in
average fitness (Δf(t)), change in average fitness in last
iteration (Δf(t-1)), change in crossover probability (Δc(t)) and
change in mutation probability Δm(t). In this Δf(t) and Δf(t-1)
are the input variables and Δc(t) is the crossover output and
Δm(t) is the mutation output variable. The number of linguistic
variables describing the fuzzy subsets of a variable varies
according to the application. Usually an odd number is used.
However, increasing the number of fuzzy subsets results in a
corresponding increase in the number of rules. The
membership function maps the crisp values into fuzzy
variables. The triangular membership functions are used to
define the degree of membership. Each of the input and output
fuzzy variables is assigned nine linguistic fuzzy subsets
varying from negative larger (NL) to positive larger (PL).
Membership functions of fuzzy input and output linguistic
variables are shown in Fig [2-3-4]
Fig. 2 Membership functions for Δf (t)
Fig. 3 Membership functions for Δf (t-1)
Fig. 4 Membership functions for Δc(t)
The inputs to the crossover fuzzy logic controller are
changes in fitness at two consecutive steps, i.e. Δf(t - l), Δf(t),
and the output of which is change in crossover Δc(t). Δf(t-1),
Δf(t) are normalised into the range of [-1.0, 1.0], and Δc(t) is
normalised into the range of [-0.1,0.1] according to their
corresponding maximum values. The mutation operation is
determined by the flip function with mutation probability
rate, and the mutate bit is randomly performed. The mutation
probability rate is automatically modified during the
optimization process based on the fuzzy logic controller.
The two inputs, Δf(t) and Δf(t-1), result in 81 rules. The
typical rules are having the following structure:
Rule 1: If Δf(t) is NL (negative larger) AND Δf(t-1) is NM
(negative medium) then Δc(t) (output of fuzzy crossover) is
NR (negative large).
National Conference on Artificial Intelligence and Agents: Theory & Applications December 2011, IT-BHU Varanasi
59
Rule 2: If Δf(t) is PM (positive medium) AND Δf(t-1) is NL
(negative larger) then Δc(t) (output of fuzzy crossover) is NS
(negative small).
Rule 3: If Δf(t) is ZE (zero) AND Δf(t-1) is PR (positive large)
then Δc(t) (output of fuzzy crossover) is PM (positive
medium).. And so on….
Now the flow chart of Hybrid GA to solve ELD problem is
shown in figure4
Fig 4 Flow chart of Hybrid GA to solve ELD
VI. RESULT AND DISCUSSIONS
The results of ELD after the implementation of proposed
fuzzy logic controlled genetic algorithm are discussed and
compared with the GA and classical method (lambda
iteration). The algorithms are implemented in MATLAB to
solve ELD problem. The main objective is to minimize the
cost of generation of thermal plants using Hybrid GA, GA and
classical Lambda Iteration Method. The performance is
evaluated with losses for two set generator data, which are
referred as Problem I and Problem II.
Problem I: Three generator test systems [7]
Problem II: Ten generator test systems [6]
For GA problem assume the length of the string, l is 16,
population of string, pop is 20, crossover probability, pc is 0.8
and mutation probability, pm is 0.01.
A. Problem I: Three generator test systems
The coefficients of fuel cost are given below in Tables I.
The power demand is considered to be 300MW. The results
corresponding to LIM, GA and Hybrid GA for problem I is
detailed in table II.
TABLE I
COEFFICIENTS OF FUEL COST
Unit no ai bi ci
1 0.00525 8.663 328.13
2 0.00609 10.040 136.91
3 0.00592 9.760 59.16
TABLE II
THREE GENERATOR TEST RESULTS ( PD = 300 MW )
LIM GA Hybrid GA
P1 202.49 202.464 202.457
P2 81.0267 80.9787 80.9728
P3 27.0149 27.0799 27.0779
Fitness - 0.999957 0.999911
Losses 10.5311 10.5354 10.5344
Error 0.000652 0.0129291 0.0268417
Total cost 3615.11 3614.95 3614.79
Developed program returns the generated power, total cost,
total losses and error.
B. Problem II: Ten generator test systems
Again the proposed technique has been performed on a
sample system which consists of ten generator system. The
power demand is considered to be 1440MW. Transmission
loss coefficients are given in table III [6]. The results
corresponding to LIM, GA and Hybrid GA for problem II is
detailed in table IV.
TABLE III
TRANSMISSION LOSS COEFFICIENTS
Unit no ai bi ci
1 0.001220 7.92 630
2 0.004700 7.91 190
3 0.001320 7.93 625
4 0.001153 7.92 723
5 0.001154 7.93 717
6 0.001562 7.92 561
7 0.001153 7.92 723
8 0.001321 7.91 618
9 0.001319 7.00 561
10 0.001530 7.00 561
TABLE IV
TEN GENERATOR TEST RESULTS ( PD = 1440 MW )
LIM GA Hybrid GA
P1 160 160 203.373
P2 65 65 65
P3 150 150 150
P4 170 170 170
P5 160 160 160
P6 130 130 130
P7 170 170 170
P8 145 145 145
P9 140 140 140
P10 163.926 163.971 120
Fitness - 0.999976 0.999993
Losses 13.9357 13.9361 13.3623
Error 0.026341 0.0345486 0.010387
Total cost 17608.4 17608.7 17576.2
VII. CONCLUSION
In this paper, Hybrid Genetic Algorithm has been
successfully introduced to obtain the optimum solution of
ELD. Power system has large variation in load from time to
time and it is not possible to have the load dispatch for every
National Conference on Artificial Intelligence and Agents: Theory & Applications December 2011, IT-BHU Varanasi
60
possible load demand. As there is no general procedure for
finding out the optimum solution of economical load dispatch.
This is where Hybrid GA plays an important role to find out
the optimum solution in a fraction of second. In the proposed
method two fuzzy controllers have been designed to adaptively
adjust the crossover probability and mutation rate during the
optimization process based on some heuristics.
For the testing of proposed algorithm, three generators and
ten generators test systems are used. The results obtained from
proposed method are also compared with conventional GA and
the Lambda Iteration Method. It is found that Hybrid GA is
giving better results than GA and LIM. i.e. Hybrid GA proves
their fast algorithm and yields true optimum generations of
both operating costs and transmission line losses of the power
system.
VIII. ACKNOWLEDGMENT
The authors gratefully acknowledge the contributions of
Prof. S. P. Singh (Senior Member, IEEE) Department of
Electrical Engineering, IT-BHU, Varanasi, for his work on the
original version of this document.
IX. REFERENCES
[1] A. J. Wood and B. F. Wollenberg, Power Generation, Operation and
Control, 2nd Edition, New York: John Wiley & Sons, 1996.
[2] Chowdhury B.H., Rahman Saifur, “A Review of Recent Advances in
Economic Dispatch”, IEEE Transactions on Power Systems, Vol. 5, No.
4, November 1990
[3] http:// en.wikipedia.org/wiki/Genetic_algorithm
[4] Mitchell M., An Introduction to Genetic Algorithm. MIT Press, 1998.
[5] Yalcinoz. T, Altun. H, and Uzam. M, “Economic dispatch solution
using genetic algorithm based on arithmetic crossover, “in Proc. IEEE
Porto Power Tech. Conf., Porto, Portugal, Sep. 2001
[6] Roa C.A-Sepulveda, Herrera M., Pavez-Lazo. B, Knight U.G., Coonick
A.H., “Economic Dispatch using fuzzy decision trees”, Electric Power
Systems Research 66 (2003) 115_/122, Dec 2002
[7] Kothari D.P., Dhillon J.S., “Power System Optimization”, Prentice-Hall
of India
[8] Vijayalakshmi. G.A., Rajsekaran. S, “Neural Networks, Fuzzy Logic,
and Genetic Algorithms” synthesis and application

More Related Content

What's hot

Enriched Firefly Algorithm for Solving Reactive Power Problem
Enriched Firefly Algorithm for Solving Reactive Power ProblemEnriched Firefly Algorithm for Solving Reactive Power Problem
Enriched Firefly Algorithm for Solving Reactive Power Problemijeei-iaes
 
Enhancing energy efficient dynamic load balanced clustering protocol using Dy...
Enhancing energy efficient dynamic load balanced clustering protocol using Dy...Enhancing energy efficient dynamic load balanced clustering protocol using Dy...
Enhancing energy efficient dynamic load balanced clustering protocol using Dy...IJTET Journal
 
Hybrid method for solving the non smooth cost function economic dispatch prob...
Hybrid method for solving the non smooth cost function economic dispatch prob...Hybrid method for solving the non smooth cost function economic dispatch prob...
Hybrid method for solving the non smooth cost function economic dispatch prob...IJECEIAES
 
5. 9375 11036-1-sm-1 20 apr 18 mar 16oct2017 ed iqbal qc
5. 9375 11036-1-sm-1 20 apr 18 mar 16oct2017 ed iqbal qc5. 9375 11036-1-sm-1 20 apr 18 mar 16oct2017 ed iqbal qc
5. 9375 11036-1-sm-1 20 apr 18 mar 16oct2017 ed iqbal qcIAESIJEECS
 
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...inventionjournals
 
Application of-computational-intelligence-techniques-for-economic-load-dispatch
Application of-computational-intelligence-techniques-for-economic-load-dispatchApplication of-computational-intelligence-techniques-for-economic-load-dispatch
Application of-computational-intelligence-techniques-for-economic-load-dispatchCemal Ardil
 
Linear programming: A Geometric Approach
Linear programming: A Geometric ApproachLinear programming: A Geometric Approach
Linear programming: A Geometric ApproachEFREN ARCHIDE
 
Dg source allocation by fuzzy and sa in distribution system for loss reductio...
Dg source allocation by fuzzy and sa in distribution system for loss reductio...Dg source allocation by fuzzy and sa in distribution system for loss reductio...
Dg source allocation by fuzzy and sa in distribution system for loss reductio...Alexander Decker
 
19 avadhanam kartikeya sarma 177-185
19 avadhanam kartikeya sarma 177-18519 avadhanam kartikeya sarma 177-185
19 avadhanam kartikeya sarma 177-185Alexander Decker
 
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...ijsc
 
論文紹介 Combining Model-Based and Model-Free Updates for Trajectory-Centric Rein...
論文紹介 Combining Model-Based and Model-Free Updates for Trajectory-Centric Rein...論文紹介 Combining Model-Based and Model-Free Updates for Trajectory-Centric Rein...
論文紹介 Combining Model-Based and Model-Free Updates for Trajectory-Centric Rein...Kusano Hitoshi
 
Unit.3. duality and sensetivity analisis
Unit.3. duality and sensetivity analisisUnit.3. duality and sensetivity analisis
Unit.3. duality and sensetivity analisisDagnaygebawGoshme
 
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...ijcsit
 
HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...
HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...
HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...ecij
 
Implementation of BDDs by Various Techniques in Low Power VLSI Design
Implementation of BDDs by Various Techniques in Low Power VLSI DesignImplementation of BDDs by Various Techniques in Low Power VLSI Design
Implementation of BDDs by Various Techniques in Low Power VLSI Designidescitation
 

What's hot (18)

Enriched Firefly Algorithm for Solving Reactive Power Problem
Enriched Firefly Algorithm for Solving Reactive Power ProblemEnriched Firefly Algorithm for Solving Reactive Power Problem
Enriched Firefly Algorithm for Solving Reactive Power Problem
 
Enhancing energy efficient dynamic load balanced clustering protocol using Dy...
Enhancing energy efficient dynamic load balanced clustering protocol using Dy...Enhancing energy efficient dynamic load balanced clustering protocol using Dy...
Enhancing energy efficient dynamic load balanced clustering protocol using Dy...
 
Hybrid method for solving the non smooth cost function economic dispatch prob...
Hybrid method for solving the non smooth cost function economic dispatch prob...Hybrid method for solving the non smooth cost function economic dispatch prob...
Hybrid method for solving the non smooth cost function economic dispatch prob...
 
5. 9375 11036-1-sm-1 20 apr 18 mar 16oct2017 ed iqbal qc
5. 9375 11036-1-sm-1 20 apr 18 mar 16oct2017 ed iqbal qc5. 9375 11036-1-sm-1 20 apr 18 mar 16oct2017 ed iqbal qc
5. 9375 11036-1-sm-1 20 apr 18 mar 16oct2017 ed iqbal qc
 
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
Solving Assembly Line Balancing Problem Using A Hybrid Genetic Algorithm With...
 
Application of-computational-intelligence-techniques-for-economic-load-dispatch
Application of-computational-intelligence-techniques-for-economic-load-dispatchApplication of-computational-intelligence-techniques-for-economic-load-dispatch
Application of-computational-intelligence-techniques-for-economic-load-dispatch
 
Linear programming: A Geometric Approach
Linear programming: A Geometric ApproachLinear programming: A Geometric Approach
Linear programming: A Geometric Approach
 
Dg source allocation by fuzzy and sa in distribution system for loss reductio...
Dg source allocation by fuzzy and sa in distribution system for loss reductio...Dg source allocation by fuzzy and sa in distribution system for loss reductio...
Dg source allocation by fuzzy and sa in distribution system for loss reductio...
 
linear programming
linear programming linear programming
linear programming
 
19 avadhanam kartikeya sarma 177-185
19 avadhanam kartikeya sarma 177-18519 avadhanam kartikeya sarma 177-185
19 avadhanam kartikeya sarma 177-185
 
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
HYBRID PARTICLE SWARM OPTIMIZATION FOR SOLVING MULTI-AREA ECONOMIC DISPATCH P...
 
論文紹介 Combining Model-Based and Model-Free Updates for Trajectory-Centric Rein...
論文紹介 Combining Model-Based and Model-Free Updates for Trajectory-Centric Rein...論文紹介 Combining Model-Based and Model-Free Updates for Trajectory-Centric Rein...
論文紹介 Combining Model-Based and Model-Free Updates for Trajectory-Centric Rein...
 
Unit.4.integer programming
Unit.4.integer programmingUnit.4.integer programming
Unit.4.integer programming
 
Unit.3. duality and sensetivity analisis
Unit.3. duality and sensetivity analisisUnit.3. duality and sensetivity analisis
Unit.3. duality and sensetivity analisis
 
L367174
L367174L367174
L367174
 
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
APPLYING TRANSFORMATION CHARACTERISTICS TO SOLVE THE MULTI OBJECTIVE LINEAR F...
 
HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...
HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...
HYDROTHERMAL COORDINATION FOR SHORT RANGE FIXED HEAD STATIONS USING FAST GENE...
 
Implementation of BDDs by Various Techniques in Low Power VLSI Design
Implementation of BDDs by Various Techniques in Low Power VLSI DesignImplementation of BDDs by Various Techniques in Low Power VLSI Design
Implementation of BDDs by Various Techniques in Low Power VLSI Design
 

Viewers also liked

Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...
Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...
Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...IOSR Journals
 
A review
A reviewA review
A reviewedzam
 
Recognize learning with the ELD method
Recognize learning with the ELD methodRecognize learning with the ELD method
Recognize learning with the ELD methodTerese Raymond
 
Genetic Algorithm for Solving the Economic Load Dispatch
Genetic Algorithm for Solving the Economic Load DispatchGenetic Algorithm for Solving the Economic Load Dispatch
Genetic Algorithm for Solving the Economic Load DispatchSatyendra Singh
 
OPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMS
OPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMSOPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMS
OPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMSIAEME Publication
 
Lecture 04 newton-raphson, secant method etc
Lecture 04 newton-raphson, secant method etcLecture 04 newton-raphson, secant method etc
Lecture 04 newton-raphson, secant method etcRiyandika Jastin
 
Karmarkar's Algorithm For Linear Programming Problem
Karmarkar's Algorithm For Linear Programming ProblemKarmarkar's Algorithm For Linear Programming Problem
Karmarkar's Algorithm For Linear Programming ProblemAjay Dhamija
 
Definition of linear programming problem model decision variable, objective ...
Definition of linear programming problem model decision variable, objective ...Definition of linear programming problem model decision variable, objective ...
Definition of linear programming problem model decision variable, objective ...Sunny Mervyne Baa
 
algebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant methodalgebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant methodNagma Modi
 
Newton raphson
Newton raphsonNewton raphson
Newton raphsonbaxter89
 
Newton Raphson
Newton RaphsonNewton Raphson
Newton RaphsonAisu
 
Introduction to Genetic Algorithms
Introduction to Genetic AlgorithmsIntroduction to Genetic Algorithms
Introduction to Genetic AlgorithmsAhmed Othman
 
Applications of linear programming
Applications of linear programmingApplications of linear programming
Applications of linear programmingZenblade 93
 
Linear Programming 1
Linear Programming 1Linear Programming 1
Linear Programming 1irsa javed
 
Genetic Algorithm by Example
Genetic Algorithm by ExampleGenetic Algorithm by Example
Genetic Algorithm by ExampleNobal Niraula
 

Viewers also liked (20)

Ll1411
Ll1411Ll1411
Ll1411
 
Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...
Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...
Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...
 
A review
A reviewA review
A review
 
Recognize learning with the ELD method
Recognize learning with the ELD methodRecognize learning with the ELD method
Recognize learning with the ELD method
 
Genetic Algorithm for Solving the Economic Load Dispatch
Genetic Algorithm for Solving the Economic Load DispatchGenetic Algorithm for Solving the Economic Load Dispatch
Genetic Algorithm for Solving the Economic Load Dispatch
 
Newton raphson
Newton raphsonNewton raphson
Newton raphson
 
OPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMS
OPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMSOPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMS
OPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMS
 
Lecture 04 newton-raphson, secant method etc
Lecture 04 newton-raphson, secant method etcLecture 04 newton-raphson, secant method etc
Lecture 04 newton-raphson, secant method etc
 
Karmarkar's Algorithm For Linear Programming Problem
Karmarkar's Algorithm For Linear Programming ProblemKarmarkar's Algorithm For Linear Programming Problem
Karmarkar's Algorithm For Linear Programming Problem
 
Definition of linear programming problem model decision variable, objective ...
Definition of linear programming problem model decision variable, objective ...Definition of linear programming problem model decision variable, objective ...
Definition of linear programming problem model decision variable, objective ...
 
algebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant methodalgebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant method
 
Newton raphson
Newton raphsonNewton raphson
Newton raphson
 
Newton Raphson
Newton RaphsonNewton Raphson
Newton Raphson
 
Introduction to Genetic Algorithms
Introduction to Genetic AlgorithmsIntroduction to Genetic Algorithms
Introduction to Genetic Algorithms
 
Applications of linear programming
Applications of linear programmingApplications of linear programming
Applications of linear programming
 
Genetic Algorithms
Genetic AlgorithmsGenetic Algorithms
Genetic Algorithms
 
Linear Programming 1
Linear Programming 1Linear Programming 1
Linear Programming 1
 
Genetic algorithm
Genetic algorithm Genetic algorithm
Genetic algorithm
 
Linear programing
Linear programingLinear programing
Linear programing
 
Genetic Algorithm by Example
Genetic Algorithm by ExampleGenetic Algorithm by Example
Genetic Algorithm by Example
 

Similar to Hybrid Approach to Economic Load Dispatch Using Fuzzy Logic and Genetic Algorithm

An Effective Biogeography Based Optimization Algorithm to Slove Economic Load...
An Effective Biogeography Based Optimization Algorithm to Slove Economic Load...An Effective Biogeography Based Optimization Algorithm to Slove Economic Load...
An Effective Biogeography Based Optimization Algorithm to Slove Economic Load...Hanoi, Water Resources University
 
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodEconomic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodIOSR Journals
 
THD Optimization in 13 level photovoltaic inverter using Genetic Algorithm
THD Optimization in 13 level photovoltaic inverter using Genetic AlgorithmTHD Optimization in 13 level photovoltaic inverter using Genetic Algorithm
THD Optimization in 13 level photovoltaic inverter using Genetic AlgorithmSuman Debnath
 
IRJET- A Genetic based Stochastic Approach for Solving Thermal Unit Commitmen...
IRJET- A Genetic based Stochastic Approach for Solving Thermal Unit Commitmen...IRJET- A Genetic based Stochastic Approach for Solving Thermal Unit Commitmen...
IRJET- A Genetic based Stochastic Approach for Solving Thermal Unit Commitmen...IRJET Journal
 
PRACTICAL IMPLEMENTION OF GAOPF ON INDIAN 220KV TRANSMISSION SYSTEM
PRACTICAL IMPLEMENTION OF GAOPF ON INDIAN 220KV TRANSMISSION SYSTEMPRACTICAL IMPLEMENTION OF GAOPF ON INDIAN 220KV TRANSMISSION SYSTEM
PRACTICAL IMPLEMENTION OF GAOPF ON INDIAN 220KV TRANSMISSION SYSTEMecij
 
Performance Analysis of GA and PSO over Economic Load Dispatch Problem
Performance Analysis of GA and PSO over Economic Load Dispatch ProblemPerformance Analysis of GA and PSO over Economic Load Dispatch Problem
Performance Analysis of GA and PSO over Economic Load Dispatch ProblemIOSR Journals
 
An Optimal LFC in Two-Area Power Systems Using a Meta-heuristic Optimization...
An Optimal LFC in Two-Area Power Systems Using  a Meta-heuristic Optimization...An Optimal LFC in Two-Area Power Systems Using  a Meta-heuristic Optimization...
An Optimal LFC in Two-Area Power Systems Using a Meta-heuristic Optimization...IJECEIAES
 
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...IOSR Journals
 
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...ijsc
 
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMIJARIIT
 
Firefly Algorithm to Opmimal Distribution of Reactive Power Compensation Units
Firefly Algorithm to Opmimal Distribution of Reactive Power Compensation Units Firefly Algorithm to Opmimal Distribution of Reactive Power Compensation Units
Firefly Algorithm to Opmimal Distribution of Reactive Power Compensation Units IJECEIAES
 
Tap changer optimisation using embedded differential evolutionary programming...
Tap changer optimisation using embedded differential evolutionary programming...Tap changer optimisation using embedded differential evolutionary programming...
Tap changer optimisation using embedded differential evolutionary programming...journalBEEI
 
Differential Evolution Algorithm for Optimal Power Flow and Economic Load Dis...
Differential Evolution Algorithm for Optimal Power Flow and Economic Load Dis...Differential Evolution Algorithm for Optimal Power Flow and Economic Load Dis...
Differential Evolution Algorithm for Optimal Power Flow and Economic Load Dis...theijes
 
A genetic algorithm for the optimal design of a multistage amplifier
A genetic algorithm for the optimal design of a multistage amplifier  A genetic algorithm for the optimal design of a multistage amplifier
A genetic algorithm for the optimal design of a multistage amplifier IJECEIAES
 

Similar to Hybrid Approach to Economic Load Dispatch Using Fuzzy Logic and Genetic Algorithm (20)

An Effective Biogeography Based Optimization Algorithm to Slove Economic Load...
An Effective Biogeography Based Optimization Algorithm to Slove Economic Load...An Effective Biogeography Based Optimization Algorithm to Slove Economic Load...
An Effective Biogeography Based Optimization Algorithm to Slove Economic Load...
 
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodEconomic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
 
THD Optimization in 13 level photovoltaic inverter using Genetic Algorithm
THD Optimization in 13 level photovoltaic inverter using Genetic AlgorithmTHD Optimization in 13 level photovoltaic inverter using Genetic Algorithm
THD Optimization in 13 level photovoltaic inverter using Genetic Algorithm
 
IRJET- A Genetic based Stochastic Approach for Solving Thermal Unit Commitmen...
IRJET- A Genetic based Stochastic Approach for Solving Thermal Unit Commitmen...IRJET- A Genetic based Stochastic Approach for Solving Thermal Unit Commitmen...
IRJET- A Genetic based Stochastic Approach for Solving Thermal Unit Commitmen...
 
K346670
K346670K346670
K346670
 
PRACTICAL IMPLEMENTION OF GAOPF ON INDIAN 220KV TRANSMISSION SYSTEM
PRACTICAL IMPLEMENTION OF GAOPF ON INDIAN 220KV TRANSMISSION SYSTEMPRACTICAL IMPLEMENTION OF GAOPF ON INDIAN 220KV TRANSMISSION SYSTEM
PRACTICAL IMPLEMENTION OF GAOPF ON INDIAN 220KV TRANSMISSION SYSTEM
 
A Case Study of Economic Load Dispatch for a Thermal Power Plant using Partic...
A Case Study of Economic Load Dispatch for a Thermal Power Plant using Partic...A Case Study of Economic Load Dispatch for a Thermal Power Plant using Partic...
A Case Study of Economic Load Dispatch for a Thermal Power Plant using Partic...
 
Performance Analysis of GA and PSO over Economic Load Dispatch Problem
Performance Analysis of GA and PSO over Economic Load Dispatch ProblemPerformance Analysis of GA and PSO over Economic Load Dispatch Problem
Performance Analysis of GA and PSO over Economic Load Dispatch Problem
 
An Optimal LFC in Two-Area Power Systems Using a Meta-heuristic Optimization...
An Optimal LFC in Two-Area Power Systems Using  a Meta-heuristic Optimization...An Optimal LFC in Two-Area Power Systems Using  a Meta-heuristic Optimization...
An Optimal LFC in Two-Area Power Systems Using a Meta-heuristic Optimization...
 
Grey wolf optimizer algorithm based real time implementation of PIDDTC and FD...
Grey wolf optimizer algorithm based real time implementation of PIDDTC and FD...Grey wolf optimizer algorithm based real time implementation of PIDDTC and FD...
Grey wolf optimizer algorithm based real time implementation of PIDDTC and FD...
 
Differential Evolution Algorithm with Triangular Adaptive Control Parameter f...
Differential Evolution Algorithm with Triangular Adaptive Control Parameter f...Differential Evolution Algorithm with Triangular Adaptive Control Parameter f...
Differential Evolution Algorithm with Triangular Adaptive Control Parameter f...
 
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
 
E010123337
E010123337E010123337
E010123337
 
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
Hybrid Particle Swarm Optimization for Solving Multi-Area Economic Dispatch P...
 
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
 
Firefly Algorithm to Opmimal Distribution of Reactive Power Compensation Units
Firefly Algorithm to Opmimal Distribution of Reactive Power Compensation Units Firefly Algorithm to Opmimal Distribution of Reactive Power Compensation Units
Firefly Algorithm to Opmimal Distribution of Reactive Power Compensation Units
 
Comparison of Cascaded H-bridge Inverters for Harmonic Mitigation Considerin...
Comparison of Cascaded H-bridge Inverters for Harmonic  Mitigation Considerin...Comparison of Cascaded H-bridge Inverters for Harmonic  Mitigation Considerin...
Comparison of Cascaded H-bridge Inverters for Harmonic Mitigation Considerin...
 
Tap changer optimisation using embedded differential evolutionary programming...
Tap changer optimisation using embedded differential evolutionary programming...Tap changer optimisation using embedded differential evolutionary programming...
Tap changer optimisation using embedded differential evolutionary programming...
 
Differential Evolution Algorithm for Optimal Power Flow and Economic Load Dis...
Differential Evolution Algorithm for Optimal Power Flow and Economic Load Dis...Differential Evolution Algorithm for Optimal Power Flow and Economic Load Dis...
Differential Evolution Algorithm for Optimal Power Flow and Economic Load Dis...
 
A genetic algorithm for the optimal design of a multistage amplifier
A genetic algorithm for the optimal design of a multistage amplifier  A genetic algorithm for the optimal design of a multistage amplifier
A genetic algorithm for the optimal design of a multistage amplifier
 

More from Satyendra Singh

An intellectual property right granted by the
An intellectual property right granted by theAn intellectual property right granted by the
An intellectual property right granted by theSatyendra Singh
 
Process of Innovation: It's about taking that idea and turning it into a real...
Process of Innovation: It's about taking that idea and turning it into a real...Process of Innovation: It's about taking that idea and turning it into a real...
Process of Innovation: It's about taking that idea and turning it into a real...Satyendra Singh
 
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...Satyendra Singh
 
Voltage Stability Assessment using Phasor Measurement Units in Power Network ...
Voltage Stability Assessment using Phasor Measurement Units in Power Network ...Voltage Stability Assessment using Phasor Measurement Units in Power Network ...
Voltage Stability Assessment using Phasor Measurement Units in Power Network ...Satyendra Singh
 
Optimal PMU Placement in Power System Considering the Measurement Redundancy
Optimal PMU Placement in Power System Considering the Measurement RedundancyOptimal PMU Placement in Power System Considering the Measurement Redundancy
Optimal PMU Placement in Power System Considering the Measurement RedundancySatyendra Singh
 
Optimal placement of_phasor_measurement_units_using_gravitat
Optimal placement of_phasor_measurement_units_using_gravitatOptimal placement of_phasor_measurement_units_using_gravitat
Optimal placement of_phasor_measurement_units_using_gravitatSatyendra Singh
 

More from Satyendra Singh (6)

An intellectual property right granted by the
An intellectual property right granted by theAn intellectual property right granted by the
An intellectual property right granted by the
 
Process of Innovation: It's about taking that idea and turning it into a real...
Process of Innovation: It's about taking that idea and turning it into a real...Process of Innovation: It's about taking that idea and turning it into a real...
Process of Innovation: It's about taking that idea and turning it into a real...
 
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
PuShort Term Hydrothermal Scheduling using Evolutionary Programmingblished pa...
 
Voltage Stability Assessment using Phasor Measurement Units in Power Network ...
Voltage Stability Assessment using Phasor Measurement Units in Power Network ...Voltage Stability Assessment using Phasor Measurement Units in Power Network ...
Voltage Stability Assessment using Phasor Measurement Units in Power Network ...
 
Optimal PMU Placement in Power System Considering the Measurement Redundancy
Optimal PMU Placement in Power System Considering the Measurement RedundancyOptimal PMU Placement in Power System Considering the Measurement Redundancy
Optimal PMU Placement in Power System Considering the Measurement Redundancy
 
Optimal placement of_phasor_measurement_units_using_gravitat
Optimal placement of_phasor_measurement_units_using_gravitatOptimal placement of_phasor_measurement_units_using_gravitat
Optimal placement of_phasor_measurement_units_using_gravitat
 

Recently uploaded

GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
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
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
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
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
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
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
(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
 
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
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 

Recently uploaded (20)

9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
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
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
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
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi 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
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
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
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
(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...
 
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
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 

Hybrid Approach to Economic Load Dispatch Using Fuzzy Logic and Genetic Algorithm

  • 1. National Conference on Artificial Intelligence and Agents: Theory & Applications December 2011, IT-BHU Varanasi 57  Abstract-- This paper introduces a solution of the economic load dispatch (ELD) problem using a hybrid approach of fuzzy logic and genetic algorithm (GA). The proposed method combines and extends the attractive features of both fuzzy logic and GA. The proposed approach is compared with lambda iteration method (LIM) and GA. The investigation reveals that the proposed approach can provide accurate solution with fast convergence characteristics and is superior to the GA and LIM. Index Terms-- Economic load dispatch, fuzzy logic, genetic algorithm, lambda iteration method. I. INTRODUCTION The area of electric power systems are increasing rapidly to provide the energy requirements. With the development of integrated power system, it becomes necessary to operate the plant units economically. Thus ELD occupied an important position in the electric power system. For any specified load condition, ELD determines the power output of each plant (and each generating unit within the plant) which will minimize the overall cost of fuel needed to serve the system load [1]. II. ECONOMIC LOAD DISPATCH A. Fuel cost function The minimization of objective function is the primary concern of an ELD problem. The objective function meets the demand of generation and satisfies all other constraints. Mathematically objective function of ELD problem with constrained optimization problem is FT is the total generation cost; N is the total number of generating units; Fi is the power generation cost function of the ith unit. The total cost of operation includes the fuel cost, costs of labour, maintenance and supplies. Mostly, costs of labour, supplies and maintenance are fixed percentages of incoming fuel costs. Now assume that the variation of fuel cost of each generator with the active power output is given by a quadratic polynomial Satyendra P. Singh is with the Department of Electrical Engineering, Institute of Technology, B.H.U., Varanasi. (e-mail: satya.989@gmail.com) Suman Bhullar is with the Department of Electrical and Instrumentation Engineering, Thapar University, Patiala. (e-mail: suman.bhullar@thapar.edu) Where, Pi is power output of generator i; ai, bi, and ci are cost coefficient. The ELD problem is defined as to minimize the total operating cost of a power system while meeting the total load plus transmission losses within generator limits. Subject to (1) the energy balance equation (2) the inequality constraints Where PL is power transmission loss III. LIM FOR THE SOLUTION OF THE ELD PROBLEM The LIM is the most popular method for the solution of the economic load dispatch. It gives a decentralized solution to the ELD problem by equating the marginal cost of generation of each thermal unit to the price of electricity, or, equivalently, the marginal revenue of each unit under perfect competition conditions, known as system lambda [2]. The minimum and maximum lambda values are initially computed, The initial value chosen for lambda is the mid-point of the interval ( λmin, λmax), i.e, IV. GENETIC ALGORITHM The GA is a stochastic global search method that mimics the metaphor of natural biological evolution such as selection, crossover, and mutation [3-4]. GA‟s work on string structures where string is binary digits which represent a coding of control parameters for a given problem. All parameters of the given problem are coded with strings of bits. The individual bit is called „gene‟ and the content of the each gene is called „allele‟. Typically, the genetic algorithms have three phases initialization, evaluation and genetic operation. The fitness function for the maximization problem is f(x) = F (x) and for the minimization problem is Where f(x) is fitness function and F(x) is objective function. In genetic operation phase, we generate a new population from the previous population using genetic operators. They are Hybrid Approach to Economic Load Dispatch Satyendra P. Singh, Suman Bhullar
  • 2. National Conference on Artificial Intelligence and Agents: Theory & Applications December 2011, IT-BHU Varanasi 58 reproduction, crossover and mutation. Reproduction is the operator used to copy the old chromosome into matting pool according to its fittest value. Higher the fitness of the chromosome more is number of the copies in the next generation chromosome. The various methods of selecting chromosomes for parents to crossover are roulette-wheel selection, boltzmann selection, tournament selection, rank selection, steady state selection etc. The commonly used reproduction operator is the roulette- wheel selection method where a string is selected from the mating pool with a probability proportional to the fitness [8]. The roulette-wheel mechanism is expected to make fi / fitavg copies of ith string of the mating pool. The average fitness is The basic operator for producing new chromosome is crossover. In this operator, information is exchanged among strings of matting pool to create new strings. The final genetic operator in the algorithm is mutation. In general evolution, mutation is a random process where one allele of a gene is replaced by another to produce a new genetic structure. Mutation is an important operation, because newly created individuals have no new inheritance information and the number of alleles is constantly decreasing. V. HYBRID GENETIC ALGORITHM Hybrid systems are those which employ integrated technologies to effectively solve problems. Hybrid systems are classified as sequential, auxiliary and embedded hybrids. For better results and to get faster convergence, conventional GA modes have been modified. In recent years various techniques have been studied to achieve this objective [5]. Hybrid GA proposes a flexible Genetic Algorithm which based on fuzzy logic rules with the ability to adjust continuously the crossover and mutation parameters. Figure 1 presents the proposed block diagram of a fuzzy logic controlled genetic algorithm. Fig 1 Global block diagram of the genetic parameters adjustment. Crossover and Mutation are considered critical for GA convergence. A suitable value for mutation provides balance between global and local exploration abilities and consequently results in a reduction of the number of iterations required to locate the optimum solution. A. Membership Function Design The variables chosen for this controller are change in average fitness (Δf(t)), change in average fitness in last iteration (Δf(t-1)), change in crossover probability (Δc(t)) and change in mutation probability Δm(t). In this Δf(t) and Δf(t-1) are the input variables and Δc(t) is the crossover output and Δm(t) is the mutation output variable. The number of linguistic variables describing the fuzzy subsets of a variable varies according to the application. Usually an odd number is used. However, increasing the number of fuzzy subsets results in a corresponding increase in the number of rules. The membership function maps the crisp values into fuzzy variables. The triangular membership functions are used to define the degree of membership. Each of the input and output fuzzy variables is assigned nine linguistic fuzzy subsets varying from negative larger (NL) to positive larger (PL). Membership functions of fuzzy input and output linguistic variables are shown in Fig [2-3-4] Fig. 2 Membership functions for Δf (t) Fig. 3 Membership functions for Δf (t-1) Fig. 4 Membership functions for Δc(t) The inputs to the crossover fuzzy logic controller are changes in fitness at two consecutive steps, i.e. Δf(t - l), Δf(t), and the output of which is change in crossover Δc(t). Δf(t-1), Δf(t) are normalised into the range of [-1.0, 1.0], and Δc(t) is normalised into the range of [-0.1,0.1] according to their corresponding maximum values. The mutation operation is determined by the flip function with mutation probability rate, and the mutate bit is randomly performed. The mutation probability rate is automatically modified during the optimization process based on the fuzzy logic controller. The two inputs, Δf(t) and Δf(t-1), result in 81 rules. The typical rules are having the following structure: Rule 1: If Δf(t) is NL (negative larger) AND Δf(t-1) is NM (negative medium) then Δc(t) (output of fuzzy crossover) is NR (negative large).
  • 3. National Conference on Artificial Intelligence and Agents: Theory & Applications December 2011, IT-BHU Varanasi 59 Rule 2: If Δf(t) is PM (positive medium) AND Δf(t-1) is NL (negative larger) then Δc(t) (output of fuzzy crossover) is NS (negative small). Rule 3: If Δf(t) is ZE (zero) AND Δf(t-1) is PR (positive large) then Δc(t) (output of fuzzy crossover) is PM (positive medium).. And so on…. Now the flow chart of Hybrid GA to solve ELD problem is shown in figure4 Fig 4 Flow chart of Hybrid GA to solve ELD VI. RESULT AND DISCUSSIONS The results of ELD after the implementation of proposed fuzzy logic controlled genetic algorithm are discussed and compared with the GA and classical method (lambda iteration). The algorithms are implemented in MATLAB to solve ELD problem. The main objective is to minimize the cost of generation of thermal plants using Hybrid GA, GA and classical Lambda Iteration Method. The performance is evaluated with losses for two set generator data, which are referred as Problem I and Problem II. Problem I: Three generator test systems [7] Problem II: Ten generator test systems [6] For GA problem assume the length of the string, l is 16, population of string, pop is 20, crossover probability, pc is 0.8 and mutation probability, pm is 0.01. A. Problem I: Three generator test systems The coefficients of fuel cost are given below in Tables I. The power demand is considered to be 300MW. The results corresponding to LIM, GA and Hybrid GA for problem I is detailed in table II. TABLE I COEFFICIENTS OF FUEL COST Unit no ai bi ci 1 0.00525 8.663 328.13 2 0.00609 10.040 136.91 3 0.00592 9.760 59.16 TABLE II THREE GENERATOR TEST RESULTS ( PD = 300 MW ) LIM GA Hybrid GA P1 202.49 202.464 202.457 P2 81.0267 80.9787 80.9728 P3 27.0149 27.0799 27.0779 Fitness - 0.999957 0.999911 Losses 10.5311 10.5354 10.5344 Error 0.000652 0.0129291 0.0268417 Total cost 3615.11 3614.95 3614.79 Developed program returns the generated power, total cost, total losses and error. B. Problem II: Ten generator test systems Again the proposed technique has been performed on a sample system which consists of ten generator system. The power demand is considered to be 1440MW. Transmission loss coefficients are given in table III [6]. The results corresponding to LIM, GA and Hybrid GA for problem II is detailed in table IV. TABLE III TRANSMISSION LOSS COEFFICIENTS Unit no ai bi ci 1 0.001220 7.92 630 2 0.004700 7.91 190 3 0.001320 7.93 625 4 0.001153 7.92 723 5 0.001154 7.93 717 6 0.001562 7.92 561 7 0.001153 7.92 723 8 0.001321 7.91 618 9 0.001319 7.00 561 10 0.001530 7.00 561 TABLE IV TEN GENERATOR TEST RESULTS ( PD = 1440 MW ) LIM GA Hybrid GA P1 160 160 203.373 P2 65 65 65 P3 150 150 150 P4 170 170 170 P5 160 160 160 P6 130 130 130 P7 170 170 170 P8 145 145 145 P9 140 140 140 P10 163.926 163.971 120 Fitness - 0.999976 0.999993 Losses 13.9357 13.9361 13.3623 Error 0.026341 0.0345486 0.010387 Total cost 17608.4 17608.7 17576.2 VII. CONCLUSION In this paper, Hybrid Genetic Algorithm has been successfully introduced to obtain the optimum solution of ELD. Power system has large variation in load from time to time and it is not possible to have the load dispatch for every
  • 4. National Conference on Artificial Intelligence and Agents: Theory & Applications December 2011, IT-BHU Varanasi 60 possible load demand. As there is no general procedure for finding out the optimum solution of economical load dispatch. This is where Hybrid GA plays an important role to find out the optimum solution in a fraction of second. In the proposed method two fuzzy controllers have been designed to adaptively adjust the crossover probability and mutation rate during the optimization process based on some heuristics. For the testing of proposed algorithm, three generators and ten generators test systems are used. The results obtained from proposed method are also compared with conventional GA and the Lambda Iteration Method. It is found that Hybrid GA is giving better results than GA and LIM. i.e. Hybrid GA proves their fast algorithm and yields true optimum generations of both operating costs and transmission line losses of the power system. VIII. ACKNOWLEDGMENT The authors gratefully acknowledge the contributions of Prof. S. P. Singh (Senior Member, IEEE) Department of Electrical Engineering, IT-BHU, Varanasi, for his work on the original version of this document. IX. REFERENCES [1] A. J. Wood and B. F. Wollenberg, Power Generation, Operation and Control, 2nd Edition, New York: John Wiley & Sons, 1996. [2] Chowdhury B.H., Rahman Saifur, “A Review of Recent Advances in Economic Dispatch”, IEEE Transactions on Power Systems, Vol. 5, No. 4, November 1990 [3] http:// en.wikipedia.org/wiki/Genetic_algorithm [4] Mitchell M., An Introduction to Genetic Algorithm. MIT Press, 1998. [5] Yalcinoz. T, Altun. H, and Uzam. M, “Economic dispatch solution using genetic algorithm based on arithmetic crossover, “in Proc. IEEE Porto Power Tech. Conf., Porto, Portugal, Sep. 2001 [6] Roa C.A-Sepulveda, Herrera M., Pavez-Lazo. B, Knight U.G., Coonick A.H., “Economic Dispatch using fuzzy decision trees”, Electric Power Systems Research 66 (2003) 115_/122, Dec 2002 [7] Kothari D.P., Dhillon J.S., “Power System Optimization”, Prentice-Hall of India [8] Vijayalakshmi. G.A., Rajsekaran. S, “Neural Networks, Fuzzy Logic, and Genetic Algorithms” synthesis and application