How can I generate an analytical flow field for poiseuille flow including a time dependent flow solution?

조회 수: 15 (최근 30일)
I was looking for some help in Generating an analytical flow field such as Couette, Poiseuille flow which includes a Time dependent flow solution.
Thanks in Advance.

답변 (1개)

William Rose
William Rose 2022년 3월 30일
@Torsten did not follow up, because he asked for the equations, and you did not provide actual equations. Would you, please? Then we can do it.
  댓글 수: 2
William Rose
William Rose 2022년 3월 31일
편집: William Rose 2022년 3월 31일
Suppose that the flow field for Couette flow is given by
where is the kinematic viscosity. The equation above isn't true, but it is simple, and serves as an example. Then we can compute the flow field at different times. Suppose and and h=1 cm and Vh=10 cm/s.
%constants
Vh=10; %plate velocity (cm/s)
h=1; %channel width (cm)
mu=0.04; %viscosity (Poise=g/(cm-s))
rho=1; %denisty (g/cm^3)
%derived quantities
nu=mu/rho; %dynamic viscosity (cm^2/s)
tau=h^2/nu; %time constant (s)
%Compute the flow at different times
t=tau*(0:.25:4); %time
y=h*(0:.1:1); %position
U=(y/h)'*(1-exp(-t/tau)); %x-component of vel.
V=zeros(size(U)); %y-component of velocity=0
Plot it with quiver().
quiver(U,V);
Try it.
William Rose
William Rose 2022년 3월 31일
@Abhisheik Chanda, This code ocmputes the actual analytical epxression for Couette flow as it develops from time 0. It displays the data in two ways: as a quiver plot and as a set of line plots.

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

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by