[Physics] Finding normal and tangential velocity and acceleration for motion along a 3D curve

accelerationcoordinate systemshomework-and-exerciseskinematicsvelocity

Basically, I have a major problem on my hands.

As part of an assignment, I have been given a set of 3D points, as well as the time between them, and nothing else, and I'm supposed to find the tangential and normal velocities and accelerations between each point.

Now, I know that (tangential) velocity can be easily calculated simply by taking the differential of position over time, and that (tangential) acceleration can also be easily calculated by taking the differential of (tangential) velocity over time.

However, finding the normal velocities and accelerations is where I get stuck. I can find absolutely no information on how a normal velocity is calculated, except for the fact that any velocity vector can be broken down into its tangential and normal components.

However, since by calculating the (tangential) velocities by taking the differential of position over time, that means that the velocity vector IS the tangential velocity vector. Does that mean that the normal velocity for each and every point is just 0? That doesn't sound right to me.

Regarding normal acceleration, I have no idea how it's supposed to work in 3D, because we need the radius of a circle to be able to calculate that, but how do I calculate the radius of a sphere in 3D, given only two points?

Any help on this problem is greatly appreciated. This thing's driving me insane.

Best Answer

Let's say you have a prescribed path parametrized as $\vec{r}(\alpha)$ for the position vector.

  • The velocity vector is decomposed as $$ \vec{v}(\alpha,\dot{\alpha}) = \dfrac{\partial \vec{r}(\alpha)}{\partial \alpha} \dot{\alpha}$$
  • The speed along the tangential direction is $$ v(\alpha,\dot{\alpha}) = \lvert d\dfrac{\partial \vec{r}(\alpha)}{\partial \alpha}\rvert \dot{\alpha} $$
  • The tangential direction is thus $$\hat{e} = \dfrac{\vec{v}}{v} = \dfrac{ \dfrac{\partial \vec{r}(\alpha)}{\partial \alpha} }{\lvert\dfrac{\partial \vec{r}(\alpha)}{\partial \alpha}\rvert } $$
  • The acceleration vector is decomposed as $$ \vec{a}(\alpha,\dot{\alpha},\ddot{\alpha}) = \dfrac{\partial \vec{v}}{\partial \alpha} \dot{\alpha}+\dfrac{\partial \vec{v}}{\partial \dot{\alpha}} \ddot{\alpha}$$
  • The curvature is $$ {\kappa} = \dfrac{1}{\rho} = \dfrac{ \lvert \vec{v} \times \vec{a} \rvert}{ \lvert \vec{v} \rvert^3} $$
  • The acceleration along the tangential direction is $$a_T = \hat{e} \cdot \vec{a} $$
  • The acceleration towards the center of curvature is $$a_C = \dfrac{v^2}{\rho} = \vec{a} - a_T\; \hat{e}$$

I think this should be sufficient to deduce all the components you need.

Example

A particle is moving with constant speed along a helix with radius $R$ and pitch $h$.

  • Position $\vec{r}(\alpha) = \begin{pmatrix} R \cos \alpha & R \sin \alpha & h \alpha \end{pmatrix}$
  • Velocity $\vec{v}(\alpha,\dot{\alpha}) = \begin{pmatrix}-\dot{\alpha} R \sin \alpha & \dot{\alpha} R \cos\alpha & \dot{\alpha}\,h \end{pmatrix}$
  • If the speed is $v$ then $\dot{\alpha} = \dfrac{v}{\sqrt{R^2+h^2}}$
  • Similarly $\ddot{\alpha} = \dfrac{\dot{v}}{\sqrt{R^2+h^2}}$
  • Acceleration $\vec{a} = \begin{pmatrix} -\dfrac{R v^2 \cos \alpha}{R^2+h^2}-\dfrac{R \dot{v} \sin \alpha}{\sqrt{R^2+h^2}} & -\dfrac{R v^2 \sin \alpha}{R^2+h^2}+\dfrac{R \dot{v} \cos \alpha}{\sqrt{R^2+h^2}} & \dfrac{\dot{v} h}{\sqrt{R^2+h^2}}\end{pmatrix}$
  • Curvature $\kappa = \dfrac{R}{R^2+h^2}$