Question

Consider the case of a Newtonian fluid undergoing laminar, pressure-driven flow between two parallel, infinite flat plates se

0 0
Add a comment Improve this question Transcribed image text
Answer #1

i) Let,
α = 1 ΔΡ μ Δr

Then,

D = zhp

At the mth node, this second derivative can be expressed as,

d2a_al+ + - - 21 2(رود)

where,

Ay =

n is the number of elements.

Hence,

M,++MI,-- 21, ܐܐ 2(wܠ)

un = 0.5(u 2+1 +um-1 - a(Ay))

With,
0 = n and un+1 = Vur

ii) The code is as follows.

% Assign the given parameters to variables.
v_up = 0.01;
dp_by_dx = 1; mu = 1;
a = dp_by_dx/mu;
B = 0.005;

n = 100;
delta_y = B/n;
y = 0:delta_y:B;

% Initialse the velocity vector, along with Boundary Conditions.
u = v_up*ones(n+1,1);
u(1) = 0;

% Calculate the velocity vector.
u_old = u;
u = fdiff(u,n,delta_y,a);

while norm(u - u_old) > 0.000001*v_up
    u_old = u;
    u = fdiff(u,n,delta_y,a);
end

% Plot of solution from finite difference.
plot(y,u)
hold on
% Plot of analytical solution.
plot(y, y.^2+2*y)
hold off

% Function to carry out iterative finite difference operations.
function [u] = fdiff(u,n,delta_y,a)
    for i = 2:n
        u(i) = 0.5*( u(i+1) + u(i-1) - a*delta_y^2);
    end
end

The output is as follows.

0.012 0.01 0.008 0.006 0.004 0.002 OLL O 0.5 1 1.5 2 2.5 3 3.5 4 4.5 5 *10-3

Add a comment
Know the answer?
Add Answer to:
Consider the case of a Newtonian fluid undergoing laminar, pressure-driven flow between two parallel, infinite flat...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Consider steady, incompressible, laminar flow of a Newtonian fluid in the narrow gap between two infinite...

    Consider steady, incompressible, laminar flow of a Newtonian fluid in the narrow gap between two infinite parallel plates. The top plate is moving at speed V, and the bottom plate is moving in the opposite direction at speed V. The distance between these two plates is h, and gravity acts in the negative z-direction. There is no applied pressure other than hydrostatic pressure due to gravity. Calculate the velocity and estimate the shear stress acting on the bottom plate Moving...

  • Consider a fully developed laminar flow of an incompressible Newtonian fluid between two infinite parallel plates,...

    Consider a fully developed laminar flow of an incompressible Newtonian fluid between two infinite parallel plates, separated by a distance of 2B. The z coordinate is the direction of the flow. The width of the plates is 2W (direction y). The coordinate axis is located half of the 2 plates. a) Obtain the distribution of speeds in steady state. b) Obtain the expression for the maximum velocity and write the velocity distribution of part a) as a function of the...

  • Please attempt the FULL QUESTION Question 4 For pressure-driven laminar flow between two horizontal infinite parallel...

    Please attempt the FULL QUESTION Question 4 For pressure-driven laminar flow between two horizontal infinite parallel plates separated by a distance 2h, the velocity components are: v = 0 where U is the centreline velocity and the x-axis is located at the centreline. Assume steady, fully developed and incompressible laminar flow. For the problem above, obtain the final form of the energy equation after applying the given assumptions. (10 marks) b) Identify the fluid temperature distribution T(y), for a constant...

  • Topic: Fluid mechanics Consider a laminar flow driven by pressure and by gravity between fixed parallel...

    Topic: Fluid mechanics Consider a laminar flow driven by pressure and by gravity between fixed parallel plates with width of W and length L>>W separated by a distance d and inclined from an angle relative to the horizontal For the stationary regime of an incompressible fluid in these conditions a) Calculate the pressure field b)Calculate the velocity field c)Calculate the toal drag force d)Calculate the power dissipated in the flow

  • The flow of a liquid in a laminar flow between infinite parallel plates is resulting a...

    The flow of a liquid in a laminar flow between infinite parallel plates is resulting a pressure drop due to the viscosity of the liquid and an unseen retarding force. Write an expression of pressure drop. Derive the relationship between local and maximum velocity and determine the ratio of maximum velocity to average velocity. (5+3+2 marks)

  • help b) Laminar viscous flow between two parallel plates are shown in the figure below. Both...

    help b) Laminar viscous flow between two parallel plates are shown in the figure below. Both bottom plate and top plate moving in the same direction, their velocities are U6,U respectively and they are not equal to each other. Assume that pressure gradient between point A and point B is zero. By using Navier Stokes equations find the shear stress distribution and velocity profile for that fluiği. Plot both velocity profile and shear distribution. (Show assumptions that you make and...

  • please help?? b) Laminar viscous flow between two parallel plates are shown in the figure below....

    please help?? b) Laminar viscous flow between two parallel plates are shown in the figure below. Both bottom plate and top plate moving in the same direction, their velocities are Un,Ut respectively and they are not equal to each other. Assume that pressure gradient between point A and point B is zero. By using Navier Stokes equations find the shear stress distribution and velocity profile for that fluid. Plot both velocity profile and shear distribution. (Show assumptions that you make...

  • 1. As seenfrom figure, there is a laminar and viscous fluid flow betweentwo parallel plates where...

    1. As seenfrom figure, there is a laminar and viscous fluid flow betweentwo parallel plates where the one is moving with velocity y, other one is stationary. There exists pressure gradient in x direction. The bottom stationary plate is a porous plate andfluid is injected into the channel with V velocity. If theflow is steady, fully developed and incompressible flow, derive the velocity profile. Uo Vo 1. As seenfrom figure, there is a laminar and viscous fluid flow betweentwo parallel...

  • Problem 2. An incompressible, Newtonian fluid flows downwards between two vertical parallel plates that are a...

    Problem 2. An incompressible, Newtonian fluid flows downwards between two vertical parallel plates that are a distance 2h away from each other. The flow is fully developed (i.e. steady) and the entirety of the velocity is the in vertical direction and due to gravity. Assuming there is no pressure gradient, solve for this velocity, w, as a function of 2. (3 points) Figure 1: Flow between two vertical parallel plates due to gravity.

  • Tangential laminar flow of a Newtonian fluid with constant density and occurring between two vertical coaxial...

    Tangential laminar flow of a Newtonian fluid with constant density and occurring between two vertical coaxial cylinders in which the outer rotating with an angular velocity of ω and the inner cylinder is fixed a. Write the simplified continuity equation and the simplified momentum balance equations using necessary assumptions and determine the velocity. b. Determine the shear stress distributions for this flow. c. Calculate the necessary torque. outside cylinder rotates 2 inside cylinder Figure: Top view of the coaxial cylinders

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT