If statement didnt work correctly
Mostrar comentarios más antiguos
If i run the program if p less than min the result must be equal to zero but in this programme the result equal to min can any one correct the program
clc;
unit=input('input the number of unit:');
D=input('input total load :');
dP=D;
Bdat1=input('transmission losses considered matrix:');
B=Bdat1;
dB=diag(B);
data1=input('input the data:n a b c min max');
DA=array2table(data1,'V',{'Unit' 'a' 'b' 'c' 'Pl' 'Ph'});
x=max(DA.b);
n=input('insert number of iteration:')
for i=1:n
while abs(dP)>0.00001
P=(x-DA.b)./(2*(DA.c+x*dB));
P=min(P,DA.Ph);
P=max(P,DA.Pl);
dP=D+P'*B*P-sum(P);
x=x+dP*2/(sum(1./DA.c));
end
end
if P<min(P,DA.Ph)
P=0;
P=P+P;
else
P=P;
end
if P>max(P,DA.Pl)
P=0;
P=P+P;
else
P=P;
end
C=DA.a+DA.b.*P+DA.c.*P.*P;
totalCost=sum(C);
display(totalCost);
lamda=x;
display(lamda);
Loss=P'*B*P;
display(Loss);
table(DA.Unit,P,C,'V',{'Unit' 'Power' 'Cost'})
19 comentarios
Stephan
el 26 de Mzo. de 2019
Attaching pictures of code is useless. provide code we can copy and paste in Matlab.
Walter Roberson
el 26 de Mzo. de 2019
I have a suspicion that P becomes a vector or matrix rather than a scalar, but we would need the actual code (instead of an image of the code) and we would need to know what inputs to use.
James Tursa
el 26 de Mzo. de 2019
What are the sizes of the variables involved? In particular, which ones are scalars and which ones are vectors/matrices/arrays?
Walter Roberson
el 26 de Mzo. de 2019
Okay, and what inputs should we use?
Mariam Gasra
el 26 de Mzo. de 2019
Editada: Walter Roberson
el 26 de Mzo. de 2019
Walter Roberson
el 26 de Mzo. de 2019
Your code is expecting 6 columns for data1, but your suggested input has only 5 columns for it.
Mariam Gasra
el 27 de Mzo. de 2019
Editada: Walter Roberson
el 27 de Mzo. de 2019
Yasasvi Harish Kumar
el 27 de Mzo. de 2019
DA.Ph is not less than P, therefore your condition isn't true and P is not equal to 0. Consider changing your input for data1 to satisfy the condition.
Mariam Gasra
el 27 de Mzo. de 2019
Editada: Walter Roberson
el 27 de Mzo. de 2019
The code is meaningless:
P=0;
P=P+P;
else
P=P;
??? While "P=P" does nothing, setting P to 0 and adding it to itself will not change the value of P.
The comparison:
if P<min(P,DA.Ph)
is not smart also: min(P, X) replies the minimum of both values. Comparing P with something, which is the minimum of P and a value, is the same as comparing P with this value:
if P < DA.Ph
This means, that you can replace:
if P<min(P,DA.Ph)
P=0;
P=P+P;
else
P=P;
end
if P>max(P,DA.Pl)
P=0;
P=P+P;
else
P=P;
end
by
if P < DA.Ph || P > DA.Pl
P = 0;
end
Mariam Gasra
el 27 de Mzo. de 2019
Jan
el 27 de Mzo. de 2019
@Mariam: Then simply implement this. I do not understand, what this means:
"I wannt p1 equal to zero and the 400 added to another p which is p2 and p3"
Mariam Gasra
el 27 de Mzo. de 2019
Walter Roberson
el 27 de Mzo. de 2019
Your P is a vector 3 x 1 (at least for the parameters you posted in https://www.mathworks.com/matlabcentral/answers/452567-if-statement-didnt-work-correctly#comment_686298 )
You have tests comparing P to various values. With P being a vector, those are vector comparisons producing a vector result of logical values. When you use if or while with a non-scalar, the test is considered to succeed if all of the values are non-zero (which would correspond to all of the values being true for logical tests.) Thus
if P<min(P,DA.Ph)
is interpreted by MATLAB as
if all(P<min(P,DA.Ph))
Are you sure that is what you mean?
Perhas what you would want is
P(P < DA.Pl | P > DA.Ph) = 0;
Mariam Gasra
el 27 de Mzo. de 2019
Mariam Gasra
el 28 de Mzo. de 2019
Jan
el 28 de Mzo. de 2019
@Mariam: The variables P1, P2 and P3 do not occur anywhere in your code, so what is the meaning of providing their values here?
Another hint:
for i=1:n
while abs(dP)>0.00001
P=(x-DA.b)./(2*(DA.c+x*dB));
P=min(P,DA.Ph);
P=max(P,DA.Pl);
dP=D+P'*B*P-sum(P);
x=x+dP*2/(sum(1./DA.c));
end
end
The "for i=1:n" loop is meaningless here. In the first iteration for i==1 the inner loop runs until dP has the wanted size. In all following loops i=2:n the inner loop is not entered anymore, because the value of dP is not modified. So you can omit the for loop completely.
There is a language problem also: I do not understand the meaning of "by if statment condition p=0 and the value of P1 "435.2" add it to P2 and P3".
Without meaningful and exhaustive comments it is impossible to guess the purpose of the code. Please cleanup the code and post it again. Otherwise "Still i have same problem" is not clear enough to be answered.
Mariam Gasra
el 28 de Mzo. de 2019
Jan
el 3 de Mayo de 2019
@Mariam: You still did not mention, what the problem is. Posting a bunch of unclear question might decrease the interest of the forum in reading your questions.
Respuestas (0)
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!