Page 1 of 1

Baltman Verlet question

Posted: Sun Jun 23, 2013 7:04 am
by SinisterMephisto
Hi guys I know every time Verlet pops up it gets shut down on this forum but please bear with me.

For reasons I don't want to explain i need to figure out what the author of this paper was thinking when he wrote the following equation 9.5 in this Paper.
I know he is trying to find the tangent at first but later on he seems to be adding scalars to get vectors as well as magically creating variables

Code: Select all

Va_newParallel = -elast * Vector.Dot(VaRel, normal); //This supposedly returns a vector
va_newPerp = vFriction * vPerp; //i am guessing vFriction is the coefficient of friction

vaNew = Va_newParallel +va_newPerp ;