Filter löschen
Filter löschen

Substitution to solve Coupled differential equations

2 Ansichten (letzte 30 Tage)
Shubham Agrawal
Shubham Agrawal am 6 Feb. 2019
Kommentiert: Shubham Agrawal am 7 Feb. 2019
Hi,
I have the following types of equations:
Here F is known, so I will get p = g(x(i)) which gives me f(i) as a function of all x(i).
Now I need to solve the following coupled differential equations:
How can I solve this problem in MATLAB? Please help.
  2 Kommentare
Torsten
Torsten am 7 Feb. 2019
Here F is known, so I will get p = g(x(i)) which gives me f(i) as a function of all x(i).
I don't understand this. Could you clarify ?
Shubham Agrawal
Shubham Agrawal am 7 Feb. 2019
Thanks for replying.
I know the numeric value of F, the second equation can be used to get p as a function of all x(i). When I substitute it back in the first equation, I can get f(i) as a function of all x(i). Now I have N diiferential equations which become coupled and can be used to solve for all x(i) as a function of time.
Please let me know if you need more clarification. I can share the equations too.
Thanks.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Bjorn Gustavsson
Bjorn Gustavsson am 7 Feb. 2019
Just look at the examples for ode45 - there should be some example explaining how to write a function
returning dxdt when called. It would be something like this:
function dxdt = myode(t,x)
dxdt = zeros(numel(x),1)
dxdt(1) = f1(x,possibly,other,input,arguments);
dxdt(2) = f2(x,possibly,other,input,arguments);
...
dxdt(numel(x)) = fn(x,possibly,other,input,arguments);
end
HTH

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by