Hi, how can i plot the velocity profile for steady couette flow between two plates? d^2u/d^2y=(1/2*miu)*dp/dx for dp/dx=[_2,_1,0,1,2] , miu=1

댓글 수: 2

How about the plot function?
plot(velocity, 'b-');
Garland Garland
Garland Garland 2022년 1월 15일
U(y)=1/2*miu*(dp/dx)*y^2+(U_1/2*miu*(dp/dx))y The upper plate moves by U=0.01m/s

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

 채택된 답변

Torsten
Torsten 2022년 1월 15일
편집: Torsten 2022년 1월 15일

1 개 추천

Underlying equation is
d^2u/dy^2 = -G/mu with G = -dp/dx = const
function main
dpdx = [-2 -1 0 1 2];
mu = 1.0;
U = 0.01;
H = 0.05;
dy = 0.001;
np = numel(dpdx);
y = (0:dy:H).';
ny = numel(y);
u = zeros(ny,np);
for ip=1:np
u(:,ip) = -dpdx(ip)/(2*mu)*y.*(H-y) + U*y/H;
end
plot(y,u)
end

댓글 수: 3

Garland Garland
Garland Garland 2022년 1월 15일
Thank you very much this was very helpful
Torsten
Torsten 2022년 1월 15일
편집: Torsten 2022년 1월 15일
Maybe making the plot this way is better:
plot(u,y)
xlabel('Velocity u')
ylabel('Plate height h')
Garland Garland
Garland Garland 2022년 1월 15일
Great

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Fluid Network Interfaces Library에 대해 자세히 알아보기

태그

질문:

2022년 1월 15일

댓글:

2022년 1월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by