SlideShare a Scribd company logo
1 of 5
EXPERIMENT NO 7 
OBJECTIVE 
Load sharing between two interconnected power system including transmission losses 
component. 
SOFTWARE USED 
MATLAB 
THEORY 
If we consider how a load is distributed between the different plants that are joined by 
transmission lines, then the line losses have to be explicitly included in the economic dispatch 
problem. When the transmission losses are included in the economic dispatch problem we can 
write 
where PLOSS is the total line loss. Since PT is assumed to be constant, we have 
In the above equation dPLOSS includes the power loss due to every generator, i.e., 
Also minimum generation cost implies dfT = 0. Multiplying both (2) and (3) by ฮป and combining 
we get 
Adding (4) with (5) we obtain 
The above equation satisfies when 
(1) 
(2) 
(3) 
(4) 
(5)
(6) 
Again since 
from (6) we get 
where Li is called the penalty factor of load- i and is given by 
PROBLEM STATEMENT 
A two-bus system is shown in figure below. If 100 Mw is transmitted from plant1 to the load, a 
transmission loss of 10 MW is incurred. Find the required generation for each plant and the 
power received by load when the system ํœ† is Rs 25/MWh. The incremental fuel costs of the two 
plants are given below 
ํ‘‘ํถ1 
ํ‘‘ํ‘ƒ ํบ1 
= 0.020ํ‘ƒํบ1 
+ 16 Rs/MWh 
ํ‘‘ํถ2 
ํ‘‘ํ‘ƒ ํบ2 
= 0.04ํ‘ƒํบ2 
+ 20 Rs/MWh 
A two-bus system 
(7)
CONCLUSION 
The MATLAB code for the above problem is run and executed. It can be interpreted that the 
minimum fuel cost is obtained, when the incremental fuel cost of each plant multiplied by its 
penalty factor is the same for all the plants. Also when one generator is far away connected 
through transmission line there is some loss component involved in that. 
REFERENCES 
[1]. Stevenson Jr, W. D. (1982). Elements of Power System Analysis, (4th), Mc-Graw Hill Higher 
Education. 
[2]. Hadi Saadat, โ€œPower System Analysisโ€, Milwaukee School of Engineering, McGraw Hill, 
1999. 
[3]. Kothari D. P., Nagrath I. J., โ€œModern Power System Analysisโ€, Mc-Graw Hill Higher 
Education.
APPENDIX 
MATLAB CODE 
clear 
% MATLAB Program for optimum loading of generators 
% This program finds the optimal loading of generators including 
% penalty factors 
% n is no of generators 
n=2 
% Pd stands for I oad demand 
% alpha and beta arrays denote alpha beta coefficients for given 
% generators 
Pd = 237.04; 
alpha=[ 0.020 
0.04]; 
beta=[16 
20]; 
lamda=20; 
lamdaprev =lamda; 
% tolerance is eps and increment in lamda is deltalamda 
eps=1; 
deltalamda = O.25; 
% the minimum and maximum limits of each generating unit 
% are stored in arrays Pgmin and Pgmax. 
% In actual large scale problems,we can first initialise the Pgmax array 
% to inf using for loop 
% and Pgmin array to zero using Pgmin=zeros(n,1) command 
PGmax=[200 200]: 
Pgmin=[0 0] ; 
B=[0.001 0 
0 0] ; 
Pg = zeros(n,1) ; 
noofiter=0; 
PL=0; 
Pg = zeros(n,1); 
while abs(sum(Pg)-PD-PL)>eps 
for i=1:n 
sigma=B(i,:)*Pg-B(i,i)*Pg(i) ; 
Pg(i) =( 1-beta(i)/lamda-(2*sigma))/(alpha(i)/lamda+2*B(i,i)); 
PL=Pg'*B*Pg; 
if Pg(i) > Pgmax(i) 
Pg(i) =Pgmax(i) ; 
end 
if Pg(i) < Pgmin(i) 
Pg(i) = Pgmin(i) 
end
end 
PL=Pg'*B*Pg; 
if (sum(Pg)-Pd-PL) < 0 
lamdaprev = lamda; 
lamda=lamda+deltalamda; 
else 
lamdaprev=lamda; 
lamda=lamda-deltalamda; 
end 
noofiter=noofiter+1 ; 
Pg; 
end 
disp('The number of iterations required are') 
noofiter 
disp('The final value of lamda is') 
lamdaprev 
disp('The optimal loading of generators including penalty factors is') 
Pg 
disp('The losses are') 
PL

More Related Content

What's hot

Load / Frequency balancing Control systems study
Load / Frequency balancing Control systems studyLoad / Frequency balancing Control systems study
Load / Frequency balancing Control systems studyCAL
ย 
Economic operation of power system
Economic operation of power systemEconomic operation of power system
Economic operation of power systemBalaram Das
ย 
Unit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit CommitmentUnit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit CommitmentSANTOSH GADEKAR
ย 
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
ย 
Computer Application in Power system: Chapter six - optimization and security
Computer Application in Power system: Chapter six - optimization and securityComputer Application in Power system: Chapter six - optimization and security
Computer Application in Power system: Chapter six - optimization and securityAdama Science and Technology University
ย 
Optimal load scheduling
Optimal load schedulingOptimal load scheduling
Optimal load schedulingMayank Sharma
ย 
Economic load dispatch
Economic load dispatchEconomic load dispatch
Economic load dispatchvikram anand
ย 
Automatic load frequency control
Automatic load frequency controlAutomatic load frequency control
Automatic load frequency controlBalaram Das
ย 
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
ย 
Unit Commitment
Unit CommitmentUnit Commitment
Unit Commitmentrohitdasari
ย 
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMIJARIIT
ย 
Ece333 2018 lect18_rh power flow
Ece333 2018 lect18_rh power flowEce333 2018 lect18_rh power flow
Ece333 2018 lect18_rh power flowvikram anand
ย 
Ifedi.Seminar Presenatation
Ifedi.Seminar PresenatationIfedi.Seminar Presenatation
Ifedi.Seminar PresenatationIfedi
ย 
Automatic Generation Control
Automatic Generation ControlAutomatic Generation Control
Automatic Generation ControlMINAL RADE
ย 
Control of Wind Energy Conversion System and Power Quality Improvement in the...
Control of Wind Energy Conversion System and Power Quality Improvement in the...Control of Wind Energy Conversion System and Power Quality Improvement in the...
Control of Wind Energy Conversion System and Power Quality Improvement in the...ijeei-iaes
ย 
Lecture 16
Lecture 16Lecture 16
Lecture 16Forward2025
ย 
LOAD FLOW ANALYSIS FOR A 220KV LINE โ€“ CASE STUDY
LOAD FLOW ANALYSIS FOR A 220KV LINE โ€“ CASE STUDYLOAD FLOW ANALYSIS FOR A 220KV LINE โ€“ CASE STUDY
LOAD FLOW ANALYSIS FOR A 220KV LINE โ€“ CASE STUDYijiert bestjournal
ย 
Power System Dynamics & Stability Overview & Electromagnetic Transients
Power System Dynamics & Stability Overview  &  Electromagnetic TransientsPower System Dynamics & Stability Overview  &  Electromagnetic Transients
Power System Dynamics & Stability Overview & Electromagnetic TransientsPower System Operation
ย 

What's hot (20)

Load / Frequency balancing Control systems study
Load / Frequency balancing Control systems studyLoad / Frequency balancing Control systems study
Load / Frequency balancing Control systems study
ย 
Economic operation of power system
Economic operation of power systemEconomic operation of power system
Economic operation of power system
ย 
Unit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit CommitmentUnit 5 Economic Load Dispatch and Unit Commitment
Unit 5 Economic Load Dispatch and Unit Commitment
ย 
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...
ย 
Computer Application in Power system: Chapter six - optimization and security
Computer Application in Power system: Chapter six - optimization and securityComputer Application in Power system: Chapter six - optimization and security
Computer Application in Power system: Chapter six - optimization and security
ย 
Optimal load scheduling
Optimal load schedulingOptimal load scheduling
Optimal load scheduling
ย 
Economic load dispatch
Economic load dispatchEconomic load dispatch
Economic load dispatch
ย 
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...
ย 
Automatic load frequency control
Automatic load frequency controlAutomatic load frequency control
Automatic load frequency control
ย 
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
ย 
Unit Commitment
Unit CommitmentUnit Commitment
Unit Commitment
ย 
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHMECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ECONOMIC LOAD DISPATCH USING GENETIC ALGORITHM
ย 
POWER (LOAD) FLOW STUDY
POWER (LOAD)  FLOW STUDYPOWER (LOAD)  FLOW STUDY
POWER (LOAD) FLOW STUDY
ย 
Ece333 2018 lect18_rh power flow
Ece333 2018 lect18_rh power flowEce333 2018 lect18_rh power flow
Ece333 2018 lect18_rh power flow
ย 
Ifedi.Seminar Presenatation
Ifedi.Seminar PresenatationIfedi.Seminar Presenatation
Ifedi.Seminar Presenatation
ย 
Automatic Generation Control
Automatic Generation ControlAutomatic Generation Control
Automatic Generation Control
ย 
Control of Wind Energy Conversion System and Power Quality Improvement in the...
Control of Wind Energy Conversion System and Power Quality Improvement in the...Control of Wind Energy Conversion System and Power Quality Improvement in the...
Control of Wind Energy Conversion System and Power Quality Improvement in the...
ย 
Lecture 16
Lecture 16Lecture 16
Lecture 16
ย 
LOAD FLOW ANALYSIS FOR A 220KV LINE โ€“ CASE STUDY
LOAD FLOW ANALYSIS FOR A 220KV LINE โ€“ CASE STUDYLOAD FLOW ANALYSIS FOR A 220KV LINE โ€“ CASE STUDY
LOAD FLOW ANALYSIS FOR A 220KV LINE โ€“ CASE STUDY
ย 
Power System Dynamics & Stability Overview & Electromagnetic Transients
Power System Dynamics & Stability Overview  &  Electromagnetic TransientsPower System Dynamics & Stability Overview  &  Electromagnetic Transients
Power System Dynamics & Stability Overview & Electromagnetic Transients
ย 

Similar to Exp 7 (1)7. Load sharing between two interconnected power systems including transmission losses component

Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodEconomic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodIOSR Journals
ย 
3 Economic Dispatch Of Thermal
3 Economic Dispatch Of Thermal3 Economic Dispatch Of Thermal
3 Economic Dispatch Of ThermalKimberly Pulley
ย 
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
ย 
Project on economic load dispatch
Project on economic load dispatchProject on economic load dispatch
Project on economic load dispatchayantudu
ย 
Power System Modeling and Simulation lab manual
Power System Modeling and Simulation lab manualPower System Modeling and Simulation lab manual
Power System Modeling and Simulation lab manualDHEERAJ DHAKAR
ย 
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
ย 
Lecture_16.ppt
Lecture_16.pptLecture_16.ppt
Lecture_16.pptKifle Godana
ย 
Power System analysis slides - economic dispatch
Power System analysis slides - economic dispatchPower System analysis slides - economic dispatch
Power System analysis slides - economic dispatchThiyagarajan Rajalakshmi
ย 
Optimal energy management and storage sizing for electric vehicles
Optimal energy management and storage sizing for electric vehiclesOptimal energy management and storage sizing for electric vehicles
Optimal energy management and storage sizing for electric vehiclesPower System Operation
ย 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
ย 
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...IOSR Journals
ย 
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
ย 
Economic Dispatch Research paper solution slides
Economic Dispatch Research paper solution slidesEconomic Dispatch Research paper solution slides
Economic Dispatch Research paper solution slidesMuhammad Abdullah
ย 
Real-time plasma impedance matching using an impedance mapping strategy
Real-time plasma impedance matching using an impedance mapping strategyReal-time plasma impedance matching using an impedance mapping strategy
Real-time plasma impedance matching using an impedance mapping strategyImpedans Ltd
ย 
Effects of Different Parameters on Power System Transient Stability Studies
Effects of Different Parameters on Power System Transient Stability StudiesEffects of Different Parameters on Power System Transient Stability Studies
Effects of Different Parameters on Power System Transient Stability StudiesPower System Operation
ย 
Efficient realization-of-an-adfe-with-a-new-adaptive-algorithm
Efficient realization-of-an-adfe-with-a-new-adaptive-algorithmEfficient realization-of-an-adfe-with-a-new-adaptive-algorithm
Efficient realization-of-an-adfe-with-a-new-adaptive-algorithmCemal Ardil
ย 

Similar to Exp 7 (1)7. Load sharing between two interconnected power systems including transmission losses component (20)

Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration MethodEconomic Dispatch of Generated Power Using Modified Lambda-Iteration Method
Economic Dispatch of Generated Power Using Modified Lambda-Iteration Method
ย 
3 Economic Dispatch Of Thermal
3 Economic Dispatch Of Thermal3 Economic Dispatch Of Thermal
3 Economic Dispatch Of Thermal
ย 
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
ย 
Project on economic load dispatch
Project on economic load dispatchProject on economic load dispatch
Project on economic load dispatch
ย 
E010232732
E010232732E010232732
E010232732
ย 
Power System Modeling and Simulation lab manual
Power System Modeling and Simulation lab manualPower System Modeling and Simulation lab manual
Power System Modeling and Simulation lab manual
ย 
Farag1995
Farag1995Farag1995
Farag1995
ย 
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...
ย 
Lecture_16.ppt
Lecture_16.pptLecture_16.ppt
Lecture_16.ppt
ย 
Power System analysis slides - economic dispatch
Power System analysis slides - economic dispatchPower System analysis slides - economic dispatch
Power System analysis slides - economic dispatch
ย 
Optimal energy management and storage sizing for electric vehicles
Optimal energy management and storage sizing for electric vehiclesOptimal energy management and storage sizing for electric vehicles
Optimal energy management and storage sizing for electric vehicles
ย 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
ย 
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
Application of Gravitational Search Algorithm and Fuzzy For Loss Reduction of...
ย 
E010123337
E010123337E010123337
E010123337
ย 
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
ย 
fpga 3D
fpga 3Dfpga 3D
fpga 3D
ย 
Economic Dispatch Research paper solution slides
Economic Dispatch Research paper solution slidesEconomic Dispatch Research paper solution slides
Economic Dispatch Research paper solution slides
ย 
Real-time plasma impedance matching using an impedance mapping strategy
Real-time plasma impedance matching using an impedance mapping strategyReal-time plasma impedance matching using an impedance mapping strategy
Real-time plasma impedance matching using an impedance mapping strategy
ย 
Effects of Different Parameters on Power System Transient Stability Studies
Effects of Different Parameters on Power System Transient Stability StudiesEffects of Different Parameters on Power System Transient Stability Studies
Effects of Different Parameters on Power System Transient Stability Studies
ย 
Efficient realization-of-an-adfe-with-a-new-adaptive-algorithm
Efficient realization-of-an-adfe-with-a-new-adaptive-algorithmEfficient realization-of-an-adfe-with-a-new-adaptive-algorithm
Efficient realization-of-an-adfe-with-a-new-adaptive-algorithm
ย 

More from Shweta Yadav

Exp 8 (1)8. Load-frequency dynamics of single area power system
Exp 8 (1)8.	Load-frequency dynamics of single area power systemExp 8 (1)8.	Load-frequency dynamics of single area power system
Exp 8 (1)8. Load-frequency dynamics of single area power systemShweta Yadav
ย 
Exp 5 (1)5. Newton Raphson load flow analysis Matlab Software
Exp 5 (1)5.	Newton Raphson load flow analysis Matlab SoftwareExp 5 (1)5.	Newton Raphson load flow analysis Matlab Software
Exp 5 (1)5. Newton Raphson load flow analysis Matlab SoftwareShweta Yadav
ย 
Exp 4 (1)4. Gauss Siedal Load flow analysis using Matlab Software.
Exp 4 (1)4.	Gauss Siedal Load flow analysis using Matlab Software.Exp 4 (1)4.	Gauss Siedal Load flow analysis using Matlab Software.
Exp 4 (1)4. Gauss Siedal Load flow analysis using Matlab Software.Shweta Yadav
ย 
Exp 3 (1)3. To Formulate YBUS Matrix By Singular Transformation.
Exp 3 (1)3.	To Formulate YBUS Matrix By Singular Transformation.Exp 3 (1)3.	To Formulate YBUS Matrix By Singular Transformation.
Exp 3 (1)3. To Formulate YBUS Matrix By Singular Transformation.Shweta Yadav
ย 
Exp list (1)
Exp list (1)Exp list (1)
Exp list (1)Shweta Yadav
ย 
M gopal digital control and state variable methods - copy
M gopal   digital control and state variable methods - copyM gopal   digital control and state variable methods - copy
M gopal digital control and state variable methods - copyShweta Yadav
ย 
Moderndigitalandanalogcommunicationsyatemsbyb plathisolutionmannual3rdedition...
Moderndigitalandanalogcommunicationsyatemsbyb plathisolutionmannual3rdedition...Moderndigitalandanalogcommunicationsyatemsbyb plathisolutionmannual3rdedition...
Moderndigitalandanalogcommunicationsyatemsbyb plathisolutionmannual3rdedition...Shweta Yadav
ย 

More from Shweta Yadav (7)

Exp 8 (1)8. Load-frequency dynamics of single area power system
Exp 8 (1)8.	Load-frequency dynamics of single area power systemExp 8 (1)8.	Load-frequency dynamics of single area power system
Exp 8 (1)8. Load-frequency dynamics of single area power system
ย 
Exp 5 (1)5. Newton Raphson load flow analysis Matlab Software
Exp 5 (1)5.	Newton Raphson load flow analysis Matlab SoftwareExp 5 (1)5.	Newton Raphson load flow analysis Matlab Software
Exp 5 (1)5. Newton Raphson load flow analysis Matlab Software
ย 
Exp 4 (1)4. Gauss Siedal Load flow analysis using Matlab Software.
Exp 4 (1)4.	Gauss Siedal Load flow analysis using Matlab Software.Exp 4 (1)4.	Gauss Siedal Load flow analysis using Matlab Software.
Exp 4 (1)4. Gauss Siedal Load flow analysis using Matlab Software.
ย 
Exp 3 (1)3. To Formulate YBUS Matrix By Singular Transformation.
Exp 3 (1)3.	To Formulate YBUS Matrix By Singular Transformation.Exp 3 (1)3.	To Formulate YBUS Matrix By Singular Transformation.
Exp 3 (1)3. To Formulate YBUS Matrix By Singular Transformation.
ย 
Exp list (1)
Exp list (1)Exp list (1)
Exp list (1)
ย 
M gopal digital control and state variable methods - copy
M gopal   digital control and state variable methods - copyM gopal   digital control and state variable methods - copy
M gopal digital control and state variable methods - copy
ย 
Moderndigitalandanalogcommunicationsyatemsbyb plathisolutionmannual3rdedition...
Moderndigitalandanalogcommunicationsyatemsbyb plathisolutionmannual3rdedition...Moderndigitalandanalogcommunicationsyatemsbyb plathisolutionmannual3rdedition...
Moderndigitalandanalogcommunicationsyatemsbyb plathisolutionmannual3rdedition...
ย 

Recently uploaded

Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxJuliansyahHarahap1
ย 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsArindam Chakraborty, Ph.D., P.E. (CA, TX)
ย 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .DerechoLaboralIndivi
ย 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Standamitlee9823
ย 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
ย 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
ย 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
ย 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
ย 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
ย 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
ย 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
ย 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
ย 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
ย 
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
ย 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
ย 

Recently uploaded (20)

Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
ย 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
ย 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
ย 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ย 
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In Bangalore โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
ย 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
ย 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
ย 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ย 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
ย 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
ย 
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
ย 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
ย 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
ย 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
ย 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
ย 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
ย 
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar  โ‰ผ๐Ÿ” Delhi door step de...
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In New Ashok Nagar โ‰ผ๐Ÿ” Delhi door step de...
ย 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
ย 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
ย 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
ย 

Exp 7 (1)7. Load sharing between two interconnected power systems including transmission losses component

  • 1. EXPERIMENT NO 7 OBJECTIVE Load sharing between two interconnected power system including transmission losses component. SOFTWARE USED MATLAB THEORY If we consider how a load is distributed between the different plants that are joined by transmission lines, then the line losses have to be explicitly included in the economic dispatch problem. When the transmission losses are included in the economic dispatch problem we can write where PLOSS is the total line loss. Since PT is assumed to be constant, we have In the above equation dPLOSS includes the power loss due to every generator, i.e., Also minimum generation cost implies dfT = 0. Multiplying both (2) and (3) by ฮป and combining we get Adding (4) with (5) we obtain The above equation satisfies when (1) (2) (3) (4) (5)
  • 2. (6) Again since from (6) we get where Li is called the penalty factor of load- i and is given by PROBLEM STATEMENT A two-bus system is shown in figure below. If 100 Mw is transmitted from plant1 to the load, a transmission loss of 10 MW is incurred. Find the required generation for each plant and the power received by load when the system ํœ† is Rs 25/MWh. The incremental fuel costs of the two plants are given below ํ‘‘ํถ1 ํ‘‘ํ‘ƒ ํบ1 = 0.020ํ‘ƒํบ1 + 16 Rs/MWh ํ‘‘ํถ2 ํ‘‘ํ‘ƒ ํบ2 = 0.04ํ‘ƒํบ2 + 20 Rs/MWh A two-bus system (7)
  • 3. CONCLUSION The MATLAB code for the above problem is run and executed. It can be interpreted that the minimum fuel cost is obtained, when the incremental fuel cost of each plant multiplied by its penalty factor is the same for all the plants. Also when one generator is far away connected through transmission line there is some loss component involved in that. REFERENCES [1]. Stevenson Jr, W. D. (1982). Elements of Power System Analysis, (4th), Mc-Graw Hill Higher Education. [2]. Hadi Saadat, โ€œPower System Analysisโ€, Milwaukee School of Engineering, McGraw Hill, 1999. [3]. Kothari D. P., Nagrath I. J., โ€œModern Power System Analysisโ€, Mc-Graw Hill Higher Education.
  • 4. APPENDIX MATLAB CODE clear % MATLAB Program for optimum loading of generators % This program finds the optimal loading of generators including % penalty factors % n is no of generators n=2 % Pd stands for I oad demand % alpha and beta arrays denote alpha beta coefficients for given % generators Pd = 237.04; alpha=[ 0.020 0.04]; beta=[16 20]; lamda=20; lamdaprev =lamda; % tolerance is eps and increment in lamda is deltalamda eps=1; deltalamda = O.25; % the minimum and maximum limits of each generating unit % are stored in arrays Pgmin and Pgmax. % In actual large scale problems,we can first initialise the Pgmax array % to inf using for loop % and Pgmin array to zero using Pgmin=zeros(n,1) command PGmax=[200 200]: Pgmin=[0 0] ; B=[0.001 0 0 0] ; Pg = zeros(n,1) ; noofiter=0; PL=0; Pg = zeros(n,1); while abs(sum(Pg)-PD-PL)>eps for i=1:n sigma=B(i,:)*Pg-B(i,i)*Pg(i) ; Pg(i) =( 1-beta(i)/lamda-(2*sigma))/(alpha(i)/lamda+2*B(i,i)); PL=Pg'*B*Pg; if Pg(i) > Pgmax(i) Pg(i) =Pgmax(i) ; end if Pg(i) < Pgmin(i) Pg(i) = Pgmin(i) end
  • 5. end PL=Pg'*B*Pg; if (sum(Pg)-Pd-PL) < 0 lamdaprev = lamda; lamda=lamda+deltalamda; else lamdaprev=lamda; lamda=lamda-deltalamda; end noofiter=noofiter+1 ; Pg; end disp('The number of iterations required are') noofiter disp('The final value of lamda is') lamdaprev disp('The optimal loading of generators including penalty factors is') Pg disp('The losses are') PL