DeadZone Block
Output is zero within a specified band around zero; linear outside the band
Open DeadZone in BlockWerk →# Dead Zone Block
Description
Implements a dead zone (dead band) nonlinearity. The output is zero when the input is within the specified band. Outside the band, the output is the input shifted by the band limit, maintaining continuity.
Mathematical Model
- If input > upperLimit: output = input - upperLimit
- If input < lowerLimit: output = input - lowerLimit
- Otherwise: output = 0
Parameters
lowerLimit / upperLimit
Define the dead band boundaries. Within this range, output is zero.
Remarks
- Models mechanical backlash, sensor insensitivity, and friction zones.
- Output is continuous (no jumps at the boundaries).
See Also
- Saturation: Clips output at limits
- Relay: Switches between discrete values