Question

USING MATLAB

If V = 500, what is the value of X (expressed to two decimal places) given the following equations:

dX dV dY dV 「A0 (4 CA02 x3) 1E2 K (1-X) k = 0.044 Kc0.025 α 0.001 AO FAO 2.5

he initial value of X=0, and the initial value of Y = 1.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Hey,

Note: Brother in case of any queries, just comment in box I would be very happy to assist all your queries

clc
clear all
k=0.044;
kc=0.025;
al=0.001;
ca0=0.3;
e=2;
Fa0=2.5;
f=@(V,X) [(k*ca0/(1+e*X(1)))*((1-X(1))-(4*(ca0^2)*X(1)^3)/(((1+e*X(1))^2)*kc))/Fa0;-al*(1+e*X(1))/(2*X(2))];
[V,X]=ode45(f,[0 500],[0 1]);
fprintf('X at 500 is %.2f ',X(find(V==500),1));

k=0 . 044 ; kc 0.025; e=2 ; Fa0=2.5; f=@ (V, X) [ (k ca0/ (1+e*x(1) ) ) * ( (1-X (1) )-(4 (cao-2) *x(1) ^3) / ( ( (1+e*x(1)

Kindly revert for any queries

Thanks.

Add a comment
Know the answer?
Add Answer to:
USING MATLAB If V = 500, what is the value of X (expressed to two decimal...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT