Replies: 1 comment
-
I've found another discussion which answers my question #1151 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have a repeating gridded release of particles set up to happen every hour and I want to run each particle for 1 time step and then stop. My current execute script is the following:
pset.execute(AdvectionRK4 + kernels, runtime=timedelta(hours=1), dt=timedelta(minutes=5), recovery={ErrorCode.ErrorOutOfBounds: DeleteParticle}, output_file=output_file)
Right now though, only the first hour particles are carried forward one time step and the other particles only have their initial times recorded in the output file. Is it possible to have all particles only be advected for one time step or do the early particles need to be carried forward so that later particle releases also can be advected?
Beta Was this translation helpful? Give feedback.
All reactions