Below is a self‑contained HTML page that you can paste into any website (or save as a .html file). It explains the physics of bridge‑deck clearance for multihulls, gives the statistical formulas that let you estimate the **probability of pounding** for any sea‑state, and works through a concrete example for the Caribbean 7‑ft wave case you described. All the math is rendered with MathJax, and a tiny JavaScript calculator is included so you can adjust the inputs and see the required clearance instantly. ```html
This page gives designers of catamarans, tri‑marans and similar floating platforms a quick reference for:
For a multihull the clearance \(C\) is the vertical distance from the still‑water level (SWL) to the lowest point of the bridge deck. When a wave crest rises above this level the deck can be “pounded” – a sudden impact that can damage structure, equipment and comfort.
We work with the significant wave height \(H_s\) (the average of the highest one‑third of waves in a sea state). For a given sea state the individual crest heights \(C_w\) are well described by a Rayleigh distribution if the spectrum is narrow‑band (typical for open‑ocean wind seas). In that case
where \(\sigma_c\) is the standard deviation of the crest‑height process.
Pounding occurs whenever a crest exceeds the clearance \(C\). From the Rayleigh law
Assuming a stationary sea state, the number of waves per unit time is
where \(t\) is the time interval (seconds) and \(T_z\) is the mean zero‑crossing period (seconds). The expected number of poundings in that interval is simply
For a target allowable pounding frequency (e.g. “once per day”) you can solve (1)–(2) for the required clearance:
The simple Rayleigh model assumes a fixed water surface. In reality the platform moves with the sea. The relative motion between the deck and the wave crest is
Given data
| Parameter | Value |
|---|---|
| Significant wave height \(H_s\) | 7 ft |
| Mean zero‑crossing period \(T_z\) | 6 s (typical Caribbean sea) |
| Maximum allowed poundings | 1 per day |
| Dynamic factor (recommended) | 1.3 |
Step 1 – Waves per day
\[ N_{\text{waves/day}} = \frac{86400\;\text{s}}{6\;\text{s}} = 14400 \]Step 2 – Target per‑wave probability
\[ P_{\text{target}} = \frac{1}{14400}=6.94\times10^{-5} \]Step 3 – Required clearance from (3)
\[ C_{\text{req}} = \frac{7}{4}\sqrt{\frac{-\ln(6.94\times10^{-5})}{2}} = 1.75\;\text{ft}\times\sqrt{\frac{9.567}{2}} = 1.75\;\text{ft}\times 2.19 \approx 3.8\;\text{ft} \]Step 4 – Apply dynamic factor (4)
\[ C_{\text{design}} = 1.3 \times 3.8\;\text{ft} \approx 5.0\;\text{ft} \]So a deck that sits ≈5 ft above the still‑water line should keep the probability of pounding below once per day in a 7‑ft \(H_s\) sea state. Rounding up to the next practical value (e.g., 5 ft = 1.5 m) gives a comfortable safety margin.
Enter your own parameters to see the required clearance. The calculator uses the same formulas shown above.
If you prefer a simple guideline (with less exactness), many multihull designers use:
For the 7‑ft sea state this would give 2.1 – 3.5 ft, which aligns well with the more rigorous 3.8‑ft static value derived above.
Feel free to edit the HTML, add your own branding, or embed the calculator in a larger site. The JavaScript function calcClearance() can be copied into any page.