You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting_started/explanation_concepts.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ kernelspec:
4
4
name: python3
5
5
---
6
6
7
-
# Parcels concepts
7
+
# 📖 Parcels conceptual workflow
8
8
9
9
Parcels is a set of Python classes and methods to create customisable particle tracking simulations using gridded output from (ocean) circulation models.
10
10
@@ -19,7 +19,7 @@ A Parcels simulation is generally built up from four different components:
19
19
20
20
We discuss each component in more detail below. The subsections titled **"Learn how to"** link to more detailed [how-to guide notebooks](../user_guide/index.md) and more detailed _explanations_ of Parcels functionality are included under **"Read more about"** subsections. The full list of classes and methods is in the [API reference](../reference.md). If you want to learn by doing, check out the [quickstart tutorial](./tutorial_quickstart.md) to start creating your first Parcels simulation.
21
21
22
-
```{figure} ../_static/concepts_diagram.svg
22
+
```{figure} ../_static/concepts_diagram.png
23
23
:alt: Parcels concepts diagram
24
24
:width: 100%
25
25
@@ -63,11 +63,11 @@ Each `parcels.Field` is defined on a grid. With Parcels, we can simulate particl
63
63
64
64
To find the value of a `parcels.Field` at any particle location, Parcels interpolates the gridded field. Depending on the variable, grid, and required accuracy, different interpolation methods may be appropriate. Parcels comes with a number of built-in **`parcels.interpolators`**.
Copy file name to clipboardExpand all lines: docs/user_guide/examples/explanation_grids.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Grids
1
+
# 📖 Grids
2
2
3
3
Parcels `Field` objects exist on a (structured) `parcels.XGrid` or (unstructured) `parcels.Uxgrid`. Here we describe these grids on a conceptual level.
0 commit comments