필터 지우기
필터 지우기

Boundary value problem with bvp4c

조회 수: 3 (최근 30일)
Didarul Ahasan Redwan
Didarul Ahasan Redwan 2020년 4월 7일
댓글: Ameer Hamza 2020년 4월 8일
Ive attached my bvp4c code. I want to genare the figure im showing here, but im am not getting the desired graph .
I am attaching both desired graph and coupled equations with boundary condition.
I would be very helpfull for your help.

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 4월 7일
There were issues in your ODE function and the BC function. Replace them with these defintions.
function res = bc(ya,yb)
res = [ ya(1); ya(2)-1; ya(5)-1; yb(2); yb(3); yb(5)];
end
function dydx =jeffrey_fluid(x,y)
M=1;ga=5;la=1;beta=2;Pr=0.7;
dydx = [y(2);
y(3);
y(4);
-1/y(1)*(-1/beta*((1+la)*(y(1)*y(3)-y(2)^2-y(2)*(ga+M)+la*y(5))-y(4))-y(3).^2);
y(6);
-Pr*(y(1)*y(6)-y(2)*y(5))];
end
  댓글 수: 2
Didarul Ahasan Redwan
Didarul Ahasan Redwan 2020년 4월 7일
thanks a lot ...<3
Ameer Hamza
Ameer Hamza 2020년 4월 8일
Glad to be of help.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by