You are on page 1of 16

Couette Flow

Analytical & Numerical Solution


RASIKH TARIQ
rasikhtariq@gmail.com

Group Members
Numb
er

Name

Registration Number

Khawar Shahzad

ME 113 009

Muhammad Ali

ME 113 115

Mohsin Raza

ME 113 080

Zohaib Ahmad

ME 113 022

Aoun Abbas

ME 113 074

Omer Ayub

ME 113 089

Muhammad Ramzan

ME 113 100

Khuram Yousaf

ME 113 107

Zain Talib

ME 113 108

10

Hassan Aamir

ME 113 053

11

Adeel Anwar

ME 113 039

Introduction

http://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Laminar_shear.svg/800pxLaminar_shear.svg.png

Introduction

Laminar

Viscous

Incompressible Fluid

Introduction

Analytical Solution

The governing y-direction momentum equation is:

Steady State
Assumption

No Body Forces

Analytical Solution

Equation
The governing x-directionFinal
momentum
equation is:

Steady State
Assumption

Y-Direction
Velocity
(v)
is Zero

No beginning or end
of this flow in xdirection

Analytical Solution

Using boundary condition at we have, we get.

Using boundary condition at we have, we get.

Analytical Solution Matlab Code


clc
clear
%Workspace and Command History Cleared

12

ue = 0.01

10

Couette Flow Velocity Profle

%Separation Distance between

plate. 5cm
%y is distance from lower plate to upper plate

y = linspace(0,D,500);
for i=1:1:500
U(i)=(ue*y(i))/D;
end
plot (y,U)
legend ('Couette Flow Velocity
Profile','Fontsize',12')
xlabel ('Width Between Plates (m)',' Fontsize ',12')
ylabel ('Velocity Profile (m/s)',' Fontsize ',12')
axis ([-0.01 0.06 -0.001 0.012])

V elocity P rofle (m/s)

%Velocity of Upper Plate moving

with 0.01m/s

D = 0.05

-3

x 10

0
-0.01

0.01

0.02

0.03

0.04

Width Between Plates (m)

0.05

0.06

Numerical Implicit Method

Nature of Partial Differential Equation

Conclusion: Time Marching Possible


Parabolic Nature Equation because

10

The Numerical Formulation

11

The Numerical Formulation

12

The Numerical Formulation

13

The Numerical Formulation

14

The Numerical Formulation

15

Thank you!

16

You might also like