GSO002 Problem 14
Problem Statement
Drag Force on a Flat Plate Moving Through a Rarefied Gas
Problem Statement
The air resistance on artificial satellites moving in near-vacuum space, or on tiny dust particles falling through a rarefied gas, is understood not through everyday fluid mechanics but through the microscopic accumulation of collisions based on the kinetic theory of gases. In this problem, we rigorously derive this drag force from molecular-level collisions.
Consider a rarefied gas of single-atom molecules with mass m and number density n. All molecules move at the same speed v0 relative to the space, with directions that are completely isotropic (uniformly distributed in all directions). External forces such as gravity are negligible.
A thin flat plate of cross-sectional area S moves at constant velocity V in the +z direction (perpendicular to the plate face), through this gas. It is assumed that 0<V<v0.
Gas molecules undergo perfectly elastic collisions with the plate. Derive the drag force F on the plate in the direction opposing its motion.
The face of the plate facing the direction of motion is called the "front face," and the opposite face is the "rear face."
Use spherical coordinates with θ (0≤θ≤π) as the angle between the molecular velocity vector and the positive z-axis, and ϕ (0≤ϕ<2π) as the angle of the xy-projection with the x-axis.
Note: For an isotropic velocity distribution, the fraction of molecules moving within an infinitesimal solid angle dΩ=sinθdθdϕ is 4πdΩ.
Constraints
- Molecular mass: m=5.0×10−26 kg
- Number density: n=6.0×1020 m−3
- Molecular speed: v0=400 m/s
- Plate velocity: V=100 m/s
- Plate cross-sectional area: S=2.0 m2
Input Format
Find the magnitude of the net drag force F in N and give the answer as a positive integer equal to the value multiplied by 10.
Solution
1. Pressure on the Front Face
In the plate's rest frame, a molecule with velocity v=(v0sinθcosϕ,v0sinθsinϕ,v0cosθ) has relative velocity:
vrel=(v0sinθcosϕ, v0sinθsinϕ, v0cosθ−V)A molecule hits the front face when the z-component of relative velocity is negative:
v0cosθ−V<0⟺cosθ<v0VThe number density of molecules in direction (θ,ϕ) within dθdϕ:
dn=n4πsinθdθdϕPressure contribution from elastic collision (each molecule's z-momentum changes by 2m(V−v0cosθ)):
dPf=2m(V−v0cosθ)⋅4πn(V−v0cosθ)sinθdθdϕIntegrating over all ϕ and over θ0 to π (where cosθ0=V/v0), with substitution u=cosθ:
Pf=nm∫−1V/v0(V−v0u)2du=3v0nm(v0+V)32. Pressure on the Rear Face
Molecules hit the rear face when cosθ>V/v0:
Pb=nm∫V/v01(v0u−V)2du=3v0nm(v0−V)33. Net Drag Force
F=S(Pf−Pb)=S3v0nm[(v0+V)3−(v0−V)3]Expanding: (v0+V)3−(v0−V)3=6v02V+2V3
F=3v02nmSV(3v02+V2)4. Numerical Calculation
Pf=3×4003.0×10−5(500)3=40010−5×1.25×108=3.125 Pa Pb=3×4003.0×10−5(300)3=40010−5×2.7×107=0.675 Pa F=S×(Pf−Pb)=2.0×2.45=4.9 NMultiplied by 10: 49.
Final Answer: 49