Discritizing an ODE Solution
Mostrar comentarios más antiguos
Hello, I have a conceptual question to ask. Say I want to utilize the ode15s function to solve a system of coupled differential equations given a specific set of initial conditions, however, instead of just imputing the initial and final time span and allowing the program to workout the optimal time step, in the back end, I want to discritize the time span into specified time steps and format this into a time for loop.
The reason I ask is because I already tried implementing the ode15s function in the for loop and set the time span to be equivalent to the for loop time step, however this significantly increases the run time. Moreover, I am doing this because there is a separate process I want the program to run at every single time step which is why I want to dicritize in the first place.
I believe the issue arises from the fact that although I am discriticizing the time span in the for loop, the ode solver is calculating all the solutions in between each define time step. I already tried searching online in the forums and resources but the only parameter that is related to the time step that one may specify is the MaxStep size. There is no way to define a minimum step size. What should one do in this scenario?
PS - May it have something to do with defining a Jacobian for my system of odes? Or is that completely unrelated?
4 comentarios
John D'Errico
el 2 de Nov. de 2018
So you are asking to NOT use an adaptive ODE solver, one designed for a stiff ODE system, but want to solve the problem using essentially a fixed time step. But you still want to use ODE15s, probably because you really do have a stiff ODE system.
No, the Jacobian will not solve your problem.
I'll argue the issue really arises from the fact that your problem is apparently not solvable using the method you really want to use.
Tom Keaton
el 2 de Nov. de 2018
Editada: Tom Keaton
el 2 de Nov. de 2018
Tom Keaton
el 4 de Nov. de 2018
Respuestas (0)
Categorías
Más información sobre Ordinary Differential Equations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!