OceanParcels / Parcels

Main code for Parcels (Probably A Really Computationally Efficient Lagrangian Simulator)
https://www.oceanparcels.org
MIT License
289 stars 128 forks source link

Migration from `ParcelsRandom` in documentation notebooks #1651

Open VeckoTheGecko opened 1 month ago

VeckoTheGecko commented 1 month ago

Following from #1618, it would be good to update all the notebooks to use parcels.rng module instead of the ParcelsRandom alias.

i.e.

import parcels
...
def my_kernel(...):
-    parcels.ParcelsRandom ...
+    parcels.rng ...

Support for ParcelsRandom will stay until the next major version, this is just in preparation and to streamline docs.