notesnit
notesnit
Contents
0 Introduction 3
1 Basic concepts 12
1
2.3 The Euler Equations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
2.3.2 Conservation of momentum (we did not cover this in detail in class) . 22
2
0 Introduction
My goal for this week is to introduce you to several topics in fluid dynamics, and give you
an appreciation of the beauty of the field, its diversity, and most importantly its interplay
with various areas of mathematics. Starting with elementary vector fields, by the end I
hope you have a sense for a variety of fluid flows, ranging from inviscid, potential, viscous,
to highly viscous creeping flows. To study these flows we will use mathematics in several
areas, such as Calculus, Vector Analysis, Complex Variables, Ordinary differential equations,
Partial differential equations, Linear algebra, Numerical methods. I will review what I feel
is necessary from these areas, but please interject and interrupt me whenever you would like
to see more explanations.
To understand and visualize many of these flows we will use MATLAB in the afternoon
laboratories. I will give you detailed instructions on how to prepare your codes. Also, there
are several of you that have some experience with MATLAB and by working in groups we
can help each other. A useful summary of MATLAB commands is posted on the web, at
http://www.math.unm.edu/ nitsche/courses/375/handouts/mattutorial.pdf [3]
To start with, let me show you and discuss some sample fluid flows
Day 3 afternoon, and Days 4 and 5, Professor Vorobieff will lecture on fluid flow, applied to
aerodynamics.
3
4
5
6
7
8
Strouhal number St = f A/U
9
10
What are the blue curves??
11
1 Basic concepts
We begin today introducing some basic concepts and looking at some apparently randomly
made-up velocity fields. On Day 2 we will derive the equations that real-life fluid flows satisfy
(approximately). The holy grail in fluid dynamics is to find solutions to these equations,
that is, velocity fields that satisfy them given certain initial and boundary conditions. Such
solutions, if we can find them, can help better understand fluid flow and help to obtain better
designs in engineering applications.
We will then show that the velocity field induced by a set of point vortices is a solution of
the inviscid planar Euler Equations, and use them to construct solutions that satisfy certain
boundary conditions.
To start with however, we will simply inspect velocity fields without making any direct
connection to real fluid flows.
Imagine a fluid particle at position x at time t. It moves with a well-defined velocity u(x, t) =
hu(x, y, z, t), v(x, y, z, t), w(x, y, z, t)i. The velocity u is a vector field. At a given time t, it
is a function that assigns to each position x a vector u. Here are some example vector fields
and their graphs
(−y, x, 0) (x, y, 0)
Exercise 1: Sketch graph of (a) u(x, y, z) = , (b) u(x, y, z) = − p .
x2 + y 2 x2 + y 2
12
The above examples are very simple velocity fields which we can easily draw by hand. Why?
Besides there simple form:
• All but the second examples are 2-dimensional vector fields. The velocity (i) does
not depend on z, and (ii) has zero component in the third dimension. Thus the velocity
is fully described by its graph in the 2d plane (even though velocity exists at every
point in space).
• For convenience all examples chosen are independent of time. Time independent ve-
locities are called steady velocity fields. In such fields it is easy to view particle
trajectories (see below). Flows that are not steady are called unsteady.
Suppose you freeze a velocity u(x, t) at a fixed time and look at the instantaneous vector
field at that instant. Then you can visualize curves x(s) that are tangent to the velocity
at every point in space. That is, they satisfy that their tangent vector equals u(x, t) at the
given time. If in addition we specify one point on such a curve, the curves x(s) are given by
the unique solution to the initial value problem (IVP)
dx
= u(x, t = constant) , x(s0 ) = x0 . (1.1)
ds
These curves are called integral curves of the vector field, or streamlines of the flow.
Exercise: Find the streamlines of the above vector fields. by solving the ordinary differential
equation (1.1).
If a flow is steady, the streamlines do not change in time. If a flow is unsteady, the stream-
lines change with time. The streamlines at a fixed time t are called the instantaneous
streamlines at time t.
Now, suppose a fluid particle at time t has position x(t). Then it moves with velocity u(x, t).
That is, it satisfies the ordinary differential equation
dx
= u(x, t) , x(t0 ) = x0 (1.2)
dt
This implies that at every instant in time its motion is tangent to the velocity field. The
solution to this IVP is the particle trajectory of the particle initially at x0 .
If the velocity field is steady (time-independent) as in the above examples, then the particle
trajectories are simply the streamlines of the velocity and are easy to visualize. However, if
13
the velocity is not steady, that is, the velocity at a fixed point x changes in time, then the
particle trajectories are not equal to the streamlines (the solutions to 1.1 and 1.2 are not the
same) and are harder to visualize. We can visualize both streamlines and trajectories for
any given field u(x, t) by solving the odes (1.1,1.2) numerically. Will do this in afternoon.
Finally, you may have heard of the word streakline. Suppose you have a possibly unsteady
flow, such as the flow behind an oscillating rudder. If you insert dye into the flow at a fixed
point x0 in space at all times, the dye will show you the position at time t of all the particles
which at time t < t0 where at x0 . This is referred to as a streakline.
A streakline is also used to denote the position at time t > 0 of all particles which at time
t = 0 lay on a curve. This is what you would see if you inject dye along a curve at time 0 and
observed where this curve moves to at time t > 0. For us, what is important is: streaklines
are not trajectories (nor streamlines) but are sample of a whole set of trajectories at a given
instant, and reflect what you would see experimentally by injecting dye into the fluid. Of
course, if the flow is steady, streaklines=trajectories=streamlines.
div u = ∇ · u = ux + vy + wz (1.3)
Let’s compute the divergence of the sample vectorfields in §1.1. Does anyone know the
meaning of this scalar function associated to the vector field u? The meaning of ∇ · u can
be deduced from the Divergence theorem,
Z Z
∇ · u dV = u · n dS (1.4)
V D
where V is a closed volume bounded by D, and n is the outward unit normal vector. In
words: “the volume integral of the divergence of u equals the flux (or flow rate) of u out
of D.” (Why flux? Draw figure showing that RHS = volume of fluid leaving domain per
time interval.) Now imagine V to be a small volume within which ∇ · u is approximately
constant. Taking the limit as the volume size → 0 you see that the divergence is the net
outflux per unit volume.
In particular, if ∇ · u > 0 at a point, then there is a positive net outflux out of small
neighbourhood, that is, the flow is expanding. If ∇ · u < 0, the flow is compressing. A
flow for which ∇ · u = 0 everywhere is called incompressible. Check the divergence of
sample vector fields.
14
1.4 Vorticity, circulation, point vortex
ω =∇×u (1.5)
uav |ω|
≈
R 2
The approximation becomes = in the limit as R → 0. Thus, vorticity measures the amount
of rotation of the flow.
Finally, some comments about planar 2-dimensional flows of the form u(x, y, z) = (u(x, y), v(x, y), 0).
Since the velocity does not depend on z we commonly drop the z-dependence and write
u(x, y) = (u(x, y), v(x, y)). However, remember that these flows are defined at all point in
space. Planar 2d simply means invariance and zero flow in z-direction. The vorticity of a
planar flow is
ω = ∇ × u = (0, 0, vx − uy ) (1.7)
Thus it is a vector that points in the z-direction. This makes sense since the flow rotates
in a plane normal to this vector and it can only rotate in the x-y plane. In planar flow the
convention is to let n = (0, 0, 1) and T point in the counterclockwise direction (so the pair
n, T satisfies the right hand rule). As a result the circulation in the plane is defined with
counterclockwise orientation and, by Stokes Theorem,
I I Z
u · T ds = u dy − v dx = vx − uy dA (1.8)
C C D
15
The small circle around the integral sign denotes counterclockwise orientation of a closed
curve. You may recognize this planar version of Stokes Theorem as Greens Theorem that
we covered in vector calculus (Math 264).
Note: we refer to these 2d flows as planar to distinguish them from for example axisymmetric
or flows on the sphere, in which there are also only two dimensions.
Note that in Example 4, even though the flow is rotating, the vorticity is zero everywhere,
except at the origin! As we know, vorticity measures local rotation, and in this case an
infinitesimal parcel of fluid away from the origin circles about the origin but without rotating
about its axis. However, the circulation about any curve enclosing the origin is nonzero.
Exercise 5: (a) Compute the circulation around the unit circle centered at the origin. (b)
Use Stokes Theorem to show that the circulation around any other curve inclosing the origin
is the same, namely 1.
By Stokes theorem, this implies that the vorticity is zero everywhere except at the origin, but
its integral over any region enclosing the origin is 1. This is the definition of the δ-function.
The “δ-function” is not really a function. It is defined by what happens when you integrate
it:
0 if (0, 0) ∈
/D
Z
δ(x, y)dA = (1.9)
D 1 if (0, 0) ∈ D
It was introduced and used mainly by physicists (Poisson 1815, Fourier 1822, Cauchy 1823,
1827, Kirchoff 1882,1891, Heaviside 1893, 1899, Paul Dirac 1926) but was dismissed by many
mathematicians as non-rigorous, until the theory of distributions was developed (Sobolev
1935) which makes it a rigourous mathematical object (not a function, but a distribution)
(Schwartz 1945-50). (I got this from an article by Balakrishnan on the web, Resonance, Aug
2003.
∂ψ ∂ψ
= −v, = u. (1.10)
∂x ∂y
R (x,y)
or, u = (ψy , −ψx ) = ∇⊥ ψ. (To prove: define ψ(x, y) as a line integral (0,0) udy − vdx, show
it is path independent so that this is well-defined, find the partial derivatives.) This function
16
is called the streamfunction since for fixed t, its level curves are streamlines of the flow.
Why? Let x(s), y(s) be a streamline: x0 (s) = u(x, y, t), y 0 (s) = v(x, y, t), then
d ∂ψ dx ∂ψ dy
ψ(x(s), y(s)) = + = −vu + uv = 0
ds ∂x ds ∂y ds
In particular, on the boundary ψ = 0.
Exercise: Find streamfunction for the incompressible examples on page 4. and plot its level
curves. Write down streamfunction for N point vortices.
• Streamlines
(a) We visited Professor Vorobieff’s laboratory and saw streamlines for flow past
cylinder, and flow past a symmetric airfoil at various angles of attack.
(b) We plotted streamlines for a set of point vortices. These show the instantaneous
velocity field induced by these points. A sample of your results: 2 pts, counter-
clockwise
(c) 2 pts, Γ1 = −Γ2 %item 2 pts, Γ1 < 0 < Γ2
(d) 2 pts, Γ1 = Γ2
(e) 2 pts, 0 < Γ1 < Γ2
(f) 3 pts, of your choice
(g) any other of your choice
Turn in plots that specify position and stregths of pts
17
2 Inviscid, incompressible flow
Today we will present equations that model inviscid, incompressible flow, the Euler Equa-
tions, and interpret them. First, however, lets take another look at a velocity field u(x, t),
and decompose it using Taylor’s theorem, to better understand the local behaviour of a
fluid. We then introduce the material derivative of a function evaluated on a particle trav-
elling with the fluid velocity. After this we present the physical principles from which the
Euler Equations are derived, and the resulting equations. The derivation is included for
completeness (but we did not have time to do this in class).
The meaning of the vorticity is also well elucidated by the following. Consider the velocity
u(y), where y = x + h is near a basepoint x. That is, h = |h| is small. (Here, for simplicity,
I omitted the time dependence of u.) Using Taylor series expansion about x can show that
1
u(y) = u(x) + D(x)h + ω(x) × h + O(h2 ) (2.1)
2
where D is a symmetric matrix.
Exercise 2: Show (2.1). (a) write down Taylor series in 1 variable; (b) write down Taylor
series in 3 variables; (c) write (b) in vector form u(y) = u(x) + (∇u) h + O(h2 ) (d) split
matrix ∇u into symmetric and antisymmetric parts
Thus, locally, near x, the velocity is a sum of 3 components. Lets look at each component,
by looking at the particle motion due to each component separately. Let x be a fixed vector,
as before. We want to look at the velocity at y, namely dy/dt. Note that since x is constant
dy dh
=
dt dt
So the question is, what is the solution to the three parts
dh
= u(x) (2.2a)
dt
dh
= D(x)h (2.2b)
dt
dh 1
= ω(x) × h (2.2c)
dt 2
(For (2.2b) we need to diagonalize D. Use linear algebra results for symmetric matrices.)
The results of above shows that to first order in h, the velocity is a sum of a translation, a
deformation and a rotation. The matrix D is called the deformation matrix (or rate of
18
strain tensor), its eigenvalues and eigenvectors are the principal strainrates of principal
axes of strain, respectively.
One can investigate the change of volume of a small parcel of fluid under the strain field D in
a small time ∆t. Result: to first order in ∆t, volume is amplified by factor 1+(λ1 +λ2 +λ3 )∆t.
This again indicates significance of divergence of the flow. (Why?)
Suppose x(t) = (x(t), y(t), z(t)) is the trajectory of a fluid particle, and f (x(t), t) is the
value of some quantity assigned to the particle. For example, it could be the density or
the temperature at that particle (scalar functions), or the velocity at that particle (a vector
valued function). Note that the function f (x(t), t) = F (t) is a function of time only. We
would like to know how this quantity changes in time, that is, we want to find dF/dt.
This derivative measures the change of f in time on the particle x(t). For example, if f is
temperature, then dF/dt would be the rate of change of temperature that you would feel if
you were sitting on the particle.
Such quantities that are described by their values on a moving particle are called Lagrangian
variables. Their derivative with respect to time is called the material derivative since it
denotes changes on a material particle, and is often denoted by Df /DT or df /dt. Using the
chain rule and using the fact that dx/dt = u(x(t), t) we find that
dF D
= f (x(t), y(t), z(t), t)
dt Dt
∂f dx ∂f dy ∂f dz ∂f
= + + +
∂x dt ∂y dt ∂z dt ∂t
(2.3)
∂f ∂f ∂f ∂f
= u(x, y, z, t) + v(x, y, z, t) + w(x, y, z, t) +
∂x ∂y ∂z ∂t
∂
= ( + u · ∇)f (x(t), y(t), z(t), t)
∂t
The resulting formula for the differentiation operator D/Dt (or d/dt) can be abreviated as
D ∂
= +u·∇ (2.4)
Dt ∂t
For example, the acceleration of a particle at x(t) is the time derivative of its velocity
Du ∂ ∂u
= ( + u · ∇)u = + (u · ∇)u (2.5)
Dt ∂t ∂t
19
The basic idea is simple (chain rule), just make sure you understand when to use ∂ and
when you use d. In (2.5) the brackets around u · ∇ denote that you take this dot product
first. Otherwise you may read it as u · (∇u) and it is a little confusing what the gradient of
a vector is.
In this section we derive equations that model the behaviour of real fluid flows. The model
does not account for the effects of viscosity and is thus a good approximation for flows in
which these effects are negligible. Viscous effects may be negligible for example far from walls
bounding the fluid domain, if the viscosity is very small, or in superfluids, where viscosity is
practically zero. We will discuss the effects of viscosity, particularly near walls, later in §4.
The equations modelling fluid flows are based on physical principles that real flows satisfy.
The equations in this section were derived by Euler in the 1750s. For incompressible flows,
which is mainly what we will consider, he obtained the equations in their present form. For
compressible equations, one needs a further equation which was obtained only much later.
We will then show that the planar point vortex flows discussed in the previous section are
solutions to the Euler Equations (and thus approximate real fluids which are approximately
planar and have negligible viscosity).
The physical principle is: mass is neither created nor destroyed. How do we obtain an
governing equation from this? Consider a fixed region W in the fluid. The boundary of W
is a surface denoted by ∂W . The physical principle states that the rate of change of mass
in W = the rate at which mass crosses ∂W or, more precisely
the rate of increase of mass in W = the rate at which mass enters ∂W (PPI)
The mass in W is X Z
lim ρk ∆Vk = ρ(x, t)dV (x) = m(t) (2.6)
||∆V ||→0
k W
that is, it is the volume integral of density over the region W . Here we are assuming that there
is a well-defined density ρ(x, t) at every point x. This is called the continuum assumption.
We will also assume that the velocity and density are sufficiently smooth to apply the main
operations of calculus.
The mass in W can depends on time, since the density at a point depends on time. For
example if the mass in W increases the density inside has to increase. The left hand side of
20
the physical principle PPI is the rate of change of the mass
Z Z
dm d ∂ρ
= ρ(x, t)dV (x) = (x, t)dV (x) (2.7)
dt dt ∂t
W W
(The time derivative enters as a partial derivative since the region of integration W is time
independent.)
To find an expression for the right hand side of PPI we look at a small piece of the boundary,
∆S, and assume that ρ, u and n are constant on this piece. This assumption holds in the
limit as ∆S → 0. Then (show figure in class) we see that the volume of fluid entering through
∆S in time ∆t is −u·n∆S∆t. So the mass entering in this time is −ρk uk ·nk ∆S∆t. Dividing
by ∆t and taking the limit as ∆t → 0 (to get the rate at which mass enters) and summing
over all ∆S, then taking limit as ∆S → 0 get
X Z
− lim ρk uk · nk ∆Sk = − (ρu · n)(x, t)dS(x) (2.8)
||∆S ||→0
k ∂W
Equation (2.10) states that the integral is zero for any region of integration W . If we assume
the integrand is continuous, this implies that the integrand must be identically zero.
Exercise 2: Deduce (2.12) from (2.11). (You are in fact proving a vector identity. There are
many identities often used, some are listed in the appendix as examples. Which one of those
did you prove in this exercise?).
21
Again, this makes perfect sense. If ∇ · u > 0 then the fluid near a material particle expands
and the density at the material particle decreases. That is, if ∇ · u > 0 then Dρ/DT < 0
(using that the density is always positive, ρ > 0).
Equation (2.11) is our first equation of motion. In general we do not know the fluid velocity
u = (u, v, w) nor the density function. These are 4 unknowns and the above is only one
equation, which is now enough to solve for the unknowns.
2.3.2 Conservation of momentum (we did not cover this in detail in class)
The next equation of motion (whose derivation we will only outline) is based on the physical
principle of conservation of momentum the rate of change of momentum of W = force applied
to it., or, more precisely
This is Newton’s second law, which you may be more familiar with when mass is constant:
F = ma. (Momentum is mv, so for a nonconstant mass m(t) moving with velocity v this
law reads F = d(mv)/dt. Here the equation is not that simple because different portions of
the fluid move with different velocities.)
We apply this law to a region Wt moving with the fluid. The left hand side of PPII is
Z Z
d Du
ρudV = ρ dV (2.13)
dt Wt Wt Dt
Proving this equality is not trivial and we will skip it. Having proved the conservation of
mass in detail we only wish to indicate how the final equations follow from physical principles.
For the right hand side of PPII we will assume that the force of stress on the boundary of
W acts normal to it, and is given by the pressure, so that the
where again, we used the divergence theorem and skipped some details to obtain the right
hand side. By equating (2.13) and (2.14) and assuming the integrands are continuous we
obtain the equation of conservation of momentum,
Du
ρ = −∇p (2.15)
Dt
where we ignored other forces such as gravity that could be acting on the body.
22
2.3.3 Euler equations for incompressible flow
Equations (2.11, 2.15) are a set of 4 equations, but now we have 5 unknowns!, density ρ,
velocity u, and pressure p. For incompressible flow, Euler completed the system of equations
by ∇ · u = 0. For general flows, the system is completed by enforcing concervation of energy.
It turns out that the condition of incompressibility ∇ · u = 0 is equivalent to conservation of
kinetic energy. So now we have 5 equations for 5 unknowns that hold in the domain of the
fluid D. These need to be complemented by boundary conditions. The boundary conditions
u · n = Uwall · n on ∂D, where Uwall is the velocity of the wall, enforce that there is no
flow going through the walls. (If wall steady, condition is u · n = 0.) In summary, Eulers
equations for incompressible flow, ignoring other external body forces, are
Dρ
= 0 (2.16a)
Dt
Du
ρ = −∇p (2.16b)
Dt
∇·u = 0 (2.16c)
u·n = Uwall · n on ∂D (2.16d)
with initial conditions at t = 0, u(x, 0), given. Here the first 5 equations hold in the interior
D. So, our goal: solve these equations!
The above equations (2.16) are Euler’s Equation in the velocity-pressure formulation. They
can alternatively be presented in terms of vorticity-streamfunction, which we will do now for
the case of constant density flows.
Now, suppose the flow is homogeneous, that is, ρ = ρ0 is constant, and take the curl of
the balance of momentum equation,
∂u
∇× + (u · ∇)u = −∇p
∂t
23
Using the identities
∇ × (∇f ) = 0 (2.18a)
1
∇(u · u) = u × curl u + (u · ∇)u (2.18b)
2
∇ × (u × ω) = u div ω − ω div u + (ω · ∇)u − (u · ∇)ω (2.18c)
it follows that
Dω
= −(ω · ∇)u (2.19)
Dt
This equation holds in 3D. It says that the vorticity of a material particle can be stretched
by the term on the right hand side. Thus the right hand side is a called the stretching
term. Because of this term it is not known whether smooth initial vorticity fields in 3D can
blow-up develop and develop singularities in finite time. (This is one of the Million Dollar
questions!)
For planar 2D flows, the vorticity evolution equation simplifies significantly since the vorticity
vector points in the z-direction and the gradient vector ∇ = (∂x , ∂y ) lies in the x, y-plane, so
that the operator ω · ∇ is zero. Thus, for homogeneous inviscid incompressible planar flow
the vorticity streamfunction formulation of the Euler equations is
Dω
= 0, (2.20a)
Dt
∆ψ = −ω, u = ψy , v = −ψx (2.20b)
ψ = 0 on walls (2.20c)
This means the vorticity of a material particle stays constant. No stretching can occur and
as a result it can be shown that smooth solutions remain smooth for all times.
p
Bernoulli’s Theorem: In stationary, homogeneous, inviscid flow, the quantity 12 |u|2 + ρ0
is constant along streamlines.
Outline of proof: use vector identities to show that ∇( 12 |u|2 + ρp0 ) = u × (∇ × u) Let x(s) be a
x(s ) R x(s ) R x(s )
streamline. Then 12 |u|2 + ρp0 |x(s21 ) = x(s12) ∇( 21 |u|2 + ρp0 ) · x0 (s) ds = x(s12) u × (∇ × u) · x0 (s) ds
Why?
Experiment: Blow over paper and between two papers held closely together. Explain your
observations.
24
2.5 Kelvin’s Theorem.
Definition: A vortex line in 3d is an integral curve of the vorticity vector field. (in planar
flow, the vortex lines are simply straight lines normal to the plane)
The following theorems follow from the Euler equations derived above.
Kelvin’s Theorem: The circulation around vortex lines stays constant in time.
Any flow that satisfies the equations (2.20) solves the Euler Equation. Note that for the
2D point vortices we have been looking at, (2.20a) implies that their circulation remains
constant for all times. Thus the solution of the Euler Equations with point vortex initial
data is simply given by the motion of these point vortices in their self-induced velocity field.
This velocity field is given by their streamfunction, which we computed yesterday.
What if (x, y) is one of the point vortices? How do the points evolve under their self-induced
velocity?? The self-induced velocity of a point vortex is defined to be zero (it doesnt move in
its radially symmetric flow field). As a result, it only moves due to the velocity field induced
25
by the other point vortices. Thus, the flow induced by N vortices (as before, of strength Γk
and position (xk , yk ), k = 1, . . . , N ) at one of the points, say (xj , yj ) is
N
X Γk (−(yj − yk ), xj − xk )
u(xj , yj ) = (2.24)
k=1
2π (xj − xk )2 + (yj − yk )2
k6=j
Analyze: what is self-induced motion of one pt vortex, how do 2 pt vortices move in self-
induced field (to start with, look at Γ1 = ±Γ2 )?
Fact: The motion of N ≤ 3 vortices is never chaotic (the flow is said to be integrable).
However, the motion of particles in the flow induced by 3 or more vortices can be chaotic.
Euler’s method: We reviewed Euler’s method to approximate the solution of a scalar equa-
tion x0 = f (x, t), x(t0 ) = x0 for the solution x(t)
Point vortex motion: We wrote a Matlab code that implements Euler to solve the motion
of N point vortices.
We plotted motion of N=2,3 or more vortices and the evolution of the instantaneous stream-
lines.
The method of images: How about solutions to the Euler Equations in finite domains?
Example: Suppose D is the upper half-plane and the initial condition again consits of N
point vortices in D. How do these points move so as to satisfy the boundary condition
u · n = 0? Answer: the boundary condition can be enforced by placing N image vortices
of opposite sign symmetrically across the boundary to the N point vortices in D. Draw
Picture! This gives a solution to the Euler Equations in this domain D: 2.14a-c are satisfied
by same reasoning as above. 2.14d is also satisfied.
Placing image vorticity outside the domain to yield an incompressible velocity field that
satisfies the boundary conditions is referred to as the method of images.
1. Place an arbitrary set of point vortices in a domain D, and place image vorticity outside
D so that the no-though-flow boundary condition u · n = 0 on ∂D is satisfied for
26
(c) D: circle centered on origin with radius a.
27
3 Viscous flow. Potential flow
When we derived the Euler Equations we assumed that the forces across a surface were
normal to that surface. This does not allow any transfer of momentum across fluid slabs
moving past each other with distinct velocity. Or, for that matter, between a steady wall
and fluid moving past it with nonzero velocity. We know in practice that this model is
unreasonable. Faster particles in one layer will diffuse and impart momentum to slower
particles next to them, slower particle will diffuse, impart momentum and slow down the
fluid above. So a better model is to assume that the forces also have nonnormal components,
as in
force on S per unit area = p(x, t)n + σ(x, t)n
where σ is a matrix. Under some assumptions on σ (symmetric, invariant under rotation,
proportional to velocity gradients), and after using divergence theorem as in case of (2.13),
conservation of momemtum for incompressible flows yields the equation
Du
ρ = −∇p + µ∆u (3.1)
Dt
where µdi are the eigenvalues of σ, where di are the eigenvalues of the deformation matrix
D. Again, we are skipping a lot of details here. The coefficient µ is called the viscosity of
the fluid, and measures the transfer of momentum in nonnormal direction due to diffusion.
Comparing equation 3.1 to the inviscid Euler equation 2.14b we see that 3.1 has more
derivatives and this requires an additional boundary condition over 2.14d. What is required
is that the fluid particles not only move parallel to the wall, but stick to the wall
u = Uwall on ∂D (3.2)
where Uwall is the wall velocity. For incompressible, viscous, homogeneous (ρ = ρ0 ) flow,
this yields the Navier-Stokes equations
Du ∇p
= − + ν∆u (3.3a)
Dt ρ0
∇·u = 0 (3.3b)
u = Uwall on ∂D (3.3c)
Here ν = µ/ρ0 is called the kinematic viscosity. (Note: if flow homogeneous then
conservation of mass autmatically satisfied.)
Suppose you have parallel viscous flow next to a flat wall. Since the fluid velocity is zero
at the wall, and large non-zero away from the wall, a boundary layer is formed in which
28
velocity gradients are large. That is, vorticity is large! whereas it is almost zero in the
region of parallel flow.
The boundary layer vorticity can separate from the wall near corners or regions of large
curvature, thus introducing vorticity that is convected well into the interior of the fluid.
You may think that the effect of viscosity on the fluid behaviour depends solely on the value
of the parameter ν. However, the size of the structures involved and the characteristics
speeds of the fluid matter as well. For example, dragging a spoon through water at a small
speed may be similar to dragging the same spoon though oil at much faster speeds. To
determine the relevant physical parameters that determine the flow we nondimensionalize
the flow.
First we find the dimensions of all variables. In this case they involve length and time, or
equivalently, lengths and velocity. Namely
[u] = U , [x] = L , [t] = T = L/U , [p/ρ0 ] = L2 /T 2 = U 2
Here, the brackets denote “the dimensions of” what is inside, and U,L,T simply denote that
the dimensions are those of velocity, length, or time, respectively. Note that I treated p/ρ0
as one variable, to avoid having to introduce mass. The dimensions of p/ρ follow by ensuring
that the equation is dimensionally correct. Similary, one can deduce that
[ν] = U L
Of course, these dimensions also follow from the definition of p and ν used in the derivation.
29
and similarly for the other 2 equations in 3.3(a). This reduces to
∂ ũ ∂ ũ ∂ ũ ∂ ũ ∂ p̃ 1 ∂ 2 ũ
+ ũ + ṽ + w̃ =− + (3.6)
∂ t̃ ∂ x̃ ∂ ỹ ∂ z̃ ∂ x̃ Re ∂ 2 x̃
where Re = LU ν
is called the Reynolds number. Similarly we can check that equation
3.3(b) reduces to
∂ ũ ∂ṽ ∂ w̃
+ + =0 (3.7)
∂ x̃ ∂ ỹ ∂ z̃
Now we remove the tildes for convenience and state the Navier-Stokes equation in nondi-
mensional variables
Du ∇p 1
= − + ∆u (3.8a)
Dt ρ0 Re
∇·u = 0 (3.8b)
u = Uwall on ∂D (3.8c)
As a result we deduce that the solution to the Navier-Stokes equation remains the same
for different flows, up to scaling, as long as the Reynolds number is the same. For example,
slow flow past a thin cylinder in water is a small sized version of fast flow past a thick
cylinder in water. The nondimensionalization process reveals the relevant (nondimensional)
combination of parameters determining the solution of the equation.
30
3.2 Potential flow
An irrotational, incompressible flow is called potential flow, that is, in potential flow ∇·u = 0
and ∇ × u = 0.
The level curves of φ are the potential curves. How are the potential curves and streamlines
related??
It follows that
∆ψ = 0 in D, with ψ = 0 on ∆D
and
∂φ
∆φ = 0 in D, with = Uwall · n on ∆D
∂n
That is, both φ, ψ satisfy the Laplace equation (with different boundary conditions, Dirich-
let for ψ and Neumann for φ). Such functions are called harmonic.
The Laplace equation is a fundamental equation that appears in many applications. It has
been much studied and many theoretical results exist about its solutions. There are also
many numerical methods to solve the Laplace equation. In 2D (and only in 2D!) there is an
analytical method based on complex variables to obtain solutions for certain domains. This
is what we’ll go over the rest of today.
√
complex numbers z = a + ib = r cos(θ) + ir sin θ = reiθ where r = a2 + b2 = |z| and
θ = atan(b/a) = arg(z). Here we used Euler’s formula eiθ = cos(θ) + i sin(θ). This follows
31
from Taylor series expansions of these three functions.) So can also write
z = |z|eiarg(z) .
Exercise: Find complex potential for pt vortex flow (in domain not including origin)
Exercise: Check that W (z) = U [z + a2 /z] is the complex potential for flow past a circle.
Find complex velo and velo at infinity.
32
References
[1] Chorin, A. J. & Marsden J. E. A mathematical introduction to fluid dynamics, Springer
Verlag, 1979.
[2] Lugt, H. J. Vortex flow in nature and technology. Krieger Publishing Company, 1995.
33