Chapter 2

Fluid Dynamics

Bernoulli's principle, viscosity, and laminar vs turbulent flow.

Fluid Dynamics

Fluid dynamics is the study of how fluids (liquids and gases) move and the forces that act on them. In aerospace engineering, understanding fluid dynamics is essential because aircraft operate in a fluid environment (the atmosphere). The behavior of air around aircraft surfaces directly affects performance, stability, and control.

What is a Fluid?

A fluid is a substance that deforms continuously when subjected to a shear stress, no matter how small. This includes:

  • Liquids (water, fuel, hydraulic fluid)
  • Gases (air, exhaust gases)
  • Plasmas (at very high temperatures)

For aerospace applications, we're primarily concerned with air as our fluid medium.

The Continuity Equation

One of the fundamental principles in fluid dynamics is the continuity equation, which represents the conservation of mass in a flowing fluid.

ρ1A1v1=ρ2A2v2\rho_1 A_1 v_1 = \rho_2 A_2 v_2

For incompressible flow (constant density), this simplifies to:

A1v1=A2v2A_1 v_1 = A_2 v_2

Where:

  • ρ\rho = fluid density
  • AA = cross-sectional area
  • vv = velocity

This equation states that the mass flow rate remains constant throughout a flow tube. When the area decreases, velocity must increase, and vice versa.

Bernoulli's Principle

Bernoulli's principle is one of the most important concepts in fluid dynamics and aerodynamics:

P+12ρv2+ρgh=constantP + \frac{1}{2}\rho v^2 + \rho gh = \text{constant}

Where:

  • PP = static pressure
  • 12ρv2\frac{1}{2}\rho v^2 = dynamic pressure
  • ρgh\rho gh = hydrostatic pressure (often negligible in aerospace applications)

For horizontal flow (no elevation change), this simplifies to:

P+12ρv2=constantP + \frac{1}{2}\rho v^2 = \text{constant}

This means that as fluid velocity increases, static pressure decreases, and vice versa. This principle explains how wings generate lift.

Practical Application: Venturi Effect

The Venturi effect demonstrates Bernoulli's principle: when a fluid flows through a constricted section of pipe, its velocity increases and pressure decreases. This principle has applications in:

  • Carburetors in older engines
  • Flow measurement devices
  • Understanding airflow over airfoils

Viscosity and the No-Slip Condition

Viscosity is a fluid's resistance to deformation under shear stress. It's essentially the "stickiness" or internal friction of a fluid.

The no-slip condition states that the fluid velocity at a solid boundary is equal to the velocity of the boundary (typically zero for stationary surfaces).

Reynolds Number

The Reynolds number (ReRe) quantifies the relative importance of inertial forces to viscous forces:

Re=ρvLμ=vLνRe = \frac{\rho v L}{\mu} = \frac{v L}{\nu}

Where:

  • ρ\rho = fluid density
  • vv = velocity
  • LL = characteristic length
  • μ\mu = dynamic viscosity
  • ν\nu = kinematic viscosity (μ/ρ\mu/\rho)

The Reynolds number determines whether flow is laminar (smooth) or turbulent (chaotic).

Laminar vs. Turbulent Flow

Laminar Flow

  • Smooth, orderly flow with parallel streamlines
  • Lower drag (skin friction) than turbulent flow
  • Occurs at low Reynolds numbers
  • More predictable and stable
  • Example: honey flowing slowly from a spoon

Turbulent Flow

  • Chaotic, irregular flow with mixing
  • Higher drag than laminar flow
  • Occurs at high Reynolds numbers
  • More energy loss but better mixing
  • Example: water flowing rapidly from a faucet

Transition Point

Flow typically transitions from laminar to turbulent at a critical Reynolds number, which depends on the geometry. For a flat plate, this occurs at approximately Re5×105Re \approx 5 \times 10^5.

Boundary Layer Theory

The boundary layer is the thin layer of fluid near a solid surface where viscous effects are significant.

Boundary Layer Types

  1. Laminar boundary layer: Smooth flow with low skin friction
  2. Turbulent boundary layer: Chaotic flow with higher skin friction but more momentum

Boundary Layer Separation

When the fluid cannot follow an adverse pressure gradient, the boundary layer separates from the surface, causing increased drag and potential stall.

Navier-Stokes Equations

The Navier-Stokes equations are the fundamental equations governing viscous fluid motion:

ρ(vt+vv)=p+μ2v+f\rho \left( \frac{\partial \mathbf{v}}{\partial t} + \mathbf{v} \cdot \nabla \mathbf{v} \right) = -\nabla p + \mu \nabla^2 \mathbf{v} + \mathbf{f}

Where:

  • v\mathbf{v} = velocity vector
  • pp = pressure
  • f\mathbf{f} = body forces

These equations are extremely difficult to solve analytically, so engineers often use computational fluid dynamics (CFD) or simplified approaches.


Real-World Application: Airfoil Boundary Layer Control

Controlling the boundary layer is critical in aircraft design. Consider the difference between a smooth wing and one with rough surfaces or ice:

Example: Wing Contamination Effects

Aircraft wings with ice, dirt, or frost can experience:

  • Earlier boundary layer separation
  • Reduced maximum lift coefficient
  • Increased drag
  • Lower stall angle of attack

For an aircraft with a clean wing having CLmax=1.4C_{L_{max}} = 1.4 and a contaminated wing with CLmax=1.1C_{L_{max}} = 1.1, the takeoff performance can be significantly affected.

Calculating Performance Impact

If an aircraft requires a lift coefficient of CL=1.2C_L = 1.2 but stalls at CLmaxC_{L_{max}}, calculate the flight conditions:

# Wing parameters
wing_area = 20.0      # m²
aircraft_mass = 1500  # kg
g = 9.81              # m/s²

# Atmospheric conditions
air_density = 1.225   # kg/m³ (sea level)

# Critical values for comparison
CL_clean_max = 1.4    # Max lift coefficient (clean wing) 
CL_contaminated_max = 1.1  # Max lift coefficient (contaminated wing)

# Calculate maximum flight conditions for each case
weight = aircraft_mass * g

# At maximum lift coefficient
velocity_clean_stall = (2 * weight / (air_density * wing_area * CL_clean_max)) ** 0.5
velocity_contaminated_stall = (2 * weight / (air_density * wing_area * CL_contaminated_max)) ** 0.5

print(f"Clean wing stall speed: {velocity_clean_stall:.2f} m/s")
print(f"Contaminated wing stall speed: {velocity_contaminated_stall:.2f} m/s")

Your Challenge: Flow Visualization

In this exercise, you'll explore the relationship between flow speed, pressure, and pipe constriction.

Goal: Calculate how pressure and velocity change in a constricted pipe using the continuity equation and Bernoulli's principle.

System Description

Water flows through a pipe that narrows from A1=0.1 m2A_1 = 0.1 \text{ m}^2 to A2=0.05 m2A_2 = 0.05 \text{ m}^2. The inlet velocity is v1=2 m/sv_1 = 2 \text{ m/s} and pressure is P1=100,000 PaP_1 = 100,000 \text{ Pa}.

Key Variables

# Initial conditions
A1 = 0.1          # Inlet area (m²)
A2 = 0.05         # Outlet area (m²) 
v1 = 2.0          # Inlet velocity (m/s)
P1 = 100000       # Inlet pressure (Pa)
rho_water = 1000  # Water density (kg/m³)

Use the continuity equation and Bernoulli's principle to calculate the outlet velocity and pressure.

Hint:

  1. Use continuity: A1v1=A2v2A_1 v_1 = A_2 v_2 to find v2v_2
  2. Use Bernoulli: P1+12ρv12=P2+12ρv22P_1 + \frac{1}{2}\rho v_1^2 = P_2 + \frac{1}{2}\rho v_2^2 to find P2P_2
# TODO: Calculate outlet velocity and pressure
v2 = 0  # Calculate using continuity equation
P2 = 0  # Calculate using Bernoulli's principle

# Print results
print(f"Outlet velocity: {v2:.2f} m/s")
print(f"Outlet pressure: {P2:.2f} Pa")

How does the constriction affect the velocity and pressure? What would happen if the pipe expanded instead of contracting?

ELI10 Explanation

Simple analogy for better understanding

Think of fluid dynamics like how water flows in a river. When the river is wide and deep, water flows smoothly and slowly. When it narrows and gets shallow, water speeds up and becomes more chaotic. The same thing happens with air flowing over an airplane wing. Fluid dynamics is the science of how things move through fluids like air and water, and how the shape of objects affects this movement.

Self-Examination

Q1.

What is the difference between laminar and turbulent flow?

Q2.

How does Bernoulli's principle apply to flight?

Q3.

What is viscosity and how does it affect fluid flow?