how to write a for loop for the following task?
Ältere Kommentare anzeigen
Known:
Kp(1)=a;
Then:
x = roots([Kp-1 7.56*Kp -18.12*Kp 9.56*Kp]); (we only need 0<x<1).
T = roots([-0.001273*x+0.00365 0.544*x+44.3191 283338.4*x-407295]);
mu_CO2 = -394088+44.3191*(T-298-T*ln(T/298))-0.0073/2*(T-298)^2-213.984*T;
mu_CO = -110700+29.6127*(T-298-T*ln(T/298))-0.00301/2*(T-298)^2-197.81*T;
mu_O2 = 30.5041*(T-298-T*ln(T/298))-0.00349/2*(T-298)^2-205.31*T;
Kp_new = exp(-(mu_O2+2*mu_CO-2*mu_CO2)/(8.314*T));
Finally, I need to use Kp_new to calculate new x, new T, new mu. The iteration number is supposed to be 20.
I will appreciate if someone can help me on this problem!
13 Kommentare
Kaushik Lakshminarasimhan
am 16 Sep. 2018
Bearbeitet: Kaushik Lakshminarasimhan
am 16 Sep. 2018
Instead of calling your variable as Kp_new, just call it Kp. And put the whole code starting from ( x = ...) to (Kp = ...) inside a for loop.
Look here for how to create 20 loops: https://www.mathworks.com/help/matlab/matlab_prog/loop-control-statements.html
Ivy Shen
am 16 Sep. 2018
Ivy Shen
am 16 Sep. 2018
Kaushik Lakshminarasimhan
am 16 Sep. 2018
You can just overwrite the variables. No need to store intermediate values as x(i), T(i) etc. unless you want to look at the values in intermediate iterations.
You're probably getting the error because you have multiple roots. You can retain the root between 0 and 1 using:
x = x(x>0 & x<1)
You many have to do the same thing for T if there are multiple roots.
Ivy Shen
am 17 Sep. 2018
KSSV
am 17 Sep. 2018
copy the whole code here...so that we can help you.
Ivy Shen
am 17 Sep. 2018
Bearbeitet: Walter Roberson
am 17 Sep. 2018
KSSV
am 17 Sep. 2018
T = T_root(T_root>0 & T_root<1);
This line giving you empty output....
KALYAN ACHARJYA
am 17 Sep. 2018
It seems problem arises in the following:
x_root = roots([Kp(i-1)-1 7.56*Kp(i-1) -18.12*Kp(i-1) 9.56*Kp(i-1)]);
x = x_root(x_root>0 & x_root<1);
Check the following what does this statement mean-

Walter Roberson
am 17 Sep. 2018
On the first iteration, when i = 2, then x_root generates 3 roots, two of which are complex. The selection of only some of those narrows it down to one value for x. The root() for T_root then results in two roots. Neither of them is in the desired range, so T comes out empty. That gives you empty variables for the next several lines. You then write that empty content over the entire Kp array instead of just Kp(i) . But you cannot just assign into Kp(i) because you have only emptiness to write in.
Ivy Shen
am 17 Sep. 2018
Bearbeitet: Walter Roberson
am 17 Sep. 2018
Walter Roberson
am 17 Sep. 2018
You should change
x(i-1) = x_root(x_root>0 & x_root<1);
to
x(i-1) = x_root(imag(x_root) == 0 & x_root>0 & x_root<1);
Walter Roberson
am 17 Sep. 2018
Last night I tried finding the range of Kp values that left x_root in the range 0 to 1. It turned out that for 0 exactly, the solutions were 0 and 3775/7744 with that second value being an isolated real-valued spot in the middle of complex-valued Kp solutions. It also turned out that due to discontinuities, there were no finite values of Kp that made any of the x_root values exactly 1, but infinite Kp made it one (that is, the values were greater than one for finite values but converged to one at infinity.)
Antworten (0)
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!