Hello,
I’m running a uniaxial tension simulation in LAMMPS where the sample contains an internal crack (created by deleting atoms). I’ve divided the system into three groups:
- Mobile group: This is the main deforming region, which includes the crack. I applied a velocity ramp in the y-direction to this group.
- Lower boundary group: This group is fixed in space.
- Upper boundary group: This group is given a constant velocity in the y-direction to apply the tension.
I’m using fix nvt
to maintain temperature in the mobile group. Since I’m applying a velocity ramp, I learned that I should use compute temp/ramp
and then apply fix_modify
to avoid including the bias in the temperature calculation.
My main question is:
- Should I apply any thermostat (like
fix nvt
) to the upper and lower boundary groups?
I’m currently assuming that only the mobile group should be thermostat-controlled, and the upper/lower boundaries should either be fixed or moved without temperature control.
Any clarification or best practices would be appreciated. Thanks in advance!