SlideShare une entreprise Scribd logo
1  sur  6
Télécharger pour lire hors ligne
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.

Contenu connexe

Tendances

Power system stability
Power system stabilityPower system stability
Power system stabilityBalaram Das
 
2. power system losses evaluation
2. power system losses evaluation2. power system losses evaluation
2. power system losses evaluationYusuf A. KHALIL
 
Voltage and Frequency Control of the Grid
Voltage and Frequency Control of the GridVoltage and Frequency Control of the Grid
Voltage and Frequency Control of the GridLeonardo ENERGY
 
Load Frequency Control of Two Area System
Load Frequency Control of Two Area SystemLoad Frequency Control of Two Area System
Load Frequency Control of Two Area SystemManash Deka
 
Automatic load frequency control
Automatic load frequency controlAutomatic load frequency control
Automatic load frequency controlBalaram Das
 
Unit commitment in power system
Unit commitment in power systemUnit commitment in power system
Unit commitment in power systemAbrar Ahmed
 
Frequency control in a microgrid including controllable load
Frequency control in a microgrid including controllable loadFrequency control in a microgrid including controllable load
Frequency control in a microgrid including controllable loadIAEME Publication
 
Power Electronics in Electric and Hybrid Vehicles 2014 Report by Yole Develo...
Power Electronics in Electric and Hybrid Vehicles 2014 Report by Yole Develo...Power Electronics in Electric and Hybrid Vehicles 2014 Report by Yole Develo...
Power Electronics in Electric and Hybrid Vehicles 2014 Report by Yole Develo...Yole Developpement
 
Available transfer capability (atc) sbw ppt
Available transfer capability (atc) sbw pptAvailable transfer capability (atc) sbw ppt
Available transfer capability (atc) sbw pptRavi Sekpure
 

Tendances (20)

Power system stability
Power system stabilityPower system stability
Power system stability
 
2. power system losses evaluation
2. power system losses evaluation2. power system losses evaluation
2. power system losses evaluation
 
DSM
DSMDSM
DSM
 
Plug in hybrid electric vehicle
Plug in hybrid electric vehiclePlug in hybrid electric vehicle
Plug in hybrid electric vehicle
 
Unit commitment
Unit commitmentUnit commitment
Unit commitment
 
State estimation
State estimationState estimation
State estimation
 
Computer Application in Power system chapter one - introduction
Computer Application in Power system chapter one - introductionComputer Application in Power system chapter one - introduction
Computer Application in Power system chapter one - introduction
 
Distributed Generation
Distributed Generation Distributed Generation
Distributed Generation
 
HVDC & FACTS
HVDC & FACTSHVDC & FACTS
HVDC & FACTS
 
Voltage and Frequency Control of the Grid
Voltage and Frequency Control of the GridVoltage and Frequency Control of the Grid
Voltage and Frequency Control of the Grid
 
Load Frequency Control of Two Area System
Load Frequency Control of Two Area SystemLoad Frequency Control of Two Area System
Load Frequency Control of Two Area System
 
Micro grid
Micro gridMicro grid
Micro grid
 
SMART GRID
SMART GRIDSMART GRID
SMART GRID
 
Automatic load frequency control
Automatic load frequency controlAutomatic load frequency control
Automatic load frequency control
 
Configuration of ev 2
Configuration of ev 2Configuration of ev 2
Configuration of ev 2
 
Microgrid
MicrogridMicrogrid
Microgrid
 
Unit commitment in power system
Unit commitment in power systemUnit commitment in power system
Unit commitment in power system
 
Frequency control in a microgrid including controllable load
Frequency control in a microgrid including controllable loadFrequency control in a microgrid including controllable load
Frequency control in a microgrid including controllable load
 
Power Electronics in Electric and Hybrid Vehicles 2014 Report by Yole Develo...
Power Electronics in Electric and Hybrid Vehicles 2014 Report by Yole Develo...Power Electronics in Electric and Hybrid Vehicles 2014 Report by Yole Develo...
Power Electronics in Electric and Hybrid Vehicles 2014 Report by Yole Develo...
 
Available transfer capability (atc) sbw ppt
Available transfer capability (atc) sbw pptAvailable transfer capability (atc) sbw ppt
Available transfer capability (atc) sbw ppt
 

En vedette

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 load dispatch
Economic load  dispatchEconomic load  dispatch
Economic load dispatchDeepak John
 
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
 
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
 
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
 

En vedette (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 load dispatch
Economic load  dispatchEconomic load  dispatch
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
 
Power system planning & operation [eceg 4410]
Power system planning & operation [eceg 4410]Power system planning & operation [eceg 4410]
Power system planning & operation [eceg 4410]
 
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
 

Similaire à 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
 
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
 
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMIJARIIT
 
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
 

Similaire à 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...
 
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
 
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
 
I1065259
I1065259I1065259
I1065259
 
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
 
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
 

Plus de 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
 

Dernier

(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
(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
 
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
 
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
 
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
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
(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
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 

Dernier (20)

(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
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
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar 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...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
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
 
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
 
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
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
(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
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 

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.