Solver for nonlinear second order ODE has large residuals when mass matrix becomes state dependent
4 views (last 30 days)
Show older comments
Hi all,
I currently have a nonlinear second order ODE that when I try to solve with any of MATLAB's ODE solvers, I get unacceptably large residuals when the mass matrix becomes state dependent. Therefore I was wondering weather anyone would have any advice on the numerical integration side of things that could help in bringing down the residuals.
So let me be more specific and show you the following:
- The equation
- What I mean by residuals
- What term of the equation causes the residuals to be high (if that term is set as a constant then residuals are really low)
The equation is the one seen below:
where J, C,,,K are all matrices for a 4 degree of freedom system and , , are functions of theta.
What I mean by residuals is the process where after I have obtained the numerical solution to the above ODE from my code, I shift everything to the left hand side and check if its indeed equal to zero. The amount by which the expression below is not equal to zero, is the residuals:
When I solve the above system, but with set as a constant, the residuals are practically zero (1e-13). However when I make the mass matrix state dependent by introducing the aforementioned function, the residuals fluctuate at very large values (1e5) in comparison to what I am trying to model.
I have looked at the state dependent mass matrix examples of MATLAB, however I don't seem to be doing anything different from those examples. In addition I have tried changing the tolerances as well as the solvers but nothing promising is happening.
Attached you can also find my code together with the .mat file that it needs to run.
Thanks for all your help in advance!
KMT.
1 Comment
Ayat
on 23 May 2024
dxcyt/ dt = kimp*xcyt + kexp*xnuc
dxnuc/ dt = kimp*xcyt kexp*xnuc ðxnuc + xpnucÞ 4 K4 + ðxnuc + xpnucÞ 4xnuc + kdephosxpnuc dxpnuc dt = ðxnuc + xpnucÞ 4 K4 + ðxnuc + xpnucÞ 4xnuc kdephosxpnuc
: kimp = 0:25; kexp = 1; kphos = 100; kdephos = 0:2; and, for the Hill function, K = 1 and n = 4. The steady-state responses were solved numerically with Mathematica 7.0 (Wolfram). (H) Dynamical response of the model. The ODEs were solved numerically with Mathematica 7.0. The dashed line is xtotðtÞ = 1:5=1 + et=t , with t = 7:2 min.
Accepted Answer
More Answers (1)
darova
on 14 Oct 2019
Where is this part?
B = -K * th(1:N) - (C + CC) * th(m:n) + T_G + T_M1 - T_L ;
dydt(m:n) = (J-T_m1)\B; % solve matrix inv(A)*B
See Also
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!