Borrar filtros
Borrar filtros

ODE45 can solve Implicit function ?

9 visualizaciones (últimos 30 días)
영주 김
영주 김 el 17 de Mzo. de 2022
Respondida: Kartik Saxena el 8 de Dic. de 2023
d(x1)/dt=f(t,x1,P,Pb)
d(x2)/dt=f(t,x2,P,Pb)
dP/dt = f(t,P,dP/dt)
d(Pb)/dt=f(t,Pb,d(Pb)/dt)
this function can solve ODE45?
and How can solve this function
  2 comentarios
Davide Masiello
Davide Masiello el 17 de Mzo. de 2022
I would recommend ode15i for this kind of system.
Torsten
Torsten el 17 de Mzo. de 2022
... or you can solve eqn (3) and (4) for dP/dt and dPb/dt, respectively.

Iniciar sesión para comentar.

Respuestas (1)

Kartik Saxena
Kartik Saxena el 8 de Dic. de 2023
Hi,
The system of equations you've provided appears to involve both ordinary differential equations (ODEs) and differential-algebraic equations (DAEs). The presence of 'dP/dt' and 'd(Pb)/dt' on the right-hand side of their own derivatives suggests that there are algebraic constraints in your system.
MATLAB's 'ode45' solver is designed for solving explicit ODEs where all derivatives are given directly as functions of 't' and the state variables. It cannot directly handle equations where the derivatives are implicit functions of themselves, as is the case with your 'dP/dt' and 'd(Pb)/dt' equations.
For such systems, you can use 'ode15i', which is designed to handle implicit differential equations and DAEs. The 'ode15i' solver requires you to provide a function that computes the residuals of your differential equations for given values of 't', the state variables, and their derivatives.
You can refer to the following MathWorks documentation link for more information about 'ode15i':
I hope this resolves your issue.

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by