Module 2: Web Architecture and Physics
The orb web is one of nature's most elegant engineering structures: a lightweight, high-performance prey capture device built in 20-30 minutes, recycled daily, and optimized by 150 million years of evolution. This module analyzes the geometry, construction algorithm, prey capture mechanics, and glue adhesion physics that make orb webs so effective.
1. Orb Web Geometry
A typical orb web consists of three structural elements: the frame (anchor threads connecting to the environment), radial threads (dragline silk radiating from the hub), and the capture spiral (flagelliform silk coated with aggregate glue). The geometry is governed by an Archimedean spiral:
\(r(\theta) = a + b\theta\)
where a is the radius of the free zone (typically 2-4 cm), b controls the spacing between turns (typically 1-3 mm per radian), and \(\theta\) is the angular coordinate. The spacing between successive turns is constant: \(\Delta r = 2\pi b\).
The total length of the capture spiral from the free zone (radius a) to the frame (radius R) is:
\(L = \int_0^{\theta_{max}} \sqrt{r^2 + \left(\frac{dr}{d\theta}\right)^2} \, d\theta = \int_0^{\theta_{max}} \sqrt{(a + b\theta)^2 + b^2} \, d\theta\)
For a typical orb web with a = 3 cm, b = 0.18 cm/rad, R = 15 cm:\(\theta_{max} = (R-a)/b \approx 67\) radians (about 10.6 turns), giving L < 6 meters of capture spiral.
Why a spiral and not concentric circles? The Archimedean spiral is more material-efficient. Concentric circles of equal spacing require the spider to repeatedly cut and reattach threads, and the total thread length is greater. The spiral uses a single continuous thread and achieves the same capture area with approximately 30% less silk.
The web is also slightly asymmetric: the lower half typically has more spiral turns and closer spacing than the upper half. This is because spiders can run downward faster (gravity-assisted), so they invest more capture area where they can reach prey most quickly.
2. Web Architecture Diagram
The following diagram shows the complete geometry of an orb web, with labeled structural elements and the Archimedean spiral capture zone.
3. Web Construction Algorithm
Orb web construction follows a remarkably stereotyped behavioral algorithm, taking 20-30 minutes regardless of species. The sequence is:
- Bridge thread: The spider releases a silk line that drifts on air currents until it contacts a distant anchor point. This forms the first structural element.
- Frame construction: Y-frame threads are laid down, creating the structural perimeter. The hub position is established (typically upper-center of frame).
- Radii placement: The spider lays down 20-32 radial threads from the hub to the frame, spacing them approximately equally in angle. The number of radii is optimized for prey interception.
- Temporary spiral (inside-out): A non-sticky spiral of minor ampullate silk is laid from the hub outward, providing scaffolding for the capture spiral. Spacing is wide (~4-8 mm).
- Capture spiral (outside-in): The spider replaces the temporary spiral with sticky flagelliform + aggregate silk, working from the frame toward the hub. Each turn of temporary spiral is consumed (eaten) as the capture spiral is laid.
The optimal number of radii can be derived from prey interception probability. For an insect of diameter d flying into a web of area A with n radii:
\(P_{intercept} = 1 - \exp\left(-\frac{n \cdot d \cdot (R - r_0)}{A}\right)\)
where R is the web radius, \(r_0\) is the free zone radius. The diminishing returns of adding more radii (each costs silk) creates an optimal n that maximizes P/cost. For typical prey sizes (d = 2-5 mm), the optimum is n = 25-35, matching observed values.
4. Prey Capture Mechanics
When an insect hits an orb web, the web must absorb its kinetic energy while retaining the prey. The energy balance for a prey of mass m hitting the web at velocity v is:
\(\frac{1}{2}mv^2 = \underbrace{\sum_i \int_0^{\varepsilon_i} \sigma_i(\varepsilon) \cdot A_i \cdot L_i \, d\varepsilon}_{\text{silk stretching}} + \underbrace{W_{adhesion}}_{\text{glue work}} + \underbrace{W_{aerodynamic}}_{\text{air drag on web}}\)
The web acts as a graded-stiffness net:
- Radial threads (dragline silk): High stiffness (E ~ 10 GPa), moderate extensibility (30%). These arrest the prey by rapidly decelerating it. They act as the structural backbone.
- Spiral threads (flagelliform): Very low stiffness (E ~ 3 MPa), extreme extensibility (270%). These absorb energy through large deformation and keep the prey in contact with glue droplets.
- Glue droplets: Provide adhesion to prevent prey from bouncing off. The work of adhesion supplements the elastic energy absorption.
This mechanical division of labor is critical. If the entire web were made of stiff dragline silk, prey would bounce off. If entirely flagelliform, the web would not arrest prey fast enough. The combination provides both rapid deceleration and sustained energy absorption.
Interestingly, the web also exploits aerodynamic damping: the web's large surface area creates significant air resistance during deformation, dissipating ~50% of prey kinetic energy as heat. This is why web prey capture is more effective in still air than in wind.
Simulation: Orb Web Geometry and Optimization
Left: Complete orb web generated from the Archimedean spiral equation with 28 radii. Yellow dots represent glue droplets on the capture spiral. Center: Prey interception probability vs. number of radii for different prey sizes. Right: Material savings of a spiral versus concentric circles for the same capture area.
Click Run to execute the Python code
Code will be executed with Python 3 on the server
5. Glue Droplet Physics
The capture spiral is coated with aqueous glycoprotein glue produced by the aggregate glands. The glue is deposited as a uniform coating that rapidly breaks into regular droplets via Rayleigh-Plateau instability (the same physics that makes a water stream break into drops). Typical droplet parameters:
- Droplet diameter: 20-50 um
- Spacing: 20-100 um (depending on species and humidity)
- Composition: Glycoproteins + low-molecular-weight hygroscopic compounds (GABamide, KNO₃, choline)
- Viscosity: ~100 Pa·s at ambient conditions (optimized)
The adhesion of a glue droplet to a prey surface is well described by JKR (Johnson-Kendall-Roberts) contact mechanics:
\(F_{adhesion} = 3\pi \gamma R\)
where \(\gamma\) is the work of adhesion (surface energy, J/m²) and R is the contact radius. For a single droplet with R = 25 um and \(\gamma\) = 0.05 J/m², F < 12 uN. A typical prey contacts ~1000 droplets, giving total adhesion > 10 mN -- sufficient to hold a 100 mg insect against gravity.
The glue viscosity is critical and has been optimized by evolution:
- Too thin (< 1 Pa·s): Droplet spreads too quickly, no elastic restoring force, prey slides off.
- Too thick (> 10,000 Pa·s): Droplet does not deform on contact, prey bounces off before adhesion develops.
- Optimal (~100 Pa·s): Droplet deforms to maximize contact area while maintaining elastic restoring force. This is a viscoelastic material -- it flows on slow loading (prey struggling) but resists fast impact.
The hygroscopic compounds in the glue serve a dual purpose: they absorb atmospheric water to maintain glue hydration (preventing drying out), and they modulate viscosity. GABamide is particularly effective, absorbing water at humidities as low as 30% RH.
Simulation: Prey Capture and Glue Adhesion
Left: Energy balance comparing prey kinetic energy with web energy absorption capacity as a function of prey mass. Green region: web holds prey. Red region: prey breaks through. Center: JKR adhesion force vs. droplet contact radius for different prey cuticle types. Right: Glue viscosity optimization showing the tradeoff between retention time and contact area.
Click Run to execute the Python code
Code will be executed with Python 3 on the server
6. Web Recycling and Energy Budget
Most orb weavers rebuild their web daily, typically at dusk or dawn. Before building a new web, the spider eats the old web, ingesting the silk proteins and recycling the amino acids. This recycling is remarkably efficient:
\(\eta_{recycle} = \frac{\text{amino acids recovered}}{\text{amino acids in old web}} \approx 0.90\)
Approximately 90% of the amino acids from the old web are recovered and re-used. The remaining 10% is lost to incomplete digestion and metabolic costs of reprocessing.
The net energy cost of maintaining a web can be calculated:
- Total silk in web: ~0.5 mg (for an Araneus orb web)
- Energy content of silk: ~23 kJ/g (protein calorimetry)
- Gross web energy: 0.5 x 10⁻ x 23,000 = 11.5 J
- Net cost (10% loss): ~1.2 J per web cycle
- Daily metabolic budget: ~15 J for an 80 mg spider
- Web cost as fraction of budget: ~8% (consistent with Peakall's estimate of ~10%)
This is a remarkably low cost for such an effective prey capture device. Without recycling, the cost would be ~80% of the daily budget, making web construction energetically prohibitive. Web recycling is therefore not optional -- it is an essential part of the spider's energy economy.
7. Web Decorations (Stabilimenta)
Many orb weavers, particularly Argiope species, add conspicuous silk decorations called stabilimenta to their webs. These are bands or zigzag patterns of dense white silk (primarily aciniform) that reflect UV light strongly. Their function remains one of arachnology's most debated questions:
- Prey attraction hypothesis: UV-reflecting decorations attract pollinating insects (flies, bees) that use UV patterns to locate flowers. Evidence: decorated webs catch ~30% more prey in some studies.
- Bird avoidance hypothesis: Large, visible decorations warn birds of the web's presence, preventing destructive collisions. Evidence: birds are less likely to fly through decorated webs.
- Spider camouflage hypothesis: The bright decorations create a visual pattern that obscures the spider's outline, confusing predatory wasps. Evidence: spiders are harder to locate on decorated webs.
- Web stabilization hypothesis: The original (now largely discredited) hypothesis: stabilimenta mechanically strengthen the web. Evidence against: removal of stabilimenta does not affect web integrity.
Recent evidence supports a context-dependent explanation: stabilimenta serve different functions in different ecological settings. In high-predation environments, they may function as bird warnings; in prey-limited habitats, as lures. This is consistent with the observation that stabilimentum frequency varies with habitat and season.
8. Optimal Web Design: A Cost-Benefit Analysis
The spider must optimize web geometry to maximize prey capture while minimizing silk investment. The net energy gain from a web is:
\(E_{net} = \sum_{prey} P_i \cdot E_i - C_{silk} \cdot L_{total} - C_{metabolic}\)
where \(P_i\) is the probability of catching prey type i, \(E_i\) is the energy content of that prey, \(C_{silk}\) is the energy cost per unit length of silk, and \(L_{total}\) is total silk length.
Optimizing web radius R (with n radii and spiral spacing s held constant):
\(\frac{\partial E_{net}}{\partial R} = 0 \implies \frac{\partial}{\partial R}\left[\lambda \cdot \pi R^2\right] = \frac{\partial}{\partial R}\left[C_{silk}(n \cdot R + \pi R^2 / s)\right]\)
where \(\lambda\) is the prey flux density (prey per cm² per day). This gives:\(R^* = \frac{\lambda \cdot s}{C_{silk}}\left(1 - \frac{n \cdot s}{2\pi R^*}\right)^{-1}\). The optimal web radius increases with prey density and decreases with silk cost.
Field observations confirm this prediction: spiders in prey-rich environments build larger webs, and food-deprived spiders build smaller webs with wider mesh spacing (sacrificing small prey capture to reduce silk costs). The spider's behavioral algorithm approximates the mathematical optimum to within ~15%.
Module Summary
Archimedean Spiral
Capture spiral follows r = a + btheta; constant spacing; ~30% more material-efficient than concentric circles
Construction Algorithm
Frame -> radii -> temporary spiral (inside-out) -> capture spiral (outside-in, removing temporary); 20-30 min total
Optimal Radii
P = 1 - exp(-n*d/A); diminishing returns create optimum at n = 25-35 radii; matches observed values
Prey Capture
Energy balance: 1/2 mv^2 = silk stretching + glue adhesion + aerodynamic drag; graded stiffness (stiff radials + stretchy spirals)
Glue Droplets
JKR adhesion: F = 3*pi*gamma*R; viscosity optimized at ~100 Pa*s; hygroscopic compounds maintain hydration
Web Recycling
Spider eats old web: 90% amino acid recovery; net web cost ~8-10% of daily metabolic budget
References
- Vollrath, F. (1992). Spider webs and silks. Scientific American, 266(3), 70-76.
- Zschokke, S. & Vollrath, F. (1995). Web construction patterns in a range of orb-weaving spiders. European Journal of Entomology, 92, 523-541.
- Opell, B. D. & Hendricks, M. L. (2009). The role of granules within viscous capture threads of orb-weaving spiders. Journal of Experimental Biology, 212, 339-345.
- Sahni, V., Blackledge, T. A., & Dhinojwala, A. (2010). Viscoelastic solids explain spider web stickiness. Nature Communications, 1, 19.
- Cranford, S. W., Tarakanova, A., Pugno, N. M., & Buehler, M. J. (2012). Nonlinear material behaviour of spider silk yields robust webs. Nature, 482, 72-76.
- Herberstein, M. E. & Tso, I. M. (2011). Spider webs: behavior, function and evolution. In Spider Behaviour, Cambridge University Press.
- Peakall, D. B. (1971). Conservation of web proteins in the spider Araneus diadematus. Journal of Experimental Zoology, 176, 257-264.
- Sensenig, A. T., Agnarsson, I., & Blackledge, T. A. (2010). Behavioural and biomaterial coevolution in spider orb webs. Journal of Evolutionary Biology, 23, 1839-1856.