Simulation of point kinetics reactor equations
Show older comments
Hello!Those two equations are needed to be solved (the attached picture)
The initial conditions n(0)=0.1, c(0)=0
The required: find the required time to increase n from 0.1 to 1
I got errors regarding syms functions. I am not sure if I do that right.I attached to this a matlab file which contains all the parameters and what I tried to do.
Accepted Answer
More Answers (1)
Swu
on 7 Mar 2023
0 votes
in "function dncdt = kinetics(~,nc,rho,beta,betasum)"
"dndt = (rho - betasum)/L + sum(lam.*c);"
should be ""dndt = (rho - betasum)* n/L + sum(lam.*c);
1 Comment
Yuliang Fang
on 27 Jun 2024
You are right!
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


