Skip to main content
Call Eric:863-698-8266
CURRYCONTROLS.COMControls & Automation Knowledge Hub
ReferenceWastewaterLevelLift StationsControl

Wet Well Level Control

The measurement that runs a lift station: choosing setpoints, protecting the pumps, validating the signal, and the failures that flood a station.

9 min readUpdated Aug 30, 2026Published Jun 2, 2026By Eric Sullivan

The short answer

Wet Well Level Control

Wet well level control uses a continuous level measurement to start and stop pumps at defined setpoints. The band between start and stop must be wide enough to keep pump starts within the motor rating and narrow enough to avoid excessive detention time, which produces hydrogen sulfide. Signal validation and independent float backup are what keep a plausible-looking bad reading from causing an overflow.

Key points

  • The start-to-stop band trades pump starts against wet well detention time.
  • Validate the level signal: out of range, frozen, and rate-of-change checks all catch real failures.
  • A held last-good value must be visibly marked, never presented as live.
  • Independent floats are the backup that does not share a failure mode with the transmitter.
  • Trending level against pump run status diagnoses most station problems in under a minute.

The band

Everything about wet well control follows from the vertical distance between where pumps start and where they stop. That band determines the volume moved per cycle, which determines run length, which determines both starts per hour and detention time.

Cycle_Volume = Wet_Well_Area × (Start_Level − Stop_Level)

  • Wet_Well_Area — plan area of the wet well
  • Start_Level, Stop_Level — the control setpoints
  • Cycle_Volume — volume moved per pumping cycle, ignoring inflow during the run

Run time is roughly that volume divided by the net pumping rate, which is pump capacity minus inflow. The worst case for short cycling is low inflow, because the well fills slowly but the pump empties the band just as fast as ever. The worst case for detention is also low inflow, because the well sits full between cycles. This is why setpoints should be checked against the lowest expected flow, typically the early morning minimum, rather than against design flow.

Signal validation

The dangerous level failure is not one that reads zero. It is one that reads a believable number that happens to be wrong. Three checks in the controller catch most of these.

Range check
Compare the raw analog value against the NAMUR fault thresholds. Below 3.6 mA or above 21 mA is a device fault, not a level. Below the physical bottom or above the physical top of the well is also impossible and should be flagged.
Frozen value check
If the level has not changed by more than a small tolerance for longer than any real operating condition would allow, the reading is stale. A wet well level that has not moved in thirty minutes while a pump is running is not a level, it is a stuck reading.
Rate of change check
A wet well cannot change several feet in one scan. A jump beyond a physically possible rate is a signal fault or interference, and should be rejected rather than acted on.
Validation logic in outline
Raw_Fault    = Raw < Count_3p6mA  OR  Raw > Count_21mA
Range_Fault  = Level < Well_Bottom  OR  Level > Well_Top
Frozen_Fault = |Level - Level_30min_ago| < 0.05 ft  AND  Any_Pump_Running
Rate_Fault   = |Level - Level_last_scan| > Max_Physical_Rate

Level_Bad = Raw_Fault OR Range_Fault OR Frozen_Fault OR Rate_Fault

IF Level_Bad THEN
    Level_Used = Last_Good_Level      // held, and marked as held
    Control_Mode = Float_Backup
    Alarm "Wet well level signal fault"
ELSE
    Level_Used = Level
    Last_Good_Level = Level

What to do when the level is bad

The correct fallback depends on the station, and it should be a documented decision in the control narrative rather than whatever the programmer chose that day.

  1. 01Fall back to float control. If the station has start and stop floats, use them. The station runs crudely but it runs.
  2. 02If only a high level float exists, use it to start pumps and run for a fixed timed period, then stop and wait for the float again.
  3. 03Alarm immediately and distinctly. "Level signal fault" must not be buried among level alarms.
  4. 04Never continue controlling on a value you have identified as invalid.
  5. 05Never simply stop pumping and wait for someone to notice. That guarantees an overflow.

Variable speed level control

With drives, the station can hold a level rather than cycling between two. A PID loop modulates pump speed to keep the well near a target, adding the second pump when the first reaches maximum speed.

Two constraints matter. Minimum speed must stay above the point where the pump cannot overcome static head, or it spins without moving water. And a station that holds a constant level has constant detention rather than a full-to-empty cycle, so scour velocity in the force main has to be considered separately, often with a periodic forced high-speed run.

Reading a level trend

Wet well level trended against pump run status is the single most useful diagnostic display a utility has. The shape tells you what is wrong before anyone drives to the site.

Trend shapeMeans
Sawtooth, consistent slope on both sidesNormal operation
Level rises while a pump shows runningRag bound, air locked, closed valve, or wrong rotation
Very short cyclesLevel band too narrow for current inflow
Slow fill, fast empty, long flat topExcessive detention; expect odor and corrosion complaints
Flat line with pumps cyclingLevel signal frozen; the station is running on something else
Steps rather than a smooth slopePoor analog resolution, or a noisy signal being filtered heavily
Rising through the high level with both pumps runningInflow exceeds station capacity, or both pumps are impaired

Frequently asked questions

How wide should the level band be?
Wide enough that at the lowest expected inflow the pump still runs long enough to satisfy minimum run time and stay within its starts-per-hour rating, and narrow enough that detention time at that same low flow does not turn the well septic. Calculate both, then use the widest band that satisfies the detention limit.
What level technology is best for a wet well?
Non-contact radar is the usual answer for raw wastewater because nothing touches the liquid and it is unaffected by vapor and temperature. Submersible pressure transducers are common and less expensive but sit in the liquid and foul. Ultrasonic drifts with temperature and struggles with vapor and foam.
Do I still need floats with a good level transmitter?
Yes. The floats are not there because the transmitter is unreliable. They are there because they fail independently. A single measurement with a single path to the pumps has no fallback when it reports a wrong but plausible value.
Why does my station short cycle at night?
Because inflow is at its lowest, so the well takes a long time to fill and the pump empties the band just as fast as always. The run is short, and if the band is narrow the pump exceeds its starts-per-hour rating. Widen the band, subject to the detention time limit.

Direct contact

Have a controls question?

Reach Eric Sullivan directly about anything on this site, a controls or automation topic, or one of his personal projects.