Jacobian matrix in ode15s

28 次查看(过去 30 天)
Tony Cheng
Tony Cheng 2024-7-22
评论: Walter Roberson 2024-7-28,23:02
Hi everyone,
I am using ode15s to solve a set of stiff odes and the final model is developed in the form of
where M(t,y) is the mass matrix, and y is the generalised coordinate vector. According to the syntax of ode15s, it is crucial to provide its Jacobian matrix to raise the accuracy.
I do not know too much numerical calculation of stiff odes, and here I want to know, is the Jacobian matrix JJ calculated in this manner:
If not, how to arrive at a correct one?
Many thanks!
  5 个评论
Tony Cheng
Tony Cheng 2024-7-28,1:30
Hey Torsten,
After the Jacobian matrix is obtained, should I use matlabFunction or odeFunction to arrive at the function handle, which can be casted in odeset? Many thanks!

请先登录,再进行评论。

采纳的回答

Dheeraj
Dheeraj 2024-7-22
Hi Tony chegg,
I understand you want to know how to calculate jacobian matrix in order to increase the accuracy of your model.
When solving stiff differential equations with "ODE15s", you are typically dealing with equations of the form:
where is the mass matrix, and represents the nonlinear term.
To use "ODE15s" effectively, you need to provide the Jacobian matrix of the function with respect to y, which is used to handle the stiffness in the system. This Jacobian matrix is denoted as "J" and is defined as:
You can easily calculate Jacobian matrix if you have an explicit expression for, you can compute the Jacobian matrix analytically. This involves differentiating with respect to each component of y.
Or You could use "jacobian" fucntion part of Symbolic Math Toolbox to do the same.
You could refer to the below MATLAB's documentation to know more about "jacobian" fucntion and it's usage:
Thank You.
  3 个评论
Tony Cheng
Tony Cheng 2024-7-28,1:30
Hey Dheeraj,
After the Jacobian matrix is obtained, should I use matlabFunction or odeFunction to arrive at the function handle, which can be casted in odeset? Many thanks!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by