The shark is not smooth
The mental image of a shark as a smooth, slippery torpedo is incorrect. Its skin is covered with dermal denticles: microscopic V-shaped scales aligned with the flow, composed of dentin and enamel — materials similar to our teeth. These denticles, ranging from 0.2 to 0.5 mm, are not decorative: they are the key to its hydrodynamic efficiency.
In 1982, biologist Wolf-Ernst Reif published the study demonstrating that scalloped hammerhead shark (Sphyrna lewini) denticles reduce friction by 9.9% compared to a smooth surface. NASA applied the riblet concept — micro-grooves aligned with the flow — to aircraft wings in the 1980s.
Physics of riblets: why they work
Riblets structure the turbulent boundary layer through three mechanisms:
- Vortex confinement: longitudinal vortices become trapped in the valleys, reducing transverse velocity fluctuations
- Shear stress reduction: vortex-wall contact is limited to riblet tips, not the entire surface
- Critical height: optimal dimensions s+ ~ 16 in wall units. At Re = 10^6, this implies heights of 50-100 micrometers
# Optimal riblet dimension calculation
U_inf = 10.0 # m/s
nu = 1.0e-6 # kinematic viscosity
cf = 0.027 / (Re**(1/7)) # Prandtl correlation
u_tau = U_inf * sqrt(cf / 2)
s_dim = 16 * nu / u_tau # optimal height in m
Manufacturing and materials
Viable techniques for replicating these patterns:
- Femtosecond laser machining: ultra-short pulses with ±2 micrometer precision on steel and titanium
- Soft lithography: PDMS molds replicate patterns from etched silicon wafers
- Two-photon polymerization: sub-micrometer resolution for research prototypes
- Roll-to-roll texturing: the only scalable route for mass production of polymer films
Measuring the effect: CFD with modeled roughness
Instead of meshing each riblet (millions of cells), we use equivalent roughness models that capture the net effect on the mean flow. In OpenFOAM, this is implemented as a wall function with roughness offset:
/* 0/nut - equivalent roughness model */
boundaryField
{
ribletWall
{
type nutkRoughWallFunction;
Ks 5e-5; // equivalent roughness (m)
Cs 0.5; // roughness constant
value uniform 0;
}
}
The results show a 7-9% reduction in the friction coefficient (Cf) for flows between Re = 10^5 and 10^7, consistent with experimental data from NASA Langley.
Applications beyond aerodynamics
- Biomedical: textured catheters reduce bacterial adhesion by 40%
- Naval: riblet paints on ship hulls save up to 5% on fuel
- Wind energy: riblet leading edges reduce aerodynamic noise and improve blade L/D
- Sports: Speedo LZR swimsuits (2008) incorporated shark-inspired riblets
Conclusions
Shark dermal denticles are a textbook example of how evolution finds optimal solutions millions of years before engineers do. Replicating them is not trivial, but advanced manufacturing techniques are closing the gap between biology and commercial products.