Cap Maximum ODE solve time

3 visualizaciones (últimos 30 días)
mihir
mihir el 11 de Jul. de 2025
Editada: Torsten el 13 de Jul. de 2025
I am solving a set of ODEs with several different initial conditions some of which will be badly conditioned and get bogged down. I want to cap the run time of an individual solve to say 100 seconds. If it reaches 100 seconds, I want to exit and just mark the solve as fail. I haven't been able to find a way to do this on the forum. Does anyone have any suggestions?
  1 comentario
Sam Chak
Sam Chak el 11 de Jul. de 2025
Hi @mihir,
What is the order of your dynamic system? You can determine this by identifying the number of state variables. If, from the map of the state space in the operating range, you can identify which regions are badly conditioned, would you avoid selecting the initial values from those regions?

Iniciar sesión para comentar.

Respuestas (2)

Torsten
Torsten el 11 de Jul. de 2025
Editada: Torsten el 11 de Jul. de 2025
Josh Meyer's answer shows you one possible way to do this:
I suggest you also define the stop time in your script and pass it to the event function via the call to the ODE integrator instead of setting it in the event function itself.

John D'Errico
John D'Errico el 12 de Jul. de 2025
Simpler is to just set the maximum number of evals or iterations. This way you don't need to do anything special, just set a flag that already exists. It will do effectively the same thing as what you asked for.
  1 comentario
Torsten
Torsten el 12 de Jul. de 2025
Editada: Torsten el 13 de Jul. de 2025
I don't see such an option in "odeset".

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Productos


Versión

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by