Substitution to solve Coupled differential equations

1 view (last 30 days)
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 Comments
Torsten
Torsten on 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 on 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.

Sign in to comment.

Answers (1)

Bjorn Gustavsson
Bjorn Gustavsson on 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

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!