How do I add more than one dynamic bond while my simulation runs? #1890
-
I am trying to add dynamic bonds using the
I created a
My issue is, I am only able to add bonds at the first trigger. I checked if my Am I missing something here? I also tried using UPDATE: it seems I needed to add FOLLOW-UP: I still don't know the difference between |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You should use an |
Beta Was this translation helpful? Give feedback.
Writers
andUpdaters
execute at different points during theSimulation.run
loop: See https://hoomd-blue.readthedocs.io/en/v4.8.2/package-hoomd.html#hoomd.Simulation.run for details.You should use an
Updater
when you modify system state andWriter
when you read the system state and write results to an output (e.g. file or stream).