i have spheroids of which “fix langevin” is applied to. i also enabled collisions via “pair_style gayberne”.
when my spheroids eventually collide, the translational displacement from the repulsion due to the collision is damped by the background implicit solvent via fix langevin. however, since i did not enable “angmom” keyword, the spheroid rotations/spins due to the collision seem to be frictionless.
is there a way for me to make the rotational part experience the same viscosity, without being thermostatted by fix langevin via the angmom keyword? i just want translational brownian motion while the rotations experience the same friction/drag but no fluctuations. in fix langevin documentation, i just want the rotational part to experience F=F_c + F_f, not including F_r
The way I see it, you will need to do some C++ programming.
The equivalent of fix langevin (for point particles) without the random force is fix viscous.
So you would need to implement a fix vicous/sphere that only adds friction to rotational motion of extended particles. You can use fix viscous and fix langevin as inspiration (best start from fix viscous and replace the damping of the point particles with damping of rotation as implemented by fix langevin). Make sure you include the checks for atom properties and write a documentation file or extend the one for fix viscous accordingly.
It looks like there exists a fix viscous/sphere, which you should be able to just add to your simulation to achieve the desired effect.
Note that if you are damping the rotational motion with no corresponding random thermal input, you will be continually cooling the particles’ rotational DoFs while the thermostat attempts to continually heat up the particles’ translational DoFs in response. I would imagine this turning into an eventual flying ice cube, which would be a matter of theoretical correctness or wrongness rather than software implementation.