Combines a fast-velocity stretch (the catch angle R1) and a slow-velocity
stretch (the full passive range R2) into the Tardieu dynamic component
R2 - R1 - the velocity-dependent (spastic) part of the range, distinct from
a fixed contracture.
Arguments
- fast
A
tardieuStretch()result (fast stretch), or a raw fast-stretch angle trace (then scored withonset = "velocity").- slow
A
tardieuStretch()result or a raw slow-stretch angle trace; R2 is its end-range angle (rom_max/max(angle)).- sampling_rate
Required only when
fastis a raw angle trace.- ...
Passed to
tardieuStretch()whenfastis raw.
Examples
fs <- 200; t <- seq(0, 0.6, by = 1 / fs)
fast <- ifelse(t <= 0.25, 25 * t / 0.25, 25 + 5 * (t - 0.25) / 0.35)
slow <- 40 * t / 0.6
tardieuScore(tardieuStretch(fast, sampling_rate = fs, onset = "velocity"), slow)
#> Tardieu score: R1 = 25.1 deg, R2 = 40.0 deg, dynamic (R2-R1) = 14.9 deg