Hello,
I have a question about the EDEM Contact API. In the Contact API’s "calculateForce" function, I see that NCalcForceTypesV3_0_0::SContactResult& contactResults allows us to add a Bond force. For the forces computed here, are they applied at each particle’s center (center of mass or geometric center), or at the contact point?
For example, inside the calculateForce function, if I calculate a force and update normalForce and tangentialForce, like below, are those forces applied at the particle center (as in the first figure), or are they applied at the contact point (as in the second figure), thereby generating torque?
Code ;
contactResults.normalForce += F_bond_n;
contactResults.tangentialForce += F_bond_t;
Additionally, if the forces are applied at the contact point (the second case), is there a way to have them applied at the particle center as in the first case?
Thank you.