parcels icon indicating copy to clipboard operation
parcels copied to clipboard

Main code for Parcels (Probably A Really Computationally Efficient Lagrangian Simulator)

Results 110 parcels issues
Sort by recently updated
recently updated
newest added

OceanParcels continues to be very useful; thanks! I am now running global problems with Mercator currents tracking coastal dispersal. I run on a large computer in parallel; this data is...

discussion
documentation

Recently, we encountered errors in testing palaeo-plankton runs within the new parcels version. There, an errors occurs when attempting to load a 2D-stored field as a 3D field, giving the...

bug
enhancement

Make the loops in `Field` and `FieldSet` that access `Particles` (in particular those two classes; possibly others too) independent of of the order - hence: migrate loops like ```python for...

summer refactoring

Currently, tracking a unique identifier of particles (the ID) is hardly possible. Some of the ID information is stored as class-static variable info (basically: every particle itself has a one...

summer refactoring

Currently, Parcels-functionality is only majorly tested in sequential mode via `pytest`, supplemented by a few MPI tests that are integrated as systems calls in `test_mpirun.py`. This is insufficient and an...

testing

Parcels currently lacks automatic computation of the derivative of a `Field`. A use case is computing the gradient in a diffusivity field. In the `AdvectionDiffusion` kernels, this is now implemented...

feature
oceanography
coding/Python

The next main goal in Parcels development is to obtain an efficient parallel version. To do so, let's present here what is the code structure, what are its strengths and...

One of the major sources for memory leaks in Parcels is the lack of destructors (`__del__(self)`) functions, which are called when an object is deleted. This accounts mostly for dynamic...

summer refactoring