Substitution of initial numerical values before odefunction

1 次查看(过去 30 天)
Hi guys,
I am using ode45 to solve a system of ODEs. According to the syntax of ode45, the system is formatted into the form of
where x(t) is a 32*1 symbolic vector in our project whose elements are to be solved in ode45.
Then odefunction is applied to build the handle for mass matrix like
Mass_handle = odefunction( M( t, x(t) ) )
However, the size of M( t, x(t) ) is very huge and the elements inside it are really complicated, then it is quite time-consuming to return Mass_handle: by now it has taken over 96 hours and consumes over 45GB in RAM in our PC and it is still running at this moment.
Here I have an idea: since we have the initial numerical values of x(t), are we able to substitute the 32 symbolic variables in x(t) by their initial numerical values before running the code
Mass_handle = odefunction( M( t, x(t) ) )
Because we notice that in ode45, it is necessary to input the initial values of the symbolic variables, according to its syntax like ode45(odefun, tspan, y0), where y0 is the initial value vector.
If we substitute the initial numerical values of x(t) before running the code odefunction( M( t, x(t) ) ), then M( t, x(t) ) will be numerical rather than symbolic. It will just take a second to return Mass_handle.
Here we want to know: is this way feasible ? if not, are there any methods to deal with this problem?
Many thanks!
Cheers

采纳的回答

Torsten
Torsten 2019-7-17
Use "matlabFunction" to convert every symbolic input to ODE45 into numerical function handles before calling ODE45.
  2 个评论
Tony Cheng
Tony Cheng 2019-7-18
Hi Torsten,
Thanks so much for your reply!
I guess what you mean is:
Firstly , Mass_handle = matlabFunction ( Mass_matrix( x ) ) is applied to generate a function handle;
Then, numerical values are input into Mass_handle to get a numerical matrix Mass_handle_numerical ;
Thirdly, Mass_handle_numerical is input into ode45.
Via these three steps, the symbolic Mass_matrix( x ) is now completely numerical in Mass_handle_numerical.
If these three steps are all right, I will implement these steps in the project.
Cheers
Torsten
Torsten 2019-7-19
Yes, that's what I meant.
Before calling ode45 with the function handle, you should output the handle into a file to see the list of numerical parameters and the order in which they have to be supplied.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by