matlab code for economic load dispatch using genetic algorithm
#1

matlab code for economic load dispatch using genetic algorithm
Reply
#2
ABSTRACT

Evolutionary algorithms are becoming an important aspect of artificial intelligence and are successfully applied to a variety of optimization problems. This paper presents genetic algorithm and quadratic programming concepts in solving economic load dispatch in which the total cost of generating power is minimized with a valve point loading effect while satisfying the load demand irrespective of transmission line losses. This work aims in modeling the economic load dispatch problem with transmission loss and is being applied to the test systems i.e. IEEE 14 BUS and IEEE 30 BUS using MATLAB.


clear;
clc;
tic;
global data B Pd
% This program solves the economic dispatch with Bmn coefficients byGenetic
% Algorithm toolbox of MATLAB 7.04.For any discussion&Clarification the
% author can be contacted by mail (salorajan[at]gmail.com)
% The data matrix should have 5 columns of fuel cost coefficients and plant limits.
% 1.a ($/MW^2) 2. b $/MW 3. c ($) 4.lower lomit(MW) 5.Upper limit(MW)
%no of rows denote the no of plants(n)
data=[0.007 7 240 100 500
0.0095 10 200 50 200
0.009 8.5 220 80 300
0.009 11 200 50 150
0.008 10.5 220 50 200
0.0075 12 120 50 120];
% Loss coefficients it should be squarematrix of size nXn where n is the no
% of plants
B=1e-4*[0.14 0.17 0.15 0.19 0.26 0.22
0.17 0.6 0.13 0.16 0.15 0.2
0.15 0.13 0.65 0.17 0.24 0.19
0.19 0.16 0.17 0.71 0.3 0.25
0.26 0.15 0.24 0.3 0.69 0.32
0.22 0.2 0.19 0.25 0.32 0.85
];
% Demand (MW)
Pd=700;
% setting the genetic algorithm parameters.
options = gaoptimset;
options = gaoptimset('PopulationSize', 50,'Generations', 500,'TimeLimit', 200,'StallTimeLimit', 100,'PlotFcns', {@gaplotbestf,@gaplotbestindiv});
[x ff]=ga(@eldga,5,options);
[ F P1 Pl]=eldga(x)
tic;
% F is the total fuel cost
%P1 is the allocation vector
% Pl is the transmission losss
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: genetic algorithm to economic load dispatch ppt, genetic algorithm based optimal power dispatch in multinode electricity market, economic load dispatch using genetic algorithm matlab code, bat algorithm economic dispatch matlab, economic load dispatch source code, economic load dispatch program using matlab, genetic algorithm to economic load dispatch example,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  authentication schemes for session passwords using color and images project source code 2 2,238 03-02-2018, 09:35 AM
Last Post: Nischithnash
  image encryption and decryption using rsa algorithm in matlab 2 7,916 29-05-2017, 04:17 PM
Last Post: Priyanka Bidikar
  download liver tumor ct scan image in matlab with source code 4 8,072 21-05-2017, 09:54 PM
Last Post: abdulrahmanmashaal
  MATLAB codes needed for powerline communication 1 8,083 12-04-2017, 05:00 PM
Last Post: jaseela123d
  source code for task scheduling using genetic algorithm using java 2 8,534 11-04-2017, 08:31 PM
Last Post: Guest
Thumbs Up source code of online payment system using steganography and visual cryptography 3 8,515 06-04-2017, 09:56 AM
Last Post: jaseela123d
  vhdl code for radix 2 modified booth algorithm 4 1,023 04-04-2017, 10:24 AM
Last Post: Garlapati nikitha
  matlab code for wavelet based ofdm transmitter 1 924 24-02-2017, 11:18 AM
Last Post: ijasti
  code to extract brain tumor detection using matlab 2 1,068 17-10-2016, 04:32 PM
Last Post: girish123ak
  secure chat using RSA algorithm karthik1218 2 2,583 14-10-2016, 02:48 PM
Last Post: info togel

Forum Jump: