How to solve stream function

22 visualizaciones (últimos 30 días)
esat gulhan
esat gulhan el 7 de Sept. de 2020
Respondida: Sulaymon Eshkabilov el 7 de Sept. de 2020
I am trying to get stream function which expressed as s(x,y)
ds/dy=u=0.5+1.2.*x;
ds/dx=v=-2-1.2*y;
clc,clear;
syms s(x,y) x y
u=0.5+1.2.*x+y;
v=-2-1.2*y+x;
eqn =[diff(s,y) ==u,diff(s,x)==v]
ySol(x,y) = dsolve(eqn)
It seems wrong. Can you please help me ?

Respuestas (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 7 de Sept. de 2020
Hi,
dsolve() can't be used here.
You'd need to employ pdepe() to solve this exercise.

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