How to solve a system of equations mixing non-linear ODE and non-linear "simple" equations?

조회 수: 2 (최근 30일)
I have a system that I want to solve numerically (attached an overview of the form, X1, X2, etc. are the variable, while C1, c2, etc. are constants). I know a bit about how to solve ode with ode45; I also have some ideas about solving common "simple" equations. But in this system, that describes a dynamic of a process, not all equations are ODE; so, I have some challenges with the structure/syntax of ode45. Please, would you shar with me some ideas about how to solve this kind of system with Matlab or simulink?
Thank you.

답변 (1개)

Ayham Aljawabrah
Ayham Aljawabrah 2021년 4월 10일
편집: Ayham Aljawabrah 2021년 4월 10일
The solvers usually able to solve index-1 DAE, not all the equations are apperent but you have too many variables you mostly need to reduce the order of your differential algebraic equation (DAE) system.
The below link shows how to symbolic math toolbox to prepare a DAE system to be solved with Matlab ode solver ode15i, ode15s, ode23s can handle DAE, the link below utilize ode15i
https://www.mathworks.com/help/symbolic/solve-differential-algebraic-equations.html
For more info about DAE, check the below link https://www.mathworks.com/help/matlab/math/solve-differential-algebraic-equations-daes.html
  댓글 수: 3
Ayham Aljawabrah
Ayham Aljawabrah 2021년 4월 11일
Yes, the procedure is to use symbolic toolbox to rewrite the system in a way that the numerical solver can solve it.
NECK
NECK 2021년 4월 14일
Ok, thank you. I will try that option and provide a feedback.

댓글을 달려면 로그인하십시오.

카테고리

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