Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Integration of a function

5 visualizzazioni (ultimi 30 giorni)
aymos
aymos il 19 Giu 2018
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Hi I have function:
dy/dt = A(1-y/B)*exp(C*y)
y(at t=0) = 0 y (at t = infinity) = 1
A,B,C are constants and y is an unknown function of t.
I would like to solve for y and plot it as function of t. (t is time). This will allow me to compare with experimental results.
Can you please help, I am not able to get started.
I look forward to your response
  2 Commenti
Torsten
Torsten il 19 Giu 2018
help ode45
aymos
aymos il 19 Giu 2018
Thanks Torsten !...
I am trying to use runge kutta 4th order and ode45, but Im not able to implement the code ! That is why I posted the question...

Risposte (1)

Torsten
Torsten il 19 Giu 2018
function main
A=...;
B=...;
C=...;
fun=@(t,y)A*(1-y(1)/B)*exp(C*y(1));
tspan=[0 1];
y0=0;
[t,y]=ode45(fun,tspan,y0);
plot(t,y)
end
  2 Commenti
aymos
aymos il 19 Giu 2018
Hi Torsten ! Thanks...
Can you please tell if I have to change the range of t from 1e-5 to 1, how shall I do it ?
Torsten
Torsten il 19 Giu 2018
tspan = [1e-5 1]

Questa domanda è chiusa.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by