Member • Sep 6, 2013
-
maraitamilanHi friends doing my M.E project on reconfiguration of radial distribution network for that first step is to find load flow in radial distribution network can any body help me to do with the matlab coding for this please help
-
Member • Sep 10, 2013
can you please share the related paper such that we can provide a solution............Are you sure? This action cannot be undone. -
Member • Sep 11, 2013
for radial distribution 33 bus boss using forward/backward sweepAre you sure? This action cannot be undone. -
Member • Sep 12, 2013
ok.
please follow the paper where he discussed in steps to implement the code....Are you sure? This action cannot be undone. -
Member • Sep 12, 2013
#-Link-Snipped-#Are you sure? This action cannot be undone. -
Member • Sep 15, 2013
load flow now ok have to start with branch and bound techniqueAre you sure? This action cannot be undone. -
Member • Sep 16, 2013
hello boss. doing my project on the topic reconfiguration of distribution network for loss minimization and facing the same problem of radial load flow. i have gone through a few of radial load flow papers based on forward backward sweep. coding part is problematic. i really need help! please helpAre you sure? This action cannot be undone. -
Member • Sep 16, 2013
hi Shruti21 using which technique going to reconfigure.... and btw i got load flow for radial systemAre you sure? This action cannot be undone. -
Member • Sep 16, 2013
using GA. u got the load flow code ?Are you sure? This action cannot be undone. -
Member • Sep 16, 2013
u are using only one objective or multiobjective????..... ya got the codeAre you sure? This action cannot be undone. -
Member • Sep 16, 2013
hi guys please share the following code where u getting issue ok such that ill go through once and ill try to solve ok...........Are you sure? This action cannot be undone. -
Member • Sep 16, 2013
hi sir..share ur email id ,so that i can mail u the codeAre you sure? This action cannot be undone. -
Member • Sep 16, 2013
@#-Link-Snipped-# Why not share your Matlab code here itself ?
Many CEans will indirectly get help from your code too.Are you sure? This action cannot be undone. -
Member • Sep 16, 2013
shruti21hi sir..share ur email id ,so that i can mail u the codeAre you sure? This action cannot be undone. -
Member • Oct 7, 2013
hello sir i have a same problem, my project is reconfiguration network fo real loss reduction to increase the reliability network, may anyone may help me with the matlab code, it's starting to depressed me...Are you sure? This action cannot be undone. -
Member • Feb 10, 2014
Hi friends....
I've solved different papers for load flow in radial distribution system and one paper for mesh network.
So I can help you for load flow..
But i need some help in reconfiguration. How can i approach for reconfiguration????
Waiting for your replies.Are you sure? This action cannot be undone. -
Member • Feb 10, 2014
Hi...shruti21hi sir..share ur email id ,so that i can mail u the code
U can ask me for load flow.... i got the results...
I'm also working for reconfiguration..Are you sure? This action cannot be undone. -
Member • Feb 10, 2014
use any of the evolutionary algorithm for reconfigurationAre you sure? This action cannot be undone. -
Member • Feb 10, 2014
evolutionary algorithm means????maraitamilanuse any of the evolutionary algorithm for reconfiguration
Can u tell me some clearly....Are you sure? This action cannot be undone. -
Member • Feb 10, 2014
genetic,differential, harmony search etcAre you sure? This action cannot be undone. -
Member • Feb 10, 2014
I'm trying to solve "A NEW ALGORITHM FOR THE RECONFIGURATION OF DISTRIBUTION FOR LOSS MINIMIZATION"
IEEE Transactions on Power Delivery. Vol. 7, No. 3, July 1992.
CAN U HELP ME FOR THIS????Are you sure? This action cannot be undone. -
Member • Feb 10, 2014
I'm trying to solve "A NEW ALGORITHM FOR THE RECONFIGURATION OF DISTRIBUTION FOR LOSS MINIMIZATION"maraitamilangenetic,differential, harmony search etc
IEEE Transactions on Power Delivery. Vol. 7, No. 3, July 1992.
CAN U HELP ME FOR THIS????Are you sure? This action cannot be undone. -
Member • Feb 10, 2014
1992.... might be old strategy new ideas might arrived at this timeAre you sure? This action cannot be undone. -
Member • Feb 10, 2014
can u suggest me any paper which is easy to understand the concept of reconfiguration?????maraitamilan1992.... might be old strategy new ideas might arrived at this timeAre you sure? This action cannot be undone. -
Member • Mar 3, 2014
sooraj narayanHai sooraj narayan...
I think u r making program for the paper titled as "a direct approach for distribution system load flow solution" by J H Teng. U can mail me your program to my mail #-Link-Snipped-#
I've solved that paper. but i don't want to give my program.
however i can help to identify the mistakes in ur program or i can provide u results for any system to do ur thesis work.
If u want results only, u can mail me the data for any bus system.
The email id which i've mentioned is not my personal id. I'll check that mail weakly once. so please be patience to get the reply from me.Are you sure? This action cannot be undone. -
Member • Mar 3, 2014
Hai maraitamilan..maraitamilan1992.... might be old strategy new ideas might arrived at this time
Thanks for your suggestion about reconfiguration. I've searched for latest papers and i got the program for reconfiguration. I would like to thank you for your replies to my questions. Thank u once again....Are you sure? This action cannot be undone. -
Member • Mar 3, 2014
Hai sooraj narayan...sooraj narayanANOTEHR CODE:
clear all
clc
i=sqrt(-1);
% eval('linedata15bus')
% eval('loadadata15bus')
eval('line33')
eval('load33')
nbus=max(max(line😀,3)),max(line😀,2)));
nbranch=length(line😀,1));
fb=line😀,2);
tb=line😀,3);
R=line😀,4);
X=line😀,5);
MVAb=100e6;
KVb=12.66e3;
Zb=(KVb^2)/MVAb;
Z=R+(i*X);
Zpu=Z/Zb;
PL=busd😀,2)/MVAb
QL=busd😀,3)/MVAb
delV=zeros(1,nbus);
iter=1;
ILL=[];
V=ones(nbus,1);
Vprev=V;
IL=[];
dVmax=1;
% while (dVmax>0.00001)
while(iter<200)
for k=1:nbus
IL(k,1)=conj((PL(k)+(i*QL(k)))/V(k));
end
ILL=IL;
for k=nbranch:-1:1
p=fb(k);
q=tb(k);
ILL(p)=ILL(p)+ILL(q);
end
Ibr=ILL(tb);
for k=1:nbranch
delV(k,1)=(Zpu(k)*Ibr(k));
end
for k=1😔nbus-1)
V(tb(k),1)=V(fb(k),1)-delV(k,1);
end
dV=V-Vprev;
dVmax=max((dV));
Vprev=V;
iter=iter+1;
end
iter
disp('BUS VOLTAGES ARE');
abs(Vprev)
disp('BRANCH CURRENTS ARE');
abs(Ibr)
I think u r making program for the paper titled as "a direct approach for distribution system load flow solution" by J H Teng. U can mail me your program to my mail.
I've solved that paper. but i don't want to give my program.
however i can help to identify the mistakes in ur program or i can provide u results for any system to do ur thesis work.
If u want results only, u can mail me the data for any bus system.Are you sure? This action cannot be undone. -
Member • Mar 18, 2014
hi shruti21, I am trying to implement code for ladder network theory. It will be helpful to me if you will help me with the code of forward backward seep method.Are you sure? This action cannot be undone. -
Member • Apr 16, 2014
Sir,
I would like to do my project on the topic ‘Power Loss Minimization in Distribution System Using Network Reconfiguration in the Presence of Distributed Generation’- (IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 28, NO. 1, FEBRUARY 2013) But I don’t know how to start.😔... May anyone please give me guidelines for starting my project..Are you sure? This action cannot be undone. -
Member • Apr 20, 2014
y no replies?? 😔Are you sure? This action cannot be undone. -
Member • Apr 25, 2014
VanipdSir,
I would like to do my project on the topic ‘Power Loss Minimization in Distribution System Using Network Reconfiguration in the Presence of Distributed Generation’- (IEEE TRANSACTIONS ON POWER SYSTEMS, VOL. 28, NO. 1, FEBRUARY 2013) But I don’t know how to start.😔... May anyone please give me guidelines for starting my project..
First u've to do load flow analysis for radial distribution system.
after this u can get the idea how to integrate Distributed generation into radial distribution system and how to do reconfiguration.
so choose a good paper and start writing program for load flow of radial dist. system.Are you sure? This action cannot be undone. -
Member • Apr 26, 2014
Sir, thank you for ur replyRaviteja16First u've to do load flow analysis for radial distribution system.
after this u can get the idea how to integrate Distributed generation into radial distribution system and how to do reconfiguration.
so choose a good paper and start writing program for load flow of radial dist. system.
Any suggestion for such papers??Are you sure? This action cannot be undone. -
Member • Apr 27, 2014
First try to search for papers in Google. If you couldn't get any paper, then i'll suggest some papers for load flow.VanipdSir, thank you for ur reply
Any suggestion for such papers??Are you sure? This action cannot be undone. -
Member • Apr 30, 2014
y we r nt choosing Conventional METHODS such as Gauss Siedel , NR..... ??Are you sure? This action cannot be undone. -
Member • May 5, 2014
hello, does anybody have finish this work?
i really need help for this oneAre you sure? This action cannot be undone. -
Member • May 9, 2014
1. NR & GS methods require solutions of set of equations whose size is of the order of number of the buses. This results in long computation time.Vanipdy we r nt choosing Conventional METHODS such as Gauss Siedel , NR..... ??
2. For distribution system, Ybus matrix is very sparse => waste of memory storage.Are you sure? This action cannot be undone. -
Member • May 9, 2014
Which type of help you need??? Load flow???yahya idriashello, does anybody have finish this work?
i really need help for this oneAre you sure? This action cannot be undone. -
Member • May 9, 2014
yes sir, i have a load flow program using newton raphson.Raviteja16Which type of help you need??? Load flow???
but i still confuse how to get the feeder with minimum loss.
really need a help sir.
thanks for replying my post 😀Are you sure? This action cannot be undone. -
Member • May 9, 2014
#-Link-Snipped-# .... for me too........ 😔yahya idriasyes sir, i have a load flow program using newton raphson.
but i still confuse how to get the feeder with minimum loss.
really need a help sir.
thanks for replying my post 😀Are you sure? This action cannot be undone. -
Member • May 11, 2014
for which
for which type of system you would like to do load flow???yahya idriasyes sir, i have a load flow program using newton raphson.
but i still confuse how to get the feeder with minimum loss.
really need a help sir.
thanks for replying my post 😀
Transmission or distribution??
U can use modified NR for distribution system also.
Presently i'm working on Distribution Side.
If u r working on Transmission side, u can take some others help...Are you sure? This action cannot be undone. -
Member • May 12, 2014
Sir am using IEEE 69 bus radial distribution systemRaviteja16for which
for which type of system you would like to do load flow???
Transmission or distribution??
U can use modified NR for distribution system also.
Presently i'm working on Distribution Side.
If u r working on Transmission side, u can take some others help...Are you sure? This action cannot be undone. -
Member • May 12, 2014
i am working on distribution side in my country sir...Raviteja16for which
for which type of system you would like to do load flow???
Transmission or distribution??
U can use modified NR for distribution system also.
Presently i'm working on Distribution Side.
If u r working on Transmission side, u can take some others help...
using ieee 33 and 69 bus the first step.
my present work is make a radial to mesh system and than count load flow by opening switch one by one...
that why i confuse how to count using matlab when one switch is open.
i just know a little about matlab.. really need a help sir..Are you sure? This action cannot be undone. -
Member • May 12, 2014
#-Link-Snipped-# which paper u r following??
am also doing in IEEE 69 bus radial distribution s/m.....
if u can plz give me ur contact id.... for constant replies....Are you sure? This action cannot be undone. -
Member • May 13, 2014
you can email me here mam : #-Link-Snipped-#Vanipd#-Link-Snipped-# which paper u r following??
am also doing in IEEE 69 bus radial distribution s/m.....
if u can plz give me ur contact id.... for constant replies....
hope that we can help each other.. 😀Are you sure? This action cannot be undone. -
Member • May 19, 2014
hello..mi thesis topic is also d same as above.. " network reconfiguration of radial distribution system using GENETIC ALGORITHIM in MATLAB". Firstly I have to calculate power loss using load flow using forward backward sweep algorithm. pls help meAre you sure? This action cannot be undone. -
Member • May 19, 2014
Ok...VanipdSir am using IEEE 69 bus radial distribution system
did you take any base paper for load flow????
If not, U can take any one among these papers listed below.
1. "A Direct Approach for Distribution System Load Flow Solutions" by J H Teng, IEEE Transactions on Power Delivery, 2003, 18(3):882-887 (Page numbers).
2. "Topology based approach for Efficient Load flow Solution of Radial Distribution Networks" by KVS Ramachandra Murty, et al; 16th National Power System Conference, 2010, 176-179
3. "Simple and efficient method for load flow solution of radial distribution networks" by D. Das , et al; Electrical power & Energy Systems, 1995, 17(5): 335-346.
4. "A Novel Load Flow Method for Radial Distribution Systems for Realistic Loads" by K Nagaraju, et al; Electric Power Components and Systems, 2001, 39(2): 128-141.
I've idea on these papers for load flow solution of radial and mesh distribution systems.
I can help u for these papers.Are you sure? This action cannot be undone. -
Member • May 20, 2014
yahya idriasi am working on distribution side in my country sir...
using ieee 33 and 69 bus the first step.
my present work is make a radial to mesh system and than count load flow by opening switch one by one...
that why i confuse how to count using matlab when one switch is open.
i just know a little about matlab.. really need a help sir..
counting load flow???
do you mean number of iterations???
if so, try to implement the load flow for radial as well as mesh networks for 33 bus system. Later u can remove the loops one by one in mesh load flow program to count number of iterations...
for IEEE 33 bus system, You'll get less number of iterations for mesh network (with 5 loops) than radial network.Are you sure? This action cannot be undone. -
Member • May 20, 2014
thanku for d repli..
except serial no. 2 I have read other papers and for fbsa mi base is "a simplified approach for load flow analysis of radial network" , K.Vinoth kumar ,M.P.Selvan
I am trying to follow the flowchart but...Are you sure? This action cannot be undone. -
Member • May 20, 2014
first search for papers in internet and select one good paper for load flow.shipra jhariyahello..mi thesis topic is also d same as above.. " network reconfiguration of radial distribution system using GENETIC ALGORITHIM in MATLAB". Firstly I have to calculate power loss using load flow using forward backward sweep algorithm. pls help me
Try to understand the concept in that paper and then go for programming.
If you get any doubts in concept or programming, post in crazyengineers..
We are here to help you..Are you sure? This action cannot be undone. -
Member • May 20, 2014
Just now i read your paper...shipra jhariyathanku for d repli..
except serial no. 2 I have read other papers and for fbsa mi base is "a simplified approach for load flow analysis of radial network" , K.Vinoth kumar ,M.P.Selvan
I am trying to follow the flowchart but...
Its a good one..
and authors presented their idea in very easy manner.
They have given each and every step for programming also...
Then where u r getting the problem?????Are you sure? This action cannot be undone. -
Member • May 20, 2014
yes ofcourse...I have the theory knowledge about Forward backward algorithm and also started matlab coding where I found only current injection at any node say (n) assuming flat voltage Vn=1+j*0. But in line charging current, how voltage has to be take Vb..?Are you sure? This action cannot be undone. -
Member • May 20, 2014
hello sir..pls help meAre you sure? This action cannot be undone. -
Member • May 20, 2014
#-Link-Snipped-#
hiee dear,
I read ur threads..mi thesis topic is "reconfiguration of radial distribution network using GA" in MATLAB. to solve load flow m using forward backward sweep algorithm for which d paper I refer is " A simplified approach for load flow analysis of RDN by K.VINOTH KUMAR, M.P.SELVAN"
pls help me how to code those eqn n flowchart in MATLAB.
ITS URGENT. pls do repli.Are you sure? This action cannot be undone. -
Member • May 21, 2014
In that paper, he has given Vb and Vb+1..shipra jhariyayes ofcourse...I have the theory knowledge about Forward backward algorithm and also started matlab coding where I found only current injection at any node say (n) assuming flat voltage Vn=1+j*0. But in line charging current, how voltage has to be take Vb..?
for finding line charging current, you can take the voltages at sending and receiving end nodes....
In his point of view, suppose line 2 is in between 2nd and 3rd buses (nodes).
Ic2=(0.5*Y2*V2)+(0.5*Y2*V3).
But we can't assume that the difference between sending end node and receiving end node is 1. for ex, Some lines (say 9) may exist between 2nd and 23rd nodes.
in this case, according to his formula;
Ic9=(0.5*Y9*V2)+(0.5*Y9*V23).
Use sending end node and receiving end node voltages for finding line charging currents instead of using Vb and Vb+1.
Moreover, for IEEE 33 and 69 bus distribution systems, line charging admittance is zero.
So u can avoid it...
I didn't perform load flow for balanced radial distribution system with line charging admittance. If you have the data with line charging admittance, tell me the title of that paper. i too will solve it.Are you sure? This action cannot be undone. -
Member • May 21, 2014
In that paper,shipra jhariyahello sir..pls help me
He has given laterals, sub laterals, main lines, etc......
No need to consider all those things while writing program for balanced radial distribution system.
Do one thing.
First find the load currents at each node.
Starting from the last branch to 1st branch, find the effective branch current in each line by summing its sending end and receiving end node currents.
When you get branch current, you can find the voltage in forward direction.
Try to understand it..
Simply two steps to solve load flow.Are you sure? This action cannot be undone. -
Member • May 22, 2014
#-Link-Snipped-# sir in ma base papr, they have mentioned about two parameters 'G' and 'L'.... how can we calculate that distances??
base papr: Power Loss Minimization in Distribution System Using Network Reconfiguration in the Presence of Distributed Generation
#-Link-Snipped-#Are you sure? This action cannot be undone. -
Member • May 24, 2014
If u know the total branches between source node and a node at which DG is connected, u can easily find the distance between them.Vanipd#-Link-Snipped-# sir in ma base papr, they have mentioned about two parameters 'G' and 'L'.... how can we calculate that distances??
base papr: Power Loss Minimization in Distribution System Using Network Reconfiguration in the Presence of Distributed Generation
#-Link-Snipped-#
In a distribution system, consider line P is in between nodes M (sending) and N (receiving).
for writing program in a general way, take the node N and find the line for which it is acting as receiving end node in the given line data using "find" command. Save that line number in a vector. later treat the sending node of the same line as receiving end node for next step. Repeat the same above.
So in second step, u'll get the line number (towards source side) which is connected to line L.
Repeat the same process until u get sending/receiving node = source node.
At final u'll get all the branches which are connected between source node and node at which DG is connected or a node from which u would like to measure the distance... After that u can find G and L easily.Are you sure? This action cannot be undone. -
Member • May 25, 2014
Raviteja16In that paper, he has given Vb and Vb+1..
for finding line charging current, you can take the voltages at sending and receiving end nodes....
In his point of view, suppose line 2 is in between 2nd and 3rd buses (nodes).
Ic2=(0.5*Y2*V2)+(0.5*Y2*V3).
But we can't assume that the difference between sending end node and receiving end node is 1. for ex, Some lines (say 9) may exist between 2nd and 23rd nodes.
in this case, according to his formula;
Ic9=(0.5*Y9*V2)+(0.5*Y9*V23).
Use sending end node and receiving end node voltages for finding line charging currents instead of using Vb and Vb+1.
Moreover, for IEEE 33 and 69 bus distribution systems, line charging admittance is zero.
So u can avoid it...
I didn't perform load flow for balanced radial distribution system with line charging admittance. If you have the data with line charging admittance, tell me the title of that paper. i too will solve it.
.Raviteja16If u know the total branches between source node and a node at which DG is connected, u can easily find the distance between them.
In a distribution system, consider line P is in between nodes M (sending) and N (receiving).
for writing program in a general way, take the node N and find the line for which it is acting as receiving end node in the given line data using "find" command. Save that line number in a vector. later treat the sending node of the same line as receiving end node for next step. Repeat the same above.
So in second step, u'll get the line number (towards source side) which is connected to line L.
Repeat the same process until u get sending/receiving node = source node.
At final u'll get all the branches which are connected between source node and node at which DG is connected or a node from which u would like to measure the distance... After that u can find G and L easily.Are you sure? This action cannot be undone. -
Member • May 25, 2014
hello gm...shipra jhariya.
thanku for ur valuable support... I follow those steps and somehow I am trying to solve it.....Are you sure? This action cannot be undone. -
Member • May 26, 2014
sir pls tell me how to apply GA on reconfiguration of radial nw to reduce lossesAre you sure? This action cannot be undone. -
Member • May 26, 2014
My area is distributed generation integration in radial distribution system...shipra jhariyasir pls tell me how to apply GA on reconfiguration of radial nw to reduce losses
i dont have any idea about genetic algorithm.... 😔Are you sure? This action cannot be undone. -
Member • May 26, 2014
no sir...thanks for valuable support.. 😀Are you sure? This action cannot be undone. -
Member • May 26, 2014
hello siryahya idriasyou can email me here mam : #-Link-Snipped-#
hope that we can help each other.. 😀
m working over "reconfiguration of radial distribution network using GA " in MATLAB.
m not able make it relevant to each other
pls help me outAre you sure? This action cannot be undone. -
Member • May 26, 2014
sir #-Link-Snipped-#
can we incorporate DG into the load flow using FORWARD-BACKWARD METHOD??Are you sure? This action cannot be undone. -
Member • May 27, 2014
maraitamilangenetic,differential, harmony search etc
hello sirAbhishek Rawal@#-Link-Snipped-# Why not share your Matlab code here itself ?
Many CEans will indirectly get help from your code too.
mi thesis topic is reconfiguration of radial distribution network using GA
in matlab
pls help mee out how to make relevance between GA and reconfiguration. its urgentAre you sure? This action cannot be undone. -
Member • May 31, 2014
#-Link-Snipped-#Vanipdsir #-Link-Snipped-#
can we incorporate DG into the load flow using FORWARD-BACKWARD METHOD??
Yes we can...
there are some papers in ieeexplore related to your topic...
search for those....Are you sure? This action cannot be undone. -
Member • Jun 2, 2014
is there someone want to share the matlab code for this topic..?
i think it will very helpfull 😀Are you sure? This action cannot be undone. -
Member • Aug 27, 2014
hey frds............ have one dbt..... when i run the program coding (Harmony Search Algorithm) at different times........i got different solutions for each run....... y it is??Are you sure? This action cannot be undone. -
Member • Aug 27, 2014
it is evolutionary algorithm like learning from mistakes and improving... u ll get the same answer at intervals meaning every 5th time or every 6th timeVanipdhey frds............ have one dbt..... when i run the program coding (Harmony Search Algorithm) at different times........i got different solutions for each run....... y it is??Are you sure? This action cannot be undone. -
Member • Aug 27, 2014
yes you can...Vanipdsir #-Link-Snipped-#
can we incorporate DG into the load flow using FORWARD-BACKWARD METHOD??Are you sure? This action cannot be undone. -
Member • Aug 27, 2014
choose any other ga is done by manyshipra jhariyasir pls tell me how to apply GA on reconfiguration of radial nw to reduce lossesAre you sure? This action cannot be undone. -
Member • Aug 27, 2014
sir can u say abt evolutionary algorithm??
and which solution hav to b taken as optimal??Are you sure? This action cannot be undone. -
Member • Mar 23, 2015
hello sir,
i am doing a project which i am not getting matlab code for this particular algorithm..i think you can help me with this problem..our project is "RECONFIGURATION OF DISTRIBUTION SYSTEM BY USING FLOWER POLLINATION ALGORITHM"....the main objective of this project to reduce the power losses in distribution network.can you please help me with the code that where i can get it or where i can learn to write the code for this particular topic.please help me sir.Are you sure? This action cannot be undone. -
Member • Jun 23, 2015
Hi guys! I am new here, and I hope you colud help me with my problem. Well, I need to write code for power flow using back/forward sweep algorythm in Fortran programming language? But if not Fortran, maybe you can help me with Matlab or C++ and then I would convert it by myself?Are you sure? This action cannot be undone. -
Member • Oct 21, 2015
Hello sir
my thesis topic is Reconfiguration Of Distributation Networks for purchased energy cost minimization in presence of DGs by improved Genetic algoritm please help me?Are you sure? This action cannot be undone. -
Member • Oct 21, 2015
Hello sir
my thesis topic is Reconfiguration Of Distributation Networks for purchased energy cost minimization in presence of DGs by improved Genetic algoritm please help me?Are you sure? This action cannot be undone. -
Member • Oct 21, 2015
😔😔😔😔😔😔😔 pleaseAre you sure? This action cannot be undone. -
Member • Jan 24, 2016
Yes... We canVanipdsir #-Link-Snipped-#
can we incorporate DG into the load flow using FORWARD-BACKWARD METHOD??Are you sure? This action cannot be undone. -
Member • Feb 21, 2016
hello every body plzzzzzzzzzzzzzzzzzz i need a help for findind load flow in radial distribution network can any body help me to do with the matlab coding for this please helpAre you sure? This action cannot be undone. -
Member • Feb 28, 2016
Yes.. Pls tel me where did u stuck in RDS loadflow.angelle valiquettehello every body plzzzzzzzzzzzzzzzzzz i need a help for findind load flow in radial distribution network can any body help me to do with the matlab coding for this please helpAre you sure? This action cannot be undone. -
Member • Sep 3, 2016
hello every body plzzzzzzzzzzzzzzzzzz i need a help for finding load flow in radial distribution network can any body help me to do this with the matlab coding .please help
😭😭😭😭😭😭😭😭Are you sure? This action cannot be undone. -
Member • Sep 3, 2016
pleaaaaaaaaaaaaaaaaaaase help me plzzzzzzzzzzzzzzzzzRaviteja16Yes.. Pls tel me where did u stuck in RDS loadflow.Are you sure? This action cannot be undone.