How do I speed up ODE15s?
Show older comments
Hello everybody I am trying to speed up a MATLAB code which numerically solves for deactivation process in a catalyst. The algorithm of the code which simply solves mass and momentum conservation equations plus an equation for chemical reaction over time and space(1D) is like below:
main()
statements
Initial values and boundary conditions
Timespan=[0 3600] // By discretizing equations in Z direction we get ODEs and then implement stiff ode solver to sweep in time
[t,w]=ODE15s(@transientfunction,timespan,w0)
outputs+graphs
end
transientfunction()
"FOR" loop // "for" loop is implemented to allocate the differential values at each cell which is around 100 cells.
end
***************************************************************Problem******************************************************
My problem here is that simulation of one hour (3600s) of deactivation process takes two days!!!(at the end I want to simulate it for 5years which I guess my grandson can check the result and be proud of his grandpa) I have tried to use "parfor" in transientfunction with 12 workers but not only the speed did not increase but also decreased! Time step in ODE15s solver is,specially at the beginning, gravely small. Is there any suggestion or advice out there that might help me or help this nice and lovely ode solver to speed up I look forward to your suggestions Thank you all Rasoul
4 Comments
Cam Salzberger
on 21 Sep 2017
Hello Rasoul,
Is there a reason that you chose to use ode15s over one of the other ODE solvers? Are you sure that your system is stiff? Is it less efficient or less accurate if you use ode45?
One of the things slowing it down is likely the for loop in the function called at each timestep. Is there any way you can vectorize the code?
-Cam
Rasoul Sheikhi
on 4 Oct 2017
Edited: Rasoul Sheikhi
on 4 Oct 2017
Cam Salzberger
on 5 Oct 2017
Hey Rasoul,
Maybe just post a couple of snippets, showing the for loop limits and a couple of assignments if possible. I can try to have a look on here.
I did just notice you mentioning assigning about 100 cells. I'm assuming that means you're returning a vector of length ~100 from your transientfunction? That's a lot of variables to solve over, and fairly uncommon for these types of problems. I'm not sure if it's possible to narrow that down (very problem dependent) or maybe use a different framework (optimization to get close first or something)?
Definitely don't go the way of the parfor in the transient function. Way too much overhead for something that gets called that often.
-Cam
Rasoul Sheikhi
on 9 Nov 2017
Accepted Answer
More Answers (0)
Categories
Find more on Ordinary Differential Equations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!