Here's a complete, self-contained HTML design note answering your winch question, sized to your specific numbers (3 corners × 2–3 kip, 3 ft+ of tide, silent operation, per-leg power redundancy): ```html
Seastead Project · Engineering Note
Slow, quiet, computer-controlled line adjustment at 2,000–3,000 lbf per corner, with 3 ft of travel now and room to grow into bigger tidal ranges.
| Parameter | Value | Driver |
|---|---|---|
| Working tension | 2,000–3,000 lbf per corner | ~1 ft pull-down target; pair of helical screws per corner shares the uplift |
| Travel (cable paid in/out) | ≥ 3 ft now; ideally 10–15 ft for future big-tide sites | Tidal range + pull-down + trim + re-termination |
| Line speed | Tide-following: ≤ 0.5 in/min (even a 10 ft tide). Setup/recovery: 2–5 ft/min | Semi-diurnal tide ≈ 12.42 h sinusoid; max rate ≈ πR/T |
| Noise | Near-silent — people sleep on the platform; winch is structure-mounted | Liveaboard comfort |
| Control | Computerized, closed-loop on tension; never allow slack | Tension legs must stay taut through tide + waves |
| Power / failure | Must hold tension with zero power; per-leg independent supply | Matches your 3-inverter / 3-battery-bank architecture |
Yes — a slow-speed, self-locking worm-gear drum winch (a small marine "constant-tension mooring winch," the same family used for ship-to-shore gangways), driven by a small brushless DC gearmotor through a worm + planetary reduction, spooling single-layer Dyneema on a large drum, with an in-line load pin for closed-loop tension control.
The single most important feature is the self-locking worm gear: it holds 3,000 lbf with zero power, zero brake, and zero drift, and it is naturally silent at a fraction of an RPM. Pair it with a short elastomer pendant (Seaflex-type) between winch and anchors so the winch only has to follow the slow tide — waves are absorbed passively, and tension survives a power outage.
One winch per corner (3 total). Winch sits on the deck edge / walkway bracket — not on the living-space wall — on elastomer isolation mounts, powered from that leg's own inverter, matching your triple-redundant power architecture.
You stated ~27,500 lbf displacement and "1 ft ≈ 1/7 of buoyancy" → waterplane ≈ 3,900 lbf/ft total, i.e. ~1,300 lbf per corner per foot. So:
Either works — just pick the number deliberately. Also confirm your helical screws' uplift rating (helical anchors are usually rated for tension, but verify soil assumptions per site).
The trick to silence is to rarely move. Tide is 99% predictable, so feed it forward from tide tables plus a submersed pressure sensor, and let the load pin only trim:
# Per-corner tension controller (runs on that leg's controller / inverter)
TARGET = 1300 lbf # per corner for ~1 ft pull-down (see sizing note)
DEADBAND = 400 lbf # hysteresis band — waves must NOT trigger motion
DWELL = 20 min # drift must persist before the winch moves
RATE_MAX = 6 in/min # hard software limit (tide uses far less)
RAMP = 60 s # soft start / soft stop
every 1 s:
T = load_pin()
sched = tide_feedforward() # tide table + pressure sensor
if T < TARGET - DEADBAND and persists(DWELL): creep(+sched) # tide falling → winch in
if T > TARGET + DEADBAND and persists(DWELL): creep(-sched) # tide rising → pay out
if T < 500: alarm(); creep(+2 in/min) # slack event — correct now, log it
if T > 6000: alarm(); stop(); drum_lock() # overload — mechanical fuse territory
Put a 20–40 ft elastomer pendant (Seaflex-type units, or rubber mooring donuts in series) between the winch line and the delta plate:
This is why the control loop can be lazy: the winch follows the tide, the pendant follows the waves.
| Type | Quiet | Holds w/o power | Verdict |
|---|---|---|---|
| Self-locking worm-drive drum winch + load pin | Excellent | Yes (inherently) | ★ Recommended — silent, fail-safe, cheap, exactly matched speeds |
| Harmonic or cycloidal drive winch | Excellent | Cycloidal mostly; harmonic needs brake | Great precision, pricier — good upgrade path |
| COTS constant-tension gangway winch (electric) | Good | Usually brake-held | Purpose-built for exactly this job; verify noise & integration |
| Pneumatic winch (air motor) | Fair (exhaust hiss; muffle it) | No | Elegant constant tension (stall = pressure setting), but compressor noise + new system — skip |
| Hydraulic winch | Poor (pump) | No | Overkill; pump noise and maintenance on a liveaboard |
| Planetary drum winch (no worm) | OK | Backdrivable → brake needed | Brake engage/release clunks — reject |
| Linear (ball-screw) actuator | Good | Some | 3+ ft travel = huge actuator; only suits a short-trim 2:1 purchase |
| Capstan / traction winch | Good | No | For hundreds of feet of cable — overkill here |
| Counterweight tensioner | Silent | Yes | Perfect constant tension, but 3 × 3,000 lb of deadweight destroys your weight budget |
| Turnbuckle (manual) | Silent | Yes | Keep one per corner as the storm/emergency back-up — free and silent |
| Elastic mooring alone | Silent | Yes | Handles ≤ ~3 ft tides alone; no automation for big tides — use as the pendant, not the system |
Avoid: anchor windlasses, wakeboard/boat drums, and trailer winches — spur gears, loud freewheels/sprag clutches, and brakes designed for shock loads, not creep.