| Author |
Comment/Response |
Eiriksen
|
01/28/12 9:05pm
This is my notebook (i reccomend seeing the picture):
Kp = 0.0266
FA0 = 1.08
alpha = 0.0166
ep = -0.15
R = 8.314
T = 273 + 260
sol2 = NDsolve[{x'[w] == Kp/FA0*(1 - x[w])/(1 + ep*x[w])*y[V],
y'[w] == -alpha/2*(1 + ep*x[w])/y[w], x[0] == 0, y[0] == 1}, {x,
y}, {w, 0, 64}]
I want to get something like {{x-> interpolating function......}}, but all i get is an algebraic form of the expression.
I try to plot it, but it doesnt work because of the mistake with NDsolve. Can anyone see what's wrong?
Attachment: problem.bmp, URL: , |
|