Displacement at any given moment given total displacement, time and velocity

248 Views Asked by At

I want to compute the displacement of an object at a certain moment in time, given the values for:

  • Initial velocity vStart (m/s)
  • Target velocity vEnd (m/s)
  • Total distance traveled sTotal (meters)
  • Total duration tTotal (seconds)

At any given time between 0 and tTotal seconds I want to compute the displacement at that moment.

For example, a car travels at 50 m/s, and wants to decelerate to 35 m/s over 200 meters, and knows this will take 15 seconds. I want to compute the car's displacement after e.g. 4 seconds from when he starts decelerating, considering the case where the deceleration is constant.

How would I do this?

1

There are 1 best solutions below

3
On BEST ANSWER

One of the more common kinematic formulas is the following. $$\Delta x = at^2 + v_1t$$ For clarification, $\Delta x$ is displacement, $a$ is acceleration, $t$ is time, and $v_1$ is the initial velocity.

In the specific question you gave as an example, we aren’t initially given the acceleration, so there are two variables. To find acceleration, you can use the following formula. $$(v_2)^2-(v_1)^2 = 2a\Delta x$$ We are given the following information. $$v_1 = 50 \frac{m}{s}$$ $$v_2 = 35 \frac{m}{s}$$ $$\Delta x = 200 m$$ Now we can solve for $a$. $$35^2-50^2 = 2a(200)$$ $$400a = 1225-2500$$ $$a = -\frac{1275}{400}$$ $$a = -3.1875\frac{m}{s^2}$$ Now, back to the original equation. Since we’ve found $a$, the only variable remaining is $\Delta x$. $$\Delta x = at^2+v_1t$$ Here is the information we have (now that we’ve found $a$). $$a = -3.1875 \frac{m}{s^2}$$ $$t = 4 s$$ $$v_1 = 50 \frac{m}{s}$$ Plug in the values. $$\Delta x = (-3.1875)\cdot(4)^2+50(4)$$ $$\boxed{\Delta x = 149 m}$$ Hopefully this isn’t too long of an answer. Just wanted to keep it as clear as possible.