Filter löschen
Filter löschen

Boundary value problem with bvp4c

3 Ansichten (letzte 30 Tage)
Didarul Ahasan Redwan
Didarul Ahasan Redwan am 7 Apr. 2020
Kommentiert: Ameer Hamza am 8 Apr. 2020
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.

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 7 Apr. 2020
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 Kommentare
Didarul Ahasan Redwan
Didarul Ahasan Redwan am 7 Apr. 2020
thanks a lot ...<3
Ameer Hamza
Ameer Hamza am 8 Apr. 2020
Glad to be of help.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by