Solve differential equation system with ode45
이전 댓글 표시
Hello there,
I don't know if this is more of a mathematical problem or a programming problem...
I have the following differential equation system:
2*F+H'=0
F²+F'*H-G²-F''=0
2*F*G+H*G'-G''=0
with initial Parameters
- F=0, G=1, H=0
- F=0, G=0
I want to solve this with ode45 and plot the result. It should look like in the image (by Schlichting-Gersten).
How can i solve this?

답변 (2개)
J. Alex Lee
2020년 12월 28일
0 개 추천
If you want to use ode45, then you have to pose as 5 first order ODEs in place of the 3 you have, by defining new variables J=G' and K=F', and then put them all in explicit form, i.e., X' = ...
Then read up on how to use ode45
댓글 수: 5
Nico Lange
2020년 12월 28일
J. Alex Lee
2020년 12월 28일
yes, since you have conditions at 2 boundaries, you can look into bvp4c and bvp5c. you can also write your own FDE or FEM code. it sounds like you might want to review numerical solutions of ODEs in general.
Nico Lange
2020년 12월 29일
J. Alex Lee
2020년 12월 29일
What is P? Are you now solving a different set of equations?
If your boundary is at infinity, one strategy using ode45 (or any other odeXX) is to guess the unknown BCs at the first boundary and integrate until the actual BCs are met (using an event function) and then check the derivatives, because they also ought to be zero.
I'm not sure how to deal with infinite boundaries with bvp4c/5c because i don't use them much...it is a common type of problem though, don't hte documentation have an example about it?
J. Alex Lee
2020년 12월 30일
You should move your "Answer" back into these comments...
Well, ok, so P is only coupled to the system one-way, so you can compute it later, so strictly it is not necessary to include. But if you want to compute it even if it's not in the example solution curves, it's probably easier just to include in the system so that you don't have to post-process later.
I agree that the link you posted is relevant to find approximate solutions that are consistent with the infinite boundary situation that you have.
The "residual form" of any condition is to rearrange the equation in the form 0 = ...That way you can pose as a root-finding operation. Using bvp4/5c you won't need to worry about the details of how to solve that. On the other hand if you want to use shooting with ode45 or some variant, you will need to solve at a least a 2-dimensional root finding problem (for the 2 missing initial conditions at x=0). Bottom line, residual form is just equation rearranged so that the LHS is 0, and you replace zero with "res", which is the thing you are asking bvp4c to set to 0.
Based on your comments and questions, I would recommend learning how to use bvp4c rather than the other approaches I mentioned.
Nico Lange
2020년 12월 30일
0 개 추천
댓글 수: 5
James Tursa
2020년 12월 30일
This is confusing to me, and as posted seems unsolvable. You have these dependent variables: F, G, H, P, and the independent variable x. The highest order derivatives appearing in your equations are F'', G'', H'', and P'. This would mean you have a 2+2+2+1 = 7th order system of equations. The state for this system would be (F,F',G,G',H,H',P). Call this Y. The differential equations governing this state would be:
dY(1)/dx = dF/dx = F' = Y(2)
dY(2)/dx = dF'/dx = F'' = (the expression from above solved for F'')
dY(3)/dx = dG/dx = G' = Y(4)
dY(4)/dx = dG'/dx = G'' = (the expression from above solved for G'')
dY(5)/dx = dH/dx = H' = Y(6)
dY(6)/dx = dH'/dx = H'' = (the expression from above solved for H'')
dY(7)/dx = dP/dx = P' = ???
You have posted nothing for that last one, P', in terms of just the state, so you don't have enough differential equations to solve this system.
Also, you list values for some of the states at x=0 and others at x=infinity. So this is a boundary value problem, not an initial value problem. ode45( ) can't be used for this since it is not an initial value problem.
Nico Lange
2020년 12월 31일
J. Alex Lee
2020년 12월 31일
oh i see now, there's an H'' in the last equation. What's missing right now is not another differential equation, but a boundary condition. the most straightforward missing BC is then a second condition on H; there's already 1 condition for P.
but if Nico doesn't care about solving for P, then I agree the last equation can be left out, and the original post should have enough conditions to solve.
Yes it is a BVP, but it can be solved using ODE45 + shooting method posing a root-finding problem in the 2 unknown BC's at x=0. But, it is perhaps less straightforward to do this than to use bvp4c/5c with the domain-stretching continuation method linked, especially if there's not much familiarity with numerical methods for ODE solving and coding.
Nico Lange
2021년 1월 2일
J. Alex Lee
2021년 1월 3일
it does you no good to add more odes... stick with the 5 ode's back when you didn't need the P and follow the examples of bvp4c/5c.
카테고리
도움말 센터 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!