I have trouble finding out how much i have to change the velocity of a object if a force in newton is applied to that object:
What i have:
no gravity or other forces
deltaTime - Time in seconds since the last tick
v - the velocity of the object in units/second
m - the mass of the object in kg
d - the direction of the applied force
What i want to do:
for the time of one tick (deltaTime) i want to apply a force of x Newton
in the direction d
to the object. Actually i want to change the velocity of the object accordingly.
What i did:
I tried to come from 1 N = 1 kg * m/s2
to the change in velocity but i am a bit lost since i can`t figure out how to verify my assumptions.
Update
What i actually need is to now the acceleration caused by the force during deltaTime
so i can calculate my new velocity by adding the acceleration like this:
newVelocity = velocity + accelerationCausedByTheForceInNewton