Using a large integration range and ode45
显示 更早的评论
Hi all,
I have a set of equations that needs to be solved over a very large domain (say x > 1000, where x is the integration range).
What is the best way to do this to ensure accurate results using ode45?
回答(1 个)
Jan
2012-12-6
0 个投票
This is a very general question. Therefore only a general answer is possible.
- Create the function to be integrated correctly, e.g. avoid numerical problems.
- ODE45 and the other intergrators of Matlab require smooth functions. Therefore avoid commands like: IF, RAND, DATE, TIME, ABS, etc.
- Adjust the relative and absolute tolerance appropriately. It is hard science to define this term accurately.
- Control the senistivity of the result to variations of the input: Start the integration at y and y+eps(y) and compare the effects. If small variations produce large differences, the system is instable and an accurate integration is not possible with the current choice of tolerances.
It is unclear, why "1000" should be very large. If you simulate vehicel dynamics of a car on different terrain and the measurement units are seconds, this is a small period. If you simulate the molecular dynamics in the engine of the same car, 1000 seconds would be hilariously gigantic.
类别
在 帮助中心 和 File Exchange 中查找有关 Ordinary Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!