Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calculation of acceleration
09-25-2012, 02:53 PM,
#2
RE: Calculation of acceleration
(09-25-2012, 09:01 AM)kidice Wrote: Hi everybody,

i'm trying to calculate the acceleration of the user car in real time. I already tried the approach documented in this thread, which says to calculate the acceleration in the updateAction using velocity_delta / dt.

using body->getDeltaLinearVelocity() for the delta_velocity returns me always vector(0,0,0). Does anyone have an hint how to get delta_velocity or any other hint how to calculate the acceleration of a car in real time?

thank you in advance!
getDeltaLinearVelocity() is a bullet internal method used in the constraint solver. You have to calculate the acceleration yourself from current and previous velocity.
new_velocity = body->getLinearVelocity();
acceleration = (new_velocity - old_velocity) / dt;
old_velocity = new_velocity;
Reply


Messages In This Thread
Calculation of acceleration - by kidice - 09-25-2012, 09:01 AM
RE: Calculation of acceleration - by NaN - 09-25-2012, 02:53 PM
RE: Calculation of acceleration - by kidice - 09-26-2012, 03:12 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)