We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 202dc07 commit 3a95f67Copy full SHA for 3a95f67
src/parcels/kernels/__init__.py
@@ -1,6 +1,8 @@
1
from .advection import (
2
AdvectionAnalytical,
3
AdvectionEE,
4
+ AdvectionRK2,
5
+ AdvectionRK2_3D,
6
AdvectionRK4,
7
AdvectionRK4_3D,
8
AdvectionRK4_3D_CROCO,
@@ -21,6 +23,8 @@
21
23
# advection
22
24
"AdvectionAnalytical",
25
"AdvectionEE",
26
+ "AdvectionRK2",
27
+ "AdvectionRK2_3D",
28
"AdvectionRK4_3D_CROCO",
29
"AdvectionRK4_3D",
30
"AdvectionRK4",
0 commit comments