damosuz
- 72
- 0
A motion sensor gives the position of an object at times separated by Δt. DataStudio then calculates velocity by this method:
v(t) = (x(t + 3Δt/2) - x(t - 3Δt/2)) / 3Δt
I wonder why it doesn't do it like this: v(t) = (x(t + Δt/2) - x(t - Δt/2)) / Δt
I know it gives the same v if acceleration is constant since in both cases it corresponds to average speed in the middle of the interval, but if acceleration is not constant (e.g. mass-spring) it must give a value for v that is not as accurate.
Thank you.
v(t) = (x(t + 3Δt/2) - x(t - 3Δt/2)) / 3Δt
I wonder why it doesn't do it like this: v(t) = (x(t + Δt/2) - x(t - Δt/2)) / Δt
I know it gives the same v if acceleration is constant since in both cases it corresponds to average speed in the middle of the interval, but if acceleration is not constant (e.g. mass-spring) it must give a value for v that is not as accurate.
Thank you.