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
In our current temporary approach for particle-only simulations, we enable OPT__FREEZE_FLUID and assign a negligibly small density to gas/FDM to effectively ignore their contribution to gravity. However, this method is inefficient as it is memory-intensive (requiring allocation of all gas/FDM variables), storage-heavy (since all gas/FDM variables are still saved to disk), and time-consuming (because even with OPT__FREEZE_FLUID, gas/FDM is still evolved with a zero time-step). This feature request seeks to address these inefficiencies by implementing proper support for genuine particle-only simulations.
Tasks
Only need to allocate the DENS field in the fluid array
Description
In our current temporary approach for particle-only simulations, we enable
OPT__FREEZE_FLUID
and assign a negligibly small density to gas/FDM to effectively ignore their contribution to gravity. However, this method is inefficient as it is memory-intensive (requiring allocation of all gas/FDM variables), storage-heavy (since all gas/FDM variables are still saved to disk), and time-consuming (because even withOPT__FREEZE_FLUID
, gas/FDM is still evolved with a zero time-step). This feature request seeks to address these inefficiencies by implementing proper support for genuine particle-only simulations.Tasks
DENS
field in thefluid
arrayfluid
arrayRelated PRs
The text was updated successfully, but these errors were encountered: