Detect push-off deficit (reduced ankle A2 power / plantarflexor output)
Source:R/gait-pathology.R
detectPushOffDeficit.RdReduced ankle plantarflexor push-off is quantified from the peak positive ankle power in late stance (the A2 burst; normal \(\approx 3-4\) W/kg) or, equivalently, the peak late-stance plantarflexor moment.
Usage
detectPushOffDeficit(
ankle_power,
window = c(40, 62),
normal_peak = 3.5,
threshold = 2,
metric_name = "peak_ankle_A2_power"
)Arguments
- ankle_power
Ankle joint power over one gait cycle. Interpreted as W/kg (or the peak ankle plantarflexor moment if
metric_nameis set).- window
Percentage window of late stance / push-off (default
c(40, 62)).- normal_peak
Normal peak A2 power (default 3.5 W/kg).
- threshold
Peak below which a deficit is flagged (default 2.0).
- metric_name
Label for the metric (default
"peak_ankle_A2_power").