Replies: 1 comment 1 reply
-
Yes, you can remove particles using And yes, you can start a particle later by setting its And yes, you can remove a particle after a certain time by adding e.g. an def Aging(particle, fieldset, time):
particle.age += particle.dt
if particle.age > max_age:
particle.delete() |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Let me know if this feature exists; I think it does not?
It is possible to release particles later than the starting time of the fieldset, by using the 'time' parameters in a ParticleSet. If possible, I would like to set an end time for the particles as well.
Beta Was this translation helpful? Give feedback.
All reactions