You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to use fix atomify all atomify that will do a callback function to JS whenever a timestep/minimization step is finished so we can synchronize rendering.
But LAMMPS freezes the GUI (naturally), so we want to move the LAMMPS work to another thread. This has (at least) two benefits:
Faster code (since we actually use two threads)
naturally solves the GUI hanging problem
See example of web workers. Shouldn't be very hard. Synchronization is performed with post events where we can send a JSON object.
The text was updated successfully, but these errors were encountered:
We want to use
fix atomify all atomify
that will do a callback function to JS whenever a timestep/minimization step is finished so we can synchronize rendering.But LAMMPS freezes the GUI (naturally), so we want to move the LAMMPS work to another thread. This has (at least) two benefits:
See example of web workers. Shouldn't be very hard. Synchronization is performed with post events where we can send a JSON object.
The text was updated successfully, but these errors were encountered: