I have a sphere moving forward with v (pre collision) = v1i
A second sphere colliding with the first one has its own pre collision velocity = v2i
The collision should be not totally inelastic (like, you know, the case of two human bodies colliding each other), but for my purpose I think I can consider the coefficient of restitution = 0
Using the formula
$$ I = mv_f - mv_0$$
and replacing I
with F * (delta)t
I woul like to know how can I compute that F
, since I don't know what will be v(post collision)
because it is my final unknown to compute. And I think that force should be computed with the relative velocity of the two spheres, but I have no idea at the moment on how to proceed. Any suggestion will be strongly appreciated.
UPDATE
Thank you for your suggestion ja72.
So in that case can I write something like this?
$$ F *\Delta t = \frac{ (\epsilon+1) \left(v_2-v_1\right)}{\frac{1}{m_1}+\frac{1}{m_2}} $$
But in this case, how am I supposed to evaluate final velocity of the two spheres?