Filter löschen
Filter löschen

Want to understand how to implement in matlab the following differential equation?

18 Ansichten (letzte 30 Tage)
Meri
Meri am 27 Jun. 2024 um 17:13
Kommentiert: Meri am 27 Jun. 2024 um 18:37
This is the equation I want to write in matlab, so I can have a solution for Q:
Q(t)=(P1(t)-P2)/R +C(dP1/dt) I know P1(t) is a time varing parameter and I know its pattern in time P2 is a costant, R is a costant knows also C. I started implementing it using ode45 to solve differential equations of 1st order and noticed it is not the right manner, because I want to know Q and in the defination of ode45 it finds exactly the first order derivative. Can someone help me by giving adive on how to procced?

Antworten (1)

Torsten
Torsten am 27 Jun. 2024 um 17:22
Bearbeitet: Torsten am 27 Jun. 2024 um 17:24
If you know P1 over time, you don't have a differential equation, but simply an algebraic relation to determine Q:
Q = (P1-P2)/R + C*gradient(P1)./gradient(T)
where P1, T are vectors of the same length. T is the time vector corresponding to P1.
  1 Kommentar
Meri
Meri am 27 Jun. 2024 um 18:37
Thank you very much, only now I realised that it was so simple. Thank you again for your help

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Produkte


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by