How can I solve this PDE kinetics equation with Symbolic Toolbox?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello , I want to solve a PDE from a kinetics equation as depicted next:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1506619/image.png)
which
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1506624/image.png)
I made the following code ,but dont know what i have to change to make it run.
syms y(t,z)
U=10;
E_l=1e-8;
cyanide=159;
oxygen=8;
r=0.706e-3*(cyanide^1.38)*(oxygen^0.161)*(y-0.17)^2.19
ode = -(diff(y,t))-U*(diff(y,z,1))+E_l*(diff(y,z,2))-r == 0
ySol = dsolve(ode)
Thanks in advance for the help.
0 Kommentare
Antworten (1)
Torsten
am 9 Okt. 2023
PDEs cannot be solved with the symbolic toolbox.
Use "pdepe" as numerical solver instead.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Partial Differential Equation Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!