-
Dear all, Im having an issue that when generating the analysis can bring me lost of errors. Im seeding the particle with these seeding scheme:
and this is the run This as my second run, was to compare by adding double of particles (from 9 to 18), and because of memory problems I changed the Now the results are making me crazy, because after lots and lots of runs, is the first time I see this seeding behaviour. Do you have an idea of what could be happening, and such a drastic change? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
Hi, The apparent seeding locations here (green dots) are a bit misleading. This is not the actual seeding locations, but rather the locations of elements at their first output time step. So although this looks wrong, the calculations are correct, and elements are released at the correct time and location. Note that if you specify seeding time as |
Beta Was this translation helpful? Give feedback.
-
The actual seeding locations are not stored when seeding over a time interval as here, but you can get this from your script after seeding:
Then you could e.g. save this to a separate netCDF-file, if necessary. Yes, I believe you can do seeding like that. The seeding is quite fast, so you will probably not save a lot of time, but script becomes simpler. |
Beta Was this translation helpful? Give feedback.
-
I cannot see why evenly seeding should take more time than seeding in groups. Anyway, there was in fact a bug leading to your crash: this occurs in the rare case that there are unseeded elements (here since run is slightly shorter than your seeding interval) a the end of the simulation, and This is now fixed, so that it shall hopefully work after an update. (Anyway it would be better to run simulation until all elements are seeded) |
Beta Was this translation helpful? Give feedback.
-
Did you update to the latest version ( In any case, to avoid unseeded elements at the end, you should make sure that the seeding duration is shorter than the simulation duration. |
Beta Was this translation helpful? Give feedback.
I cannot see why evenly seeding should take more time than seeding in groups.
Anyway, there was in fact a bug leading to your crash: this occurs in the rare case that there are unseeded elements (here since run is slightly shorter than your seeding interval) a the end of the simulation, and
time_step_interval
is not fulfilled at the last time step.This is now fixed, so that it shall hopefully work after an update. (Anyway it would be better to run simulation until all elements are seeded)