SlideShare a Scribd company logo
1 of 6
Download to read offline
IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE)
e-ISSN: 2278-1676,p-ISSN: 2320-3331, Volume 7, Issue 1 (Jul. - Aug. 2013), PP 49-54
www.iosrjournals.org
www.iosrjournals.org 49 | Page
Economic Dispatch of Generated Power Using Modified Lambda-
Iteration Method
Damian Obioma Dike, Moses Izuchukwu Adinfono, George Ogu
(Electrical and Electronic Engineering Department, School of Engineering and Engineering Technology,
Federal University of Technology, Owerri (FUTO), Nigeria)
Abstract: In practical situations and under normal operating conditions, the generating capacity of power
plants is more than the total losses and load demand. Also, power plants have different fuel costs and are not
the same distance from the load centers. Hence the need for developing improved methods of economic dispatch
of generated power from mostly remote locations to major load centers in the urban cities. Most methods
adopted for optimal dispatch are either cumbersome in their computational approaches. This work proposes a
fast and easy to use generic MATLAB syntax to aid in solving economic dispatch problems. The software
component proposed in this work will try to estimate the optimal value of real power to be generated with the
least possible fuel cost. This will be based on the assumption of equal incremental cost and the result compared
to genetic algorithm simulation.
Keywords: Economic Dispatch, Equal Incremental Cost, Modified Lambda-Iteration, Genetic Algorithm
I. Introduction
Economic Dispatch is “the operation of generation facilities to produce energy at the lowest cost to
reliably serve consumers, recognizing any operational limits of generation and transmission facilities [1].” The
objective of economic dispatch is to determine the power output of each generating unit under the constraints of
load demands and transmission losses that will give minimal cost on fuel or operation of the whole system [2].
Over the years, many research works have been published on many and various efforts made to solve
Economic Load Dispatch (ELD) problems, employing different kinds of constraints, mathematical programming
and optimization techniques. The classical or conventional methods include Lambda-iteration method [2],
Gradient Projection Algorithm, Interior Point Method [3], Linear Programming, Lagrangian relaxation [4] and
Dynamic Programming. The heuristic methods include Evolutionary Programming (EP) [5], [35], Differential
Evolution (DE) [6-10], [29], Particle Swarm Optimization (PSO) [11-24], Genetic Algorithm (GA) [25-27],
Simulated Annealing [28-29], Tabu Search (TS) [30-31], Artificial Immune System [32-33] and Artificial Bee
Colony Method [34].
II. Problem Formulation
The economic dispatch problem will now be mathematically described. We will be considering the
operation of generating units.
The variation of the fuel cost of each generator ( ) with real power output ( ) is given by a Second
order smooth fuel cost function [57]. The total fuel cost of the plant is the sum of the costs of the individual
units:
(1)
Where, is the input-output cost function, is the total number of units, is the index of dispatchable units,
, , are coefficients of the quadratic fuel cost function and is the generated power of unit .
With losses neglected, the fuel cost will be subjected to the power balance equation given as (2);
(2)
This can be rewritten as:
(3)
Where,
is the sum of all demands at load nodes in the system
Each unit has its maximum and minimum generating limit. This will also serve as a form of constraint.
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
www.iosrjournals.org 50 | Page
(4)
Where,
is the minimum generation limit of unit
is the maximum generation limit of unit
For optimal dispatch, we assume that the incremental cost of running each unit is equal i.e.:
(5)
(6)
Where,
is the incremental cost
The optimality condition from (6) reduces to:
(7)
(8)
From the (8), the power generated in unit can be gotten as:
(9)
Now accounting for transmission losses, from kron’s loss formula:
(10)
Where,
is the transmission losses
are the transmission line coefficients
The power balance constraint, (3), becomes:
(11)
Also, the optimality condition, (6), becomes
(12)
(13)
Where is the incremental loss of unit
Putting (7) and (13) into (12), we have:
(14)
From Equation 14, the power generated in unit can be gotten as:
(15)
This can be simplified as:
(16)
The net power can then be calculated as:
(17)
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
www.iosrjournals.org 51 | Page
III. Implementation
1.1. Algorithm for Economic Dispatch
1. Initialization:
Input data such as; number of plants, total load demand, generator limits, cost curve coefficients, iteration limit
and tolerance.
2. Start counter.
3. Calculate power value for each plant using Equation 15.
4. Check if iteration limits is exceeded.
If yes, inform user of non-convergence and stop.
Else, go to step 5.
5. Check if Power value for plant is less then set limit.
If yes, set power value to lower limit, increment counter and go to 4.
Else, go to 6.
6. Check if Power value for plant is more than set limit.
If yes, set power value to upper limit, increment counter and go to 4.
Else go to 7.
7. Sum up Power for all plants and calculate the power loss using Equation 10.
8. Calculate net power from Equation 17.
9. If absolute value for net power is less than set tolerance level,
Display calculated power value, incremental cost value and stop.
10. If net power is greater than zero,
Reduce the value of the incremental cost, increment counter and go to 4.
Else, increase the value of the incremental cost, increment counter and go to 4.
The flow chat of which is shown in Fig. 1.
1.2. Matlab Program
%N = iteration count limit
%e = iteration tolerance
%lamda = Lagrange multiplier (Lambda)
%del_lamda = change in lambda
%PD = Power Demand
%Pmin & Pmax = minimum and maximum power limits
n=1; lamda=0; del_lamda=0; e=0.01; P=0;
Psum=0;
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
www.iosrjournals.org 52 | Page
m=input('Input total number of thermal unit:')
for k=1:m
disp('plant')
disp(k)
Pmin(k)=input('insert minimum power:')
Pmax(k)=input('insert maximum power:')
end
disp('Input cost coefficients per plant in the form below:')
disp('[alpha1 beta1 gamma1;alpha2 beta2 gamma2;...]')
C=input('Insert Cost Coefficients:')
for k=1:m
P(k)=(lamda-C(k,2))/(2*C(k,3));
if P(k)<Pmin(k)
P(k)=Pmin(k);
elseif P(k)>Pmax(k)
P(k)=Pmax(k);
end
Psum=Psum+P(k);
end
if n>N
disp('Solution non-convergence');
disp('Number of Iterations:')
disp(n-1)
else
Pnet=Psum-PD;
del_lamda=abs(Pnet)/P(k);
if abs(Pnet)<e
disp('final value for lamda:')
disp(lamda)
disp('Power for plants 1 to m:')
disp(P)
disp('number of iterations:')
disp(n)
disp('iteration tolerance:')
disp(e)
elseif Pnet>0
lamda=lamda-del_lamda;
else
lamda=lamda+del_lamda;
end
end
Psum=0;
%n=n+1;
1.3. Implementation Data
Table 1: Fuel Cost Coefficients
Generator No.
1 0.0070 7.0 240
2 0.0095 10.0 200
3 0.0090 8.5 220
4 0.0090 11.0 200
5 0.0080 10.5 220
6 0.0075 12.0 190
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
www.iosrjournals.org 53 | Page
Table 2: Real Power Limits for the Generators
Generator No. Generator Limits (MW)
1 100 500
2 50 200
3 80 300
4 50 150
5 50 200
6 50 120
IV. RESULTS AND DISCUSSION
An economic load dispatch is performed on a 26 bus system with six generators. The six generators are
connected to bus1, bus2, bus3, bus4, bus5, and bus26 respectively. The operating costs of the generators are in
$/h. The optimal scheduling of the generators has to be within the maximum and minimum limits of each of the
generators. The total load demand of the system is 1263MW. The fuel cost coefficients are shown in TABLE 1.
Table 3: Result
Generator No.
Power Generated (MW)
Proposed Method Genetic Algorithm [25]
1 446.7087 454.7141
2 171.2591 147.5434
3 264.1068 269.7175
4 125.2179 144.7849
5 172.1201 170.7478
6 83.5948 92.0970
0
100
200
300
400
500
Gen.
1
Gen.
2
Gen.
3
Gen.
4
Gen.
5
Gen.
6
MW
Proposed Method
Genetic Algorithm
Figure 1: bar chart showing result
The proposed method gave a total power value of 1263.0074MW with incremental cost of
13.2539$/MWh, while the genetic algorithm gave an incremental cost of 13.6445$/MWh with total power value
of 1263.8809 and transmission loss of 15.7238MW. Successive Approximation is used to calculate the
incremental costs of the generators, based on equal incremental cost principle. This is done with the help of the
proposed MATLAB syntax. The following results are gotten from a 3GB RAM, 2.1GHz, and Pentium Dual-
Core CPU.
V. Conclusion
A new approach to solving Economic Dispatch Problem (EDP) s using modified lambda-iteration is
proposed. This paper demonstrates the feasibility of the proposed technique for efficient solving of EDPs with
generator constraints. The technique was implemented with the help of MATLAB programming.
The loss formula and loss coefficients were not fully employed in the examples used in the paper. However,
there is no problem in implementing the changes, because it has been incorporated in the flow chart.
Computational results reveal that the proposed method gave fairly improved results when compared
with that obtained from Genetic algorithm Method, in most of the geneators.
References
[1] FERC Staff, “Economic dispatch: Concepts, practices and issues,” Joint board for the study of economic dispatch, Nov. 2005.
[2] Jizhong Zhu, Optimization of Power System Operation, John Wiley inc., 2009.
[3] X. S. Han and H. B. Gooi, “Effective economic dispatch model and algorithm,” International Journal of Electrical Power and
Energy Systems, vol. 29, no. 2, pp. 113–120, 2007.
[4] S. Hemamalini and Sishaj P. Simon, “Dynamic economic dispatch with valve-point effect using maclaurin series based lagrangian
method”. International journal of computer applications, vol. 1, no. 17, 2010.
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
www.iosrjournals.org 54 | Page
[5] N. Sinha, R. Chakrabarti and P. K. Chattopadhyay, “Evolutionary programming techniques for economic load dispatch,” IEEE
Trans. Evolutionary Com-putation, vol. 7, no. 1, pp. 83-94, Feb. 2003.
[6] A.M. Elaiw, X. Xia, and A.M.Shehata, “Dynamic economic dispatch using hybrid DE-SQP for generating units with valve-point
effects,” Hindawi Publishing Corporation, Mathematical Problems in Engineering, 2012.
[7] B. Balamurugan and R. Subramanian, “An improved differential evolution based dynamic economic dispatch with nonsmooth fuel
cost function,” Journal of Electrical Systems, vol. 3, no. 3, pp. 151–161, 2007.
[8] R. Balamurugan and S. Subramanian, “Differential evolution-based dynamic economic dispatch of generating units with valve-
point effects,” Electric Power Components and Systems, vol. 36, no. 8, pp. 828–843, 2008.
[9] K. Balamurugan, Sandeep R. Krishnan, “Differential evolution based economic load dispatch problem,” National Conference on
advances in electrical energy applications, Jan., 2013.
[10] Arsalan Najafi, Hamid Falaghi, Maryam Ramezani ”Combined Heat and Power Economic Dispatch Using Improved Differential
Evolution Algorithm,” International Journal of Advanced Research in Computer Science and Software Engineering, Volume 2,
Issue 8, August 2012.
[11] S. Khamsawang and S. Jiriwibhakorn, “Solving tge economic dispatch problem using Novel Particle Swarm Optimization”, World
Academy of Science, Engineering and Technology, 27, 2009.
[12] Z.L. Giang, “Particle swarm optimization to solving the economic dispatch considering the generator constraints”, IEEE Trans. On
Power system, August 2003, pp.1187-2123.
[13] Jong-Bae Park, Ki Song Lee, Jong-Rin Shin, Kwang Y. Lee, “A particle swarm optimization for economic dispatch with nonsmooth
cost functions”, IEEE Trans. On Power System, vol. 20, no. 1, pp. 34-42, February, 2005.
[14] A. Immanuel Selvakumar, K. Thanushkodi, “Anti-predatory particle swarm optimzation: Solution nonconvex economic dispatch
problem”, Electric Power System Research, online, 2007.
[15] A. Immanuel Selvakumar, K. Thanushkodi, “A new particle swarm optimization solution to nonconvex economic dispatch
problem”, IEEE Trans. On Power System, vol 22, no. 1, pp, 42-51, Februaury 2007.
[16] Victoire, T.A.A., and Jeyakumar, A.E., ”Deterministically guided PSO for dynamic dispatch considering valve-point effects,” Elect.
Power Syst. Res., vol. 73, pp. 313-322, 2005.
[17] Panigrahi, C.K., Chattopadhyay, P.K., Chakrabarti, R.N., and Basu, M. “Particle swarm optimization technique for dynamic
economic dispatch, ” Institute of Engineers (India). Pp.48-54, July 2005.
[18] Panigrahi, B.K., Ravikumar pandi, V., and Sanjoy Das, “Adaptive Particle swarm optimization technique for static and dynamic
economic load dispatch,” Energy conversion and management, vol. 49, pp. 1407-1415, February 2008.
[19] T. A. A. Victoire and A. E. Jeyakumar, “Discussion of particle swarm optimization to solving the economic dispatch considering
the generator constraints,” IEEE Trans. Power Systems, vol. 19, no. 4, pp. 2121-2123, Nov. 2004.
[20] Y. Wang, J. Zhou, Y. Lu, H. Qin, and Y. Wang, “Chaotic self-adaptive particle swarm optimization algorithm for dynamic
economic dispatch problem with valve-point effects,” Expert Systems with Applications, vol. 38, no. 11, pp. 14231–14237, 2011.
[21] Amita Mahor, Vishnu Prasad, Saroj Rangnekar, “Economic dispatch using particle swarm optimization: A review,” Renewable and
Sustainable Energy Reviews 13, 2009.
[22] S. Agrawal, T. Bakshi and D. Majumdar “Economic Load Dispatch of Generating Units with Multiple Fuel Options Using PSO,”
International Journal of Control and Automation Vol. 5, No. 4, December, 2012.
[23] M. Sudhakaran, “Particle Swarm Optimization for Economic and Emission Dispatch Problem”, Institute of Engineers, India, vol.
88, (2007) June, pp. 39-45.
[24] K. Mahadevan, P. S. Kannan and S. Kannan “ Particle Swarm Optimization for Economic Dispatch of Generating Units with
Valve-Point Loading,” Journal of Energy & Environment 4 pp. 49 – 61, 2005.
[25] Sangita Das Biswas and Anupama Debbarma, “Optimal operation of Large Power System by GA method,” Journal of Emerging
Trends in Engineering and Applied Sciences (JETEAS), 3 (1), pp. 1-7, 2012.
[26] F. Li and R. K. Aggarwal, “Fast and accurate power dispatch using a relaxed genetic algorithm and a local gradient technique,”
Expert Systems with Applications, vol. 19, no. 3, pp. 159–165, 2000.
[27] Pramod Kumar Gouda, P.K. Hota, Raguraman, “Economic Load Dispatch Optimization in Power System with Renewable Energy
Using Differential Evolution Algorithm,” National Conference on advances in electrical energy applications, Jan., 2013.
[28] Panigrahi, C.K., Chattopadhyay, P.K., Chakrabarti, R.N., and Basu, M. “Simulated annealing technique for dynamic economic
dispatch, ” Electric Power Components and Systems, vol. 34, pp. 577-586, 2006.
[29] S.Padmini, Subhransu Sekhar Dash, Vijayalakshmi, Shruti Chandrasekar “Comparison of Simulated Annealing over Differential
Evolutionary technique for 38 unit generator for economic load dispatch problem,” National Conference on advances in electrical
energy applications, Jan., 2013.
[30] S. Pothiya, I. Ngamroo and W. Kongprawechmon, “Application of multiple tabu search algorithm to solve dynamic economic
dispatch considering generator constraints”, Energy Convers. Manage, 2007.
[31] W. M. Lin, F. S. Cheng and M. T. Say, “An improved tabu search for economic dispatch with multiple minima,” IEEE Trans.
Power Systems, vol. 17, no. 1, pp. 108-112, Feb. 2002.
[32] R. Behera, B.B.Pati, B.P.Panigrahi, “Economic power dispatch problem using artificial immune system”, International Journal of
Scientific & Engineering Research Vol. 2, Issue 5, May 2011.
[33] M. Basu, “Artificial immune system for dynamic economic dispatch,” International Journal of Electrical Power and Energy
Systems, vol. 33, no. 1, pp. 131–136, 2011.
[34] Bommirani. B., Thenmalar. K., “Optmization technique for the economic dispatch in power system operation,” International Journal
of computer and information technology, vol. 2, issue 1, Jan. 2013.
[35] Cherry Mittal, “Fuel cost function estimation for economic load dispatch using evolutionary programming,” Thapar Universitym
Patiala, June 2011.

More Related Content

What's hot

Economic load dispatch
Economic load dispatchEconomic load dispatch
Economic load dispatchVipin Pandey
 
Wireless smart grid
Wireless smart gridWireless smart grid
Wireless smart gridR-One Power
 
Distributed generation b 3
Distributed generation b 3Distributed generation b 3
Distributed generation b 3Naresh Thakur
 
Web based power quality monitoring system
Web based power quality monitoring systemWeb based power quality monitoring system
Web based power quality monitoring systemVikram Purohit
 
Load dispatch center
Load dispatch centerLoad dispatch center
Load dispatch centerddxdharmesh
 
Two area system
Two area systemTwo area system
Two area systemBalaram Das
 
Presentation on Smart Grid
Presentation on Smart GridPresentation on Smart Grid
Presentation on Smart Gridtanzir3
 
Economic load dispatch
Economic load  dispatchEconomic load  dispatch
Economic load dispatchDeepak John
 
Policies for smart grid
Policies for smart gridPolicies for smart grid
Policies for smart gridAshfaq khan
 
Energy Savings Potential of Hybrid Drivetrains
Energy Savings Potential of Hybrid DrivetrainsEnergy Savings Potential of Hybrid Drivetrains
Energy Savings Potential of Hybrid DrivetrainsAnkit Chaudhary
 
Power system planning & operation [eceg 4410]
Power system planning & operation [eceg 4410]Power system planning & operation [eceg 4410]
Power system planning & operation [eceg 4410]Sifan Welisa
 
Grid integration issues and solutions
Grid integration issues and solutionsGrid integration issues and solutions
Grid integration issues and solutionsSwathi Venugopal
 
Speed control of a dc motor a matlab approach
Speed control of a dc motor a matlab approachSpeed control of a dc motor a matlab approach
Speed control of a dc motor a matlab approachIAEME Publication
 
Electricity Markets Regulation - Lesson 2 - Market Design
Electricity Markets Regulation - Lesson 2 - Market DesignElectricity Markets Regulation - Lesson 2 - Market Design
Electricity Markets Regulation - Lesson 2 - Market DesignLeonardo ENERGY
 
Bidding strategies in deregulated power market
Bidding strategies in deregulated power marketBidding strategies in deregulated power market
Bidding strategies in deregulated power marketGautham Reddy
 
Smart Grid Technology
Smart Grid TechnologySmart Grid Technology
Smart Grid TechnologyShriramGokhale
 
Input output , heat rate characteristics and Incremental cost
Input output , heat rate characteristics and Incremental costInput output , heat rate characteristics and Incremental cost
Input output , heat rate characteristics and Incremental costEklavya Sharma
 

What's hot (20)

Economic load dispatch
Economic load dispatchEconomic load dispatch
Economic load dispatch
 
Wireless smart grid
Wireless smart gridWireless smart grid
Wireless smart grid
 
Distributed generation b 3
Distributed generation b 3Distributed generation b 3
Distributed generation b 3
 
Unit commitment
Unit commitmentUnit commitment
Unit commitment
 
Web based power quality monitoring system
Web based power quality monitoring systemWeb based power quality monitoring system
Web based power quality monitoring system
 
Integrated protection and control strategies for microgrid
Integrated protection and control strategies for microgridIntegrated protection and control strategies for microgrid
Integrated protection and control strategies for microgrid
 
Load dispatch center
Load dispatch centerLoad dispatch center
Load dispatch center
 
Two area system
Two area systemTwo area system
Two area system
 
Presentation on Smart Grid
Presentation on Smart GridPresentation on Smart Grid
Presentation on Smart Grid
 
Economic load dispatch
Economic load  dispatchEconomic load  dispatch
Economic load dispatch
 
Demand side management: Demand response
Demand side management: Demand response Demand side management: Demand response
Demand side management: Demand response
 
Policies for smart grid
Policies for smart gridPolicies for smart grid
Policies for smart grid
 
Energy Savings Potential of Hybrid Drivetrains
Energy Savings Potential of Hybrid DrivetrainsEnergy Savings Potential of Hybrid Drivetrains
Energy Savings Potential of Hybrid Drivetrains
 
Power system planning & operation [eceg 4410]
Power system planning & operation [eceg 4410]Power system planning & operation [eceg 4410]
Power system planning & operation [eceg 4410]
 
Grid integration issues and solutions
Grid integration issues and solutionsGrid integration issues and solutions
Grid integration issues and solutions
 
Speed control of a dc motor a matlab approach
Speed control of a dc motor a matlab approachSpeed control of a dc motor a matlab approach
Speed control of a dc motor a matlab approach
 
Electricity Markets Regulation - Lesson 2 - Market Design
Electricity Markets Regulation - Lesson 2 - Market DesignElectricity Markets Regulation - Lesson 2 - Market Design
Electricity Markets Regulation - Lesson 2 - Market Design
 
Bidding strategies in deregulated power market
Bidding strategies in deregulated power marketBidding strategies in deregulated power market
Bidding strategies in deregulated power market
 
Smart Grid Technology
Smart Grid TechnologySmart Grid Technology
Smart Grid Technology
 
Input output , heat rate characteristics and Incremental cost
Input output , heat rate characteristics and Incremental costInput output , heat rate characteristics and Incremental cost
Input output , heat rate characteristics and Incremental cost
 

Viewers also liked

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
 
Economic/Emission Load Dispatch Using Artificial Bee Colony Algorithm
Economic/Emission Load Dispatch Using Artificial Bee Colony AlgorithmEconomic/Emission Load Dispatch Using Artificial Bee Colony Algorithm
Economic/Emission Load Dispatch Using Artificial Bee Colony AlgorithmIDES Editor
 
Business economics introduction
Business economics   introductionBusiness economics   introduction
Business economics introductionRachit Walia
 
Business economics production analysis
Business economics   production analysisBusiness economics   production analysis
Business economics production analysisRachit Walia
 
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
 
Umts Radio Interface System Planning And Optimization
Umts Radio Interface System Planning And OptimizationUmts Radio Interface System Planning And Optimization
Umts Radio Interface System Planning And OptimizationDavid Rottmayer
 
ABC Algorithm.
ABC Algorithm.ABC Algorithm.
ABC Algorithm.N Vinayak
 
Artificial bee colony (abc)
Artificial bee colony (abc)Artificial bee colony (abc)
Artificial bee colony (abc)quadmemo
 
Basic economic concepts
Basic economic conceptsBasic economic concepts
Basic economic conceptstoconnor127
 
Economics production analysis
Economics production analysisEconomics production analysis
Economics production analysisTinku Kumar
 
Lecture1 Basic Economic Concepts (1)
Lecture1  Basic Economic Concepts (1)Lecture1  Basic Economic Concepts (1)
Lecture1 Basic Economic Concepts (1)katerinamailru
 
Ee 1351 power system analysis
Ee 1351 power system analysisEe 1351 power system analysis
Ee 1351 power system analysisHari Kumar
 
Fault Level Calculation
Fault Level CalculationFault Level Calculation
Fault Level CalculationDinesh Sarda
 
File 1 power system fault analysis
File 1 power system fault analysisFile 1 power system fault analysis
File 1 power system fault analysiskirkusawi
 
Genetic algorithm
Genetic algorithm Genetic algorithm
Genetic algorithm Rabiya Khalid
 
Artificial Bee Colony algorithm
Artificial Bee Colony algorithmArtificial Bee Colony algorithm
Artificial Bee Colony algorithmAhmed Fouad Ali
 

Viewers also liked (20)

Matlab
MatlabMatlab
Matlab
 
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
 
Economic/Emission Load Dispatch Using Artificial Bee Colony Algorithm
Economic/Emission Load Dispatch Using Artificial Bee Colony AlgorithmEconomic/Emission Load Dispatch Using Artificial Bee Colony Algorithm
Economic/Emission Load Dispatch Using Artificial Bee Colony Algorithm
 
How KETM power optimization system works?
How KETM power optimization system works?How KETM power optimization system works?
How KETM power optimization system works?
 
Business economics introduction
Business economics   introductionBusiness economics   introduction
Business economics introduction
 
Business economics production analysis
Business economics   production analysisBusiness economics   production analysis
Business economics production analysis
 
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
 
Economic load dispatch problem solving using "Cuckoo Search"
Economic load dispatch problem solving using "Cuckoo Search"Economic load dispatch problem solving using "Cuckoo Search"
Economic load dispatch problem solving using "Cuckoo Search"
 
Umts Radio Interface System Planning And Optimization
Umts Radio Interface System Planning And OptimizationUmts Radio Interface System Planning And Optimization
Umts Radio Interface System Planning And Optimization
 
ABC Algorithm.
ABC Algorithm.ABC Algorithm.
ABC Algorithm.
 
Artificial bee colony (abc)
Artificial bee colony (abc)Artificial bee colony (abc)
Artificial bee colony (abc)
 
6 PHASE TRANSMISSION SYSTEM
6 PHASE TRANSMISSION SYSTEM6 PHASE TRANSMISSION SYSTEM
6 PHASE TRANSMISSION SYSTEM
 
Basic economic concepts
Basic economic conceptsBasic economic concepts
Basic economic concepts
 
Economics production analysis
Economics production analysisEconomics production analysis
Economics production analysis
 
Lecture1 Basic Economic Concepts (1)
Lecture1  Basic Economic Concepts (1)Lecture1  Basic Economic Concepts (1)
Lecture1 Basic Economic Concepts (1)
 
Ee 1351 power system analysis
Ee 1351 power system analysisEe 1351 power system analysis
Ee 1351 power system analysis
 
Fault Level Calculation
Fault Level CalculationFault Level Calculation
Fault Level Calculation
 
File 1 power system fault analysis
File 1 power system fault analysisFile 1 power system fault analysis
File 1 power system fault analysis
 
Genetic algorithm
Genetic algorithm Genetic algorithm
Genetic algorithm
 
Artificial Bee Colony algorithm
Artificial Bee Colony algorithmArtificial Bee Colony algorithm
Artificial Bee Colony algorithm
 

Similar to Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method

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
 
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
 
Dynamic Economic Dispatch Assessment Using Particle Swarm Optimization Technique
Dynamic Economic Dispatch Assessment Using Particle Swarm Optimization TechniqueDynamic Economic Dispatch Assessment Using Particle Swarm Optimization Technique
Dynamic Economic Dispatch Assessment Using Particle Swarm Optimization TechniquejournalBEEI
 
A Decomposition Aggregation Method for Solving Electrical Power Dispatch Prob...
A Decomposition Aggregation Method for Solving Electrical Power Dispatch Prob...A Decomposition Aggregation Method for Solving Electrical Power Dispatch Prob...
A Decomposition Aggregation Method for Solving Electrical Power Dispatch Prob...raj20072
 
Paper id 28201438
Paper id 28201438Paper id 28201438
Paper id 28201438IJRAT
 
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
 
Gs3511851192
Gs3511851192Gs3511851192
Gs3511851192IJERA Editor
 
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
 
Operation cost reduction in unit commitment problem using improved quantum bi...
Operation cost reduction in unit commitment problem using improved quantum bi...Operation cost reduction in unit commitment problem using improved quantum bi...
Operation cost reduction in unit commitment problem using improved quantum bi...IJECEIAES
 
Economic and Emission Dispatch using Whale Optimization Algorithm (WOA)
Economic and Emission Dispatch using Whale Optimization Algorithm (WOA) Economic and Emission Dispatch using Whale Optimization Algorithm (WOA)
Economic and Emission Dispatch using Whale Optimization Algorithm (WOA) IJECEIAES
 
Optimal Unit Commitment Based on Economic Dispatch Using Improved Particle Sw...
Optimal Unit Commitment Based on Economic Dispatch Using Improved Particle Sw...Optimal Unit Commitment Based on Economic Dispatch Using Improved Particle Sw...
Optimal Unit Commitment Based on Economic Dispatch Using Improved Particle Sw...paperpublications3
 
Hybrid method for achieving Pareto front on economic emission dispatch
Hybrid method for achieving Pareto front on economic  emission dispatch Hybrid method for achieving Pareto front on economic  emission dispatch
Hybrid method for achieving Pareto front on economic emission dispatch IJECEIAES
 
Hybrid Approach to Economic Load Dispatch
Hybrid Approach to Economic Load DispatchHybrid Approach to Economic Load Dispatch
Hybrid Approach to Economic Load DispatchSatyendra Singh
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 
IRJET- Solving Economic Load Dispatch Problem with Valve Point Effect
IRJET- Solving Economic Load Dispatch Problem with Valve Point EffectIRJET- Solving Economic Load Dispatch Problem with Valve Point Effect
IRJET- Solving Economic Load Dispatch Problem with Valve Point EffectIRJET Journal
 
ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION
ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATIONECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION
ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATIONMln Phaneendra
 

Similar to Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method (20)

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...
 
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...
 
Dynamic Economic Dispatch Assessment Using Particle Swarm Optimization Technique
Dynamic Economic Dispatch Assessment Using Particle Swarm Optimization TechniqueDynamic Economic Dispatch Assessment Using Particle Swarm Optimization Technique
Dynamic Economic Dispatch Assessment Using Particle Swarm Optimization Technique
 
A Decomposition Aggregation Method for Solving Electrical Power Dispatch Prob...
A Decomposition Aggregation Method for Solving Electrical Power Dispatch Prob...A Decomposition Aggregation Method for Solving Electrical Power Dispatch Prob...
A Decomposition Aggregation Method for Solving Electrical Power Dispatch Prob...
 
Paper id 28201438
Paper id 28201438Paper id 28201438
Paper id 28201438
 
40220140503006
4022014050300640220140503006
40220140503006
 
E010232732
E010232732E010232732
E010232732
 
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...
 
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...
 
Gs3511851192
Gs3511851192Gs3511851192
Gs3511851192
 
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...
 
Operation cost reduction in unit commitment problem using improved quantum bi...
Operation cost reduction in unit commitment problem using improved quantum bi...Operation cost reduction in unit commitment problem using improved quantum bi...
Operation cost reduction in unit commitment problem using improved quantum bi...
 
Economic and Emission Dispatch using Whale Optimization Algorithm (WOA)
Economic and Emission Dispatch using Whale Optimization Algorithm (WOA) Economic and Emission Dispatch using Whale Optimization Algorithm (WOA)
Economic and Emission Dispatch using Whale Optimization Algorithm (WOA)
 
Optimal Unit Commitment Based on Economic Dispatch Using Improved Particle Sw...
Optimal Unit Commitment Based on Economic Dispatch Using Improved Particle Sw...Optimal Unit Commitment Based on Economic Dispatch Using Improved Particle Sw...
Optimal Unit Commitment Based on Economic Dispatch Using Improved Particle Sw...
 
Hybrid method for achieving Pareto front on economic emission dispatch
Hybrid method for achieving Pareto front on economic  emission dispatch Hybrid method for achieving Pareto front on economic  emission dispatch
Hybrid method for achieving Pareto front on economic emission dispatch
 
Hybrid Approach to Economic Load Dispatch
Hybrid Approach to Economic Load DispatchHybrid Approach to Economic Load Dispatch
Hybrid Approach to Economic Load Dispatch
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
I1065259
I1065259I1065259
I1065259
 
IRJET- Solving Economic Load Dispatch Problem with Valve Point Effect
IRJET- Solving Economic Load Dispatch Problem with Valve Point EffectIRJET- Solving Economic Load Dispatch Problem with Valve Point Effect
IRJET- Solving Economic Load Dispatch Problem with Valve Point Effect
 
ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION
ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATIONECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION
ECONOMIC LOAD DISPATCH USING PARTICLE SWARM OPTIMIZATION
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 

Recently uploaded

Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitterShivangiSharma879191
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfROCENODodongVILLACER
 
Indian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptIndian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptMadan Karki
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...121011101441
 
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncWhy does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncssuser2ae721
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgsaravananr517913
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catcherssdickerson1
 
Transport layer issues and challenges - Guide
Transport layer issues and challenges - GuideTransport layer issues and challenges - Guide
Transport layer issues and challenges - GuideGOPINATHS437943
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 

Recently uploaded (20)

Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdf
 
Indian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.pptIndian Dairy Industry Present Status and.ppt
Indian Dairy Industry Present Status and.ppt
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...
 
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncWhy does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
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
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
 
Transport layer issues and challenges - Guide
Transport layer issues and challenges - GuideTransport layer issues and challenges - Guide
Transport layer issues and challenges - Guide
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 

Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method

  • 1. IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-ISSN: 2278-1676,p-ISSN: 2320-3331, Volume 7, Issue 1 (Jul. - Aug. 2013), PP 49-54 www.iosrjournals.org www.iosrjournals.org 49 | Page Economic Dispatch of Generated Power Using Modified Lambda- Iteration Method Damian Obioma Dike, Moses Izuchukwu Adinfono, George Ogu (Electrical and Electronic Engineering Department, School of Engineering and Engineering Technology, Federal University of Technology, Owerri (FUTO), Nigeria) Abstract: In practical situations and under normal operating conditions, the generating capacity of power plants is more than the total losses and load demand. Also, power plants have different fuel costs and are not the same distance from the load centers. Hence the need for developing improved methods of economic dispatch of generated power from mostly remote locations to major load centers in the urban cities. Most methods adopted for optimal dispatch are either cumbersome in their computational approaches. This work proposes a fast and easy to use generic MATLAB syntax to aid in solving economic dispatch problems. The software component proposed in this work will try to estimate the optimal value of real power to be generated with the least possible fuel cost. This will be based on the assumption of equal incremental cost and the result compared to genetic algorithm simulation. Keywords: Economic Dispatch, Equal Incremental Cost, Modified Lambda-Iteration, Genetic Algorithm I. Introduction Economic Dispatch is “the operation of generation facilities to produce energy at the lowest cost to reliably serve consumers, recognizing any operational limits of generation and transmission facilities [1].” The objective of economic dispatch is to determine the power output of each generating unit under the constraints of load demands and transmission losses that will give minimal cost on fuel or operation of the whole system [2]. Over the years, many research works have been published on many and various efforts made to solve Economic Load Dispatch (ELD) problems, employing different kinds of constraints, mathematical programming and optimization techniques. The classical or conventional methods include Lambda-iteration method [2], Gradient Projection Algorithm, Interior Point Method [3], Linear Programming, Lagrangian relaxation [4] and Dynamic Programming. The heuristic methods include Evolutionary Programming (EP) [5], [35], Differential Evolution (DE) [6-10], [29], Particle Swarm Optimization (PSO) [11-24], Genetic Algorithm (GA) [25-27], Simulated Annealing [28-29], Tabu Search (TS) [30-31], Artificial Immune System [32-33] and Artificial Bee Colony Method [34]. II. Problem Formulation The economic dispatch problem will now be mathematically described. We will be considering the operation of generating units. The variation of the fuel cost of each generator ( ) with real power output ( ) is given by a Second order smooth fuel cost function [57]. The total fuel cost of the plant is the sum of the costs of the individual units: (1) Where, is the input-output cost function, is the total number of units, is the index of dispatchable units, , , are coefficients of the quadratic fuel cost function and is the generated power of unit . With losses neglected, the fuel cost will be subjected to the power balance equation given as (2); (2) This can be rewritten as: (3) Where, is the sum of all demands at load nodes in the system Each unit has its maximum and minimum generating limit. This will also serve as a form of constraint.
  • 2. Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method www.iosrjournals.org 50 | Page (4) Where, is the minimum generation limit of unit is the maximum generation limit of unit For optimal dispatch, we assume that the incremental cost of running each unit is equal i.e.: (5) (6) Where, is the incremental cost The optimality condition from (6) reduces to: (7) (8) From the (8), the power generated in unit can be gotten as: (9) Now accounting for transmission losses, from kron’s loss formula: (10) Where, is the transmission losses are the transmission line coefficients The power balance constraint, (3), becomes: (11) Also, the optimality condition, (6), becomes (12) (13) Where is the incremental loss of unit Putting (7) and (13) into (12), we have: (14) From Equation 14, the power generated in unit can be gotten as: (15) This can be simplified as: (16) The net power can then be calculated as: (17)
  • 3. Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method www.iosrjournals.org 51 | Page III. Implementation 1.1. Algorithm for Economic Dispatch 1. Initialization: Input data such as; number of plants, total load demand, generator limits, cost curve coefficients, iteration limit and tolerance. 2. Start counter. 3. Calculate power value for each plant using Equation 15. 4. Check if iteration limits is exceeded. If yes, inform user of non-convergence and stop. Else, go to step 5. 5. Check if Power value for plant is less then set limit. If yes, set power value to lower limit, increment counter and go to 4. Else, go to 6. 6. Check if Power value for plant is more than set limit. If yes, set power value to upper limit, increment counter and go to 4. Else go to 7. 7. Sum up Power for all plants and calculate the power loss using Equation 10. 8. Calculate net power from Equation 17. 9. If absolute value for net power is less than set tolerance level, Display calculated power value, incremental cost value and stop. 10. If net power is greater than zero, Reduce the value of the incremental cost, increment counter and go to 4. Else, increase the value of the incremental cost, increment counter and go to 4. The flow chat of which is shown in Fig. 1. 1.2. Matlab Program %N = iteration count limit %e = iteration tolerance %lamda = Lagrange multiplier (Lambda) %del_lamda = change in lambda %PD = Power Demand %Pmin & Pmax = minimum and maximum power limits n=1; lamda=0; del_lamda=0; e=0.01; P=0; Psum=0;
  • 4. Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method www.iosrjournals.org 52 | Page m=input('Input total number of thermal unit:') for k=1:m disp('plant') disp(k) Pmin(k)=input('insert minimum power:') Pmax(k)=input('insert maximum power:') end disp('Input cost coefficients per plant in the form below:') disp('[alpha1 beta1 gamma1;alpha2 beta2 gamma2;...]') C=input('Insert Cost Coefficients:') for k=1:m P(k)=(lamda-C(k,2))/(2*C(k,3)); if P(k)<Pmin(k) P(k)=Pmin(k); elseif P(k)>Pmax(k) P(k)=Pmax(k); end Psum=Psum+P(k); end if n>N disp('Solution non-convergence'); disp('Number of Iterations:') disp(n-1) else Pnet=Psum-PD; del_lamda=abs(Pnet)/P(k); if abs(Pnet)<e disp('final value for lamda:') disp(lamda) disp('Power for plants 1 to m:') disp(P) disp('number of iterations:') disp(n) disp('iteration tolerance:') disp(e) elseif Pnet>0 lamda=lamda-del_lamda; else lamda=lamda+del_lamda; end end Psum=0; %n=n+1; 1.3. Implementation Data Table 1: Fuel Cost Coefficients Generator No. 1 0.0070 7.0 240 2 0.0095 10.0 200 3 0.0090 8.5 220 4 0.0090 11.0 200 5 0.0080 10.5 220 6 0.0075 12.0 190
  • 5. Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method www.iosrjournals.org 53 | Page Table 2: Real Power Limits for the Generators Generator No. Generator Limits (MW) 1 100 500 2 50 200 3 80 300 4 50 150 5 50 200 6 50 120 IV. RESULTS AND DISCUSSION An economic load dispatch is performed on a 26 bus system with six generators. The six generators are connected to bus1, bus2, bus3, bus4, bus5, and bus26 respectively. The operating costs of the generators are in $/h. The optimal scheduling of the generators has to be within the maximum and minimum limits of each of the generators. The total load demand of the system is 1263MW. The fuel cost coefficients are shown in TABLE 1. Table 3: Result Generator No. Power Generated (MW) Proposed Method Genetic Algorithm [25] 1 446.7087 454.7141 2 171.2591 147.5434 3 264.1068 269.7175 4 125.2179 144.7849 5 172.1201 170.7478 6 83.5948 92.0970 0 100 200 300 400 500 Gen. 1 Gen. 2 Gen. 3 Gen. 4 Gen. 5 Gen. 6 MW Proposed Method Genetic Algorithm Figure 1: bar chart showing result The proposed method gave a total power value of 1263.0074MW with incremental cost of 13.2539$/MWh, while the genetic algorithm gave an incremental cost of 13.6445$/MWh with total power value of 1263.8809 and transmission loss of 15.7238MW. Successive Approximation is used to calculate the incremental costs of the generators, based on equal incremental cost principle. This is done with the help of the proposed MATLAB syntax. The following results are gotten from a 3GB RAM, 2.1GHz, and Pentium Dual- Core CPU. V. Conclusion A new approach to solving Economic Dispatch Problem (EDP) s using modified lambda-iteration is proposed. This paper demonstrates the feasibility of the proposed technique for efficient solving of EDPs with generator constraints. The technique was implemented with the help of MATLAB programming. The loss formula and loss coefficients were not fully employed in the examples used in the paper. However, there is no problem in implementing the changes, because it has been incorporated in the flow chart. Computational results reveal that the proposed method gave fairly improved results when compared with that obtained from Genetic algorithm Method, in most of the geneators. References [1] FERC Staff, “Economic dispatch: Concepts, practices and issues,” Joint board for the study of economic dispatch, Nov. 2005. [2] Jizhong Zhu, Optimization of Power System Operation, John Wiley inc., 2009. [3] X. S. Han and H. B. Gooi, “Effective economic dispatch model and algorithm,” International Journal of Electrical Power and Energy Systems, vol. 29, no. 2, pp. 113–120, 2007. [4] S. Hemamalini and Sishaj P. Simon, “Dynamic economic dispatch with valve-point effect using maclaurin series based lagrangian method”. International journal of computer applications, vol. 1, no. 17, 2010.
  • 6. Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method www.iosrjournals.org 54 | Page [5] N. Sinha, R. Chakrabarti and P. K. Chattopadhyay, “Evolutionary programming techniques for economic load dispatch,” IEEE Trans. Evolutionary Com-putation, vol. 7, no. 1, pp. 83-94, Feb. 2003. [6] A.M. Elaiw, X. Xia, and A.M.Shehata, “Dynamic economic dispatch using hybrid DE-SQP for generating units with valve-point effects,” Hindawi Publishing Corporation, Mathematical Problems in Engineering, 2012. [7] B. Balamurugan and R. Subramanian, “An improved differential evolution based dynamic economic dispatch with nonsmooth fuel cost function,” Journal of Electrical Systems, vol. 3, no. 3, pp. 151–161, 2007. [8] R. Balamurugan and S. Subramanian, “Differential evolution-based dynamic economic dispatch of generating units with valve- point effects,” Electric Power Components and Systems, vol. 36, no. 8, pp. 828–843, 2008. [9] K. Balamurugan, Sandeep R. Krishnan, “Differential evolution based economic load dispatch problem,” National Conference on advances in electrical energy applications, Jan., 2013. [10] Arsalan Najafi, Hamid Falaghi, Maryam Ramezani ”Combined Heat and Power Economic Dispatch Using Improved Differential Evolution Algorithm,” International Journal of Advanced Research in Computer Science and Software Engineering, Volume 2, Issue 8, August 2012. [11] S. Khamsawang and S. Jiriwibhakorn, “Solving tge economic dispatch problem using Novel Particle Swarm Optimization”, World Academy of Science, Engineering and Technology, 27, 2009. [12] Z.L. Giang, “Particle swarm optimization to solving the economic dispatch considering the generator constraints”, IEEE Trans. On Power system, August 2003, pp.1187-2123. [13] Jong-Bae Park, Ki Song Lee, Jong-Rin Shin, Kwang Y. Lee, “A particle swarm optimization for economic dispatch with nonsmooth cost functions”, IEEE Trans. On Power System, vol. 20, no. 1, pp. 34-42, February, 2005. [14] A. Immanuel Selvakumar, K. Thanushkodi, “Anti-predatory particle swarm optimzation: Solution nonconvex economic dispatch problem”, Electric Power System Research, online, 2007. [15] A. Immanuel Selvakumar, K. Thanushkodi, “A new particle swarm optimization solution to nonconvex economic dispatch problem”, IEEE Trans. On Power System, vol 22, no. 1, pp, 42-51, Februaury 2007. [16] Victoire, T.A.A., and Jeyakumar, A.E., ”Deterministically guided PSO for dynamic dispatch considering valve-point effects,” Elect. Power Syst. Res., vol. 73, pp. 313-322, 2005. [17] Panigrahi, C.K., Chattopadhyay, P.K., Chakrabarti, R.N., and Basu, M. “Particle swarm optimization technique for dynamic economic dispatch, ” Institute of Engineers (India). Pp.48-54, July 2005. [18] Panigrahi, B.K., Ravikumar pandi, V., and Sanjoy Das, “Adaptive Particle swarm optimization technique for static and dynamic economic load dispatch,” Energy conversion and management, vol. 49, pp. 1407-1415, February 2008. [19] T. A. A. Victoire and A. E. Jeyakumar, “Discussion of particle swarm optimization to solving the economic dispatch considering the generator constraints,” IEEE Trans. Power Systems, vol. 19, no. 4, pp. 2121-2123, Nov. 2004. [20] Y. Wang, J. Zhou, Y. Lu, H. Qin, and Y. Wang, “Chaotic self-adaptive particle swarm optimization algorithm for dynamic economic dispatch problem with valve-point effects,” Expert Systems with Applications, vol. 38, no. 11, pp. 14231–14237, 2011. [21] Amita Mahor, Vishnu Prasad, Saroj Rangnekar, “Economic dispatch using particle swarm optimization: A review,” Renewable and Sustainable Energy Reviews 13, 2009. [22] S. Agrawal, T. Bakshi and D. Majumdar “Economic Load Dispatch of Generating Units with Multiple Fuel Options Using PSO,” International Journal of Control and Automation Vol. 5, No. 4, December, 2012. [23] M. Sudhakaran, “Particle Swarm Optimization for Economic and Emission Dispatch Problem”, Institute of Engineers, India, vol. 88, (2007) June, pp. 39-45. [24] K. Mahadevan, P. S. Kannan and S. Kannan “ Particle Swarm Optimization for Economic Dispatch of Generating Units with Valve-Point Loading,” Journal of Energy & Environment 4 pp. 49 – 61, 2005. [25] Sangita Das Biswas and Anupama Debbarma, “Optimal operation of Large Power System by GA method,” Journal of Emerging Trends in Engineering and Applied Sciences (JETEAS), 3 (1), pp. 1-7, 2012. [26] F. Li and R. K. Aggarwal, “Fast and accurate power dispatch using a relaxed genetic algorithm and a local gradient technique,” Expert Systems with Applications, vol. 19, no. 3, pp. 159–165, 2000. [27] Pramod Kumar Gouda, P.K. Hota, Raguraman, “Economic Load Dispatch Optimization in Power System with Renewable Energy Using Differential Evolution Algorithm,” National Conference on advances in electrical energy applications, Jan., 2013. [28] Panigrahi, C.K., Chattopadhyay, P.K., Chakrabarti, R.N., and Basu, M. “Simulated annealing technique for dynamic economic dispatch, ” Electric Power Components and Systems, vol. 34, pp. 577-586, 2006. [29] S.Padmini, Subhransu Sekhar Dash, Vijayalakshmi, Shruti Chandrasekar “Comparison of Simulated Annealing over Differential Evolutionary technique for 38 unit generator for economic load dispatch problem,” National Conference on advances in electrical energy applications, Jan., 2013. [30] S. Pothiya, I. Ngamroo and W. Kongprawechmon, “Application of multiple tabu search algorithm to solve dynamic economic dispatch considering generator constraints”, Energy Convers. Manage, 2007. [31] W. M. Lin, F. S. Cheng and M. T. Say, “An improved tabu search for economic dispatch with multiple minima,” IEEE Trans. Power Systems, vol. 17, no. 1, pp. 108-112, Feb. 2002. [32] R. Behera, B.B.Pati, B.P.Panigrahi, “Economic power dispatch problem using artificial immune system”, International Journal of Scientific & Engineering Research Vol. 2, Issue 5, May 2011. [33] M. Basu, “Artificial immune system for dynamic economic dispatch,” International Journal of Electrical Power and Energy Systems, vol. 33, no. 1, pp. 131–136, 2011. [34] Bommirani. B., Thenmalar. K., “Optmization technique for the economic dispatch in power system operation,” International Journal of computer and information technology, vol. 2, issue 1, Jan. 2013. [35] Cherry Mittal, “Fuel cost function estimation for economic load dispatch using evolutionary programming,” Thapar Universitym Patiala, June 2011.