How do i solve huge coupled first order differential equations

3 visualizaciones (últimos 30 días)
Hello all,
I have a system of 25 coupled first order constant coefficient linear differential equations (time evolution of a multistep reaction). The problem is I want to calculate the solution upto say 100 microseconds. I am able to calculate upto 1 microsecond using ode45 (which itself gives an array of 16912805 data points). Anything 3 microseconds and above crashes my computer completely.
Is there any way I can solve this problem? a user defined function or an ode solver which allows me to input the timestep (because when i read the documentation for ode45, i found out that the time step is controlled internally and thus i cant specify a larger timestep to save computation time).
  2 comentarios
Torsten
Torsten el 17 de Jul. de 2021
Don't use ode45 for chemical reaction problems, but ode15s instead.
Arun S
Arun S el 17 de Jul. de 2021
Thank you ode15s drastically reduced my computation time.

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 17 de Jul. de 2021
The integration times are adaptive, however it is possible control the points at which the differential equation system is evaluated and appear in the output.
For example to integrate at 100 points between 0 and 100 microseconds, this could work:
tspan = linspace(0, 1E-4, 100);
Use that (or something similar) for tspan’ in your system to see if it does what you want.
.
  2 comentarios
Arun S
Arun S el 17 de Jul. de 2021
Thank you so much. This along with using ode15s solved my problem.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by