Boundary value problem with bvp4c

6 visualizaciones (últimos 30 días)
Didarul Ahasan Redwan
Didarul Ahasan Redwan el 7 de Abr. de 2020
Comentada: Ameer Hamza el 8 de Abr. de 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.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 7 de Abr. de 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 comentarios
Didarul Ahasan Redwan
Didarul Ahasan Redwan el 7 de Abr. de 2020
thanks a lot ...<3
Ameer Hamza
Ameer Hamza el 8 de Abr. de 2020
Glad to be of help.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by