Drift at different depths

from datetime import datetime, timedelta
import numpy as np
from opendrift.models.oceandrift import OceanDrift

o = OceanDrift(loglevel=20)  # Set loglevel to 0 for debug information
18:16:15 INFO    opendrift:576: OpenDriftSimulation initialised (version 1.14.9 / v1.14.9-1-g9eceedb)

Using live data from Thredds

o.add_readers_from_list([
    'https://thredds.met.no/thredds/dodsC/fou-hi/norkystv3_800m_m00_be'])

Adding some diffusion

o.set_config('environment:constant:horizontal_diffusivity', 10)  # m2/s

Seed 1000 elements at random depths

z = -np.random.rand(2000)*50
o.seed_elements(lon=4.8, lat=60.0, z=z, radius=0, number=2000,
                time=datetime.now())

print(o)
18:16:15 INFO    opendrift.models.basemodel.environment:203: Adding a global landmask from GSHHG
18:16:19 INFO    opendrift.models.basemodel.environment:227: Fallback values will be used for the following variables which have no readers:
18:16:19 INFO    opendrift.models.basemodel.environment:230:    x_sea_water_velocity: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    y_sea_water_velocity: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    sea_surface_height: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    x_wind: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    y_wind: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    upward_sea_water_velocity: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    ocean_vertical_diffusivity: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    sea_surface_wave_significant_height: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    ocean_mixed_layer_thickness: 50.000000
18:16:19 INFO    opendrift.models.basemodel.environment:230:    sea_floor_depth_below_sea_level: 10000.000000
===========================
Model:  OceanDrift     (OpenDrift version 1.14.9)
        0 active Lagrangian3DArray particles  (0 deactivated, 2000 scheduled)
-------------------
Environment variables:
  -----
  horizontal_diffusivity
     1) constant_reader
  -----
  land_binary_mask
     1) global_landmask
  -----
Readers not added for the following variables:
  ocean_mixed_layer_thickness
  ocean_vertical_diffusivity
  sea_floor_depth_below_sea_level
  sea_surface_height
  sea_surface_wave_significant_height
  sea_surface_wave_stokes_drift_x_velocity
  sea_surface_wave_stokes_drift_y_velocity
  upward_sea_water_velocity
  x_sea_water_velocity
  x_wind
  y_sea_water_velocity
  y_wind
---
Lazy readers:
  LazyReader: https://thredds.met.no/thredds/dodsC/fou-hi/norkystv3_800m_m00_be

Discarded readers:
===========================

Running model

o.run(duration=timedelta(hours=24), time_step=1800)
18:16:19 INFO    opendrift:1836: Skipping environment variable ocean_vertical_diffusivity because of condition ['drift:vertical_mixing', 'is', False]
18:16:19 INFO    opendrift:1836: Skipping environment variable ocean_mixed_layer_thickness because of condition ['drift:vertical_mixing', 'is', False]
18:16:19 INFO    opendrift:1847: Storing previous values of element property lon because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
18:16:19 INFO    opendrift:1847: Storing previous values of element property lat because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
18:16:19 INFO    opendrift:1855: Storing previous values of environment variable sea_surface_height because of condition ['drift:vertical_advection', 'is', True]
18:16:19 INFO    opendrift:955: Using existing reader for land_binary_mask to move elements to ocean
18:16:19 INFO    opendrift:986: All points are in ocean
18:16:19 INFO    opendrift:2144: 2026-03-18 18:16:15.427627 - step 1 of 48 - 2000 active elements (0 deactivated)
18:16:19 INFO    opendrift.readers:64: Opening file with xr.open_dataset
18:16:20 INFO    opendrift.readers.reader_netCDF_CF_generic:340: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
18:16:20 INFO    opendrift.readers.basereader:178: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
18:16:20 INFO    opendrift.readers.basereader:178: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
18:16:20 INFO    opendrift.readers.basereader:178: Variable x_wind will be rotated from eastward_wind
18:16:20 INFO    opendrift.readers.basereader:178: Variable y_wind will be rotated from northward_wind
18:16:22 INFO    opendrift:2144: 2026-03-18 18:46:15.427627 - step 2 of 48 - 2000 active elements (0 deactivated)
18:16:22 INFO    opendrift:2144: 2026-03-18 19:16:15.427627 - step 3 of 48 - 2000 active elements (0 deactivated)
18:16:23 INFO    opendrift:2144: 2026-03-18 19:46:15.427627 - step 4 of 48 - 2000 active elements (0 deactivated)
18:16:23 INFO    opendrift:2144: 2026-03-18 20:16:15.427627 - step 5 of 48 - 2000 active elements (0 deactivated)
18:16:24 INFO    opendrift:2144: 2026-03-18 20:46:15.427627 - step 6 of 48 - 2000 active elements (0 deactivated)
18:16:24 INFO    opendrift:2144: 2026-03-18 21:16:15.427627 - step 7 of 48 - 2000 active elements (0 deactivated)
18:16:25 INFO    opendrift:2144: 2026-03-18 21:46:15.427627 - step 8 of 48 - 2000 active elements (0 deactivated)
18:16:26 INFO    opendrift:2144: 2026-03-18 22:16:15.427627 - step 9 of 48 - 2000 active elements (0 deactivated)
18:16:27 INFO    opendrift:2144: 2026-03-18 22:46:15.427627 - step 10 of 48 - 2000 active elements (0 deactivated)
18:16:27 INFO    opendrift:2144: 2026-03-18 23:16:15.427627 - step 11 of 48 - 2000 active elements (0 deactivated)
18:16:28 INFO    opendrift:2144: 2026-03-18 23:46:15.427627 - step 12 of 48 - 2000 active elements (0 deactivated)
18:16:28 INFO    opendrift:2144: 2026-03-19 00:16:15.427627 - step 13 of 48 - 2000 active elements (0 deactivated)
18:16:29 INFO    opendrift:2144: 2026-03-19 00:46:15.427627 - step 14 of 48 - 2000 active elements (0 deactivated)
18:16:29 INFO    opendrift:2144: 2026-03-19 01:16:15.427627 - step 15 of 48 - 2000 active elements (0 deactivated)
18:16:31 INFO    opendrift:2144: 2026-03-19 01:46:15.427627 - step 16 of 48 - 2000 active elements (0 deactivated)
18:16:31 INFO    opendrift:2144: 2026-03-19 02:16:15.427627 - step 17 of 48 - 2000 active elements (0 deactivated)
18:16:32 INFO    opendrift:2144: 2026-03-19 02:46:15.427627 - step 18 of 48 - 2000 active elements (0 deactivated)
18:16:32 INFO    opendrift:2144: 2026-03-19 03:16:15.427627 - step 19 of 48 - 2000 active elements (0 deactivated)
18:16:34 INFO    opendrift:2144: 2026-03-19 03:46:15.427627 - step 20 of 48 - 2000 active elements (0 deactivated)
18:16:34 INFO    opendrift:2144: 2026-03-19 04:16:15.427627 - step 21 of 48 - 2000 active elements (0 deactivated)
18:16:35 INFO    opendrift:2144: 2026-03-19 04:46:15.427627 - step 22 of 48 - 2000 active elements (0 deactivated)
18:16:35 INFO    opendrift:2144: 2026-03-19 05:16:15.427627 - step 23 of 48 - 2000 active elements (0 deactivated)
18:16:36 INFO    opendrift:2144: 2026-03-19 05:46:15.427627 - step 24 of 48 - 2000 active elements (0 deactivated)
18:16:36 INFO    opendrift:2144: 2026-03-19 06:16:15.427627 - step 25 of 48 - 2000 active elements (0 deactivated)
18:16:39 INFO    opendrift:2144: 2026-03-19 06:46:15.427627 - step 26 of 48 - 2000 active elements (0 deactivated)
18:16:39 INFO    opendrift:2144: 2026-03-19 07:16:15.427627 - step 27 of 48 - 2000 active elements (0 deactivated)
18:16:42 INFO    opendrift:2144: 2026-03-19 07:46:15.427627 - step 28 of 48 - 2000 active elements (0 deactivated)
18:16:42 INFO    opendrift:2144: 2026-03-19 08:16:15.427627 - step 29 of 48 - 2000 active elements (0 deactivated)
18:16:45 INFO    opendrift:2144: 2026-03-19 08:46:15.427627 - step 30 of 48 - 2000 active elements (0 deactivated)
18:16:45 INFO    opendrift:2144: 2026-03-19 09:16:15.427627 - step 31 of 48 - 2000 active elements (0 deactivated)
18:16:48 INFO    opendrift:2144: 2026-03-19 09:46:15.427627 - step 32 of 48 - 2000 active elements (0 deactivated)
18:16:48 INFO    opendrift:2144: 2026-03-19 10:16:15.427627 - step 33 of 48 - 2000 active elements (0 deactivated)
18:16:50 INFO    opendrift:2144: 2026-03-19 10:46:15.427627 - step 34 of 48 - 2000 active elements (0 deactivated)
18:16:50 INFO    opendrift:2144: 2026-03-19 11:16:15.427627 - step 35 of 48 - 2000 active elements (0 deactivated)
18:16:53 INFO    opendrift:2144: 2026-03-19 11:46:15.427627 - step 36 of 48 - 2000 active elements (0 deactivated)
18:16:53 INFO    opendrift:2144: 2026-03-19 12:16:15.427627 - step 37 of 48 - 2000 active elements (0 deactivated)
18:16:56 INFO    opendrift:2144: 2026-03-19 12:46:15.427627 - step 38 of 48 - 2000 active elements (0 deactivated)
18:16:56 INFO    opendrift:2144: 2026-03-19 13:16:15.427627 - step 39 of 48 - 2000 active elements (0 deactivated)
18:16:58 INFO    opendrift:2144: 2026-03-19 13:46:15.427627 - step 40 of 48 - 2000 active elements (0 deactivated)
18:16:58 INFO    opendrift:2144: 2026-03-19 14:16:15.427627 - step 41 of 48 - 2000 active elements (0 deactivated)
18:17:01 INFO    opendrift:2144: 2026-03-19 14:46:15.427627 - step 42 of 48 - 2000 active elements (0 deactivated)
18:17:01 INFO    opendrift:2144: 2026-03-19 15:16:15.427627 - step 43 of 48 - 2000 active elements (0 deactivated)
18:17:04 INFO    opendrift:2144: 2026-03-19 15:46:15.427627 - step 44 of 48 - 2000 active elements (0 deactivated)
18:17:04 INFO    opendrift:2144: 2026-03-19 16:16:15.427627 - step 45 of 48 - 2000 active elements (0 deactivated)
18:17:07 INFO    opendrift:2144: 2026-03-19 16:46:15.427627 - step 46 of 48 - 2000 active elements (0 deactivated)
18:17:08 INFO    opendrift:2144: 2026-03-19 17:16:15.427627 - step 47 of 48 - 2000 active elements (0 deactivated)
18:17:13 INFO    opendrift:2144: 2026-03-19 17:46:15.427627 - step 48 of 48 - 1999 active elements (1 deactivated)
<xarray.Dataset> Size: 9MB
Dimensions:                                   (trajectory: 2000, time: 49)
Coordinates:
  * trajectory                                (trajectory) int64 16kB 0 ... 1999
  * time                                      (time) datetime64[ns] 392B 2026...
Data variables: (12/22)
    status                                    (trajectory, time) float32 392kB ...
    moving                                    (trajectory, time) float32 392kB ...
    age_seconds                               (trajectory, time) float32 392kB ...
    origin_marker                             (trajectory, time) float32 392kB ...
    lon                                       (trajectory, time) float32 392kB ...
    lat                                       (trajectory, time) float32 392kB ...
    ...                                        ...
    horizontal_diffusivity                    (trajectory, time) float32 392kB ...
    sea_surface_wave_significant_height       (trajectory, time) float32 392kB ...
    sea_surface_wave_stokes_drift_x_velocity  (trajectory, time) float32 392kB ...
    sea_surface_wave_stokes_drift_y_velocity  (trajectory, time) float32 392kB ...
    sea_floor_depth_below_sea_level           (trajectory, time) float32 392kB ...
    land_binary_mask                          (trajectory, time) float32 392kB ...
Attributes: (12/122)
    Conventions:                                                           CF...
    standard_name_vocabulary:                                              CF...
    featureType:                                                           tr...
    title:                                                                 Op...
    summary:                                                               Ou...
    keywords:                                                              tr...
    ...                                                                    ...
    geospatial_lon_units:                                                  de...
    geospatial_lon_resolution:                                             point
    runtime:                                                               0:...
    geospatial_vertical_min:                                               -7...
    geospatial_vertical_max:                                               0.0
    geospatial_vertical_positive:                                          up


Plot results with lines and particles colored by depth

print(o)
o.plot(linecolor='z', buffer=.1, show_elements=False)
o.animation(color='z', buffer=.1)
OpenDrift - OceanDrift 2026-03-18 18:16 to 2026-03-19 18:16 UTC (49 steps)
===========================
--------------------
Reader performance:
--------------------
constant_reader
 0:00:00.0  total
 0:00:00.0  preparing
 0:00:00.0  reading
 0:00:00.0  masking
--------------------
global_landmask
 0:00:01.5  total
 0:00:00.0  preparing
 0:00:01.5  reading
 0:00:00.0  masking
--------------------
https://thredds.met.no/thredds/dodsC/fou-hi/norkystv3_800m_m00_be
 0:00:48.3  total
 0:00:00.0  preparing
 0:00:47.9  reading
 0:00:00.9  interpolation
 0:00:00.0  interpolation_time
 0:00:00.4  rotating vectors
 0:00:00.0  masking
--------------------
Performance:
   58.4 total time
    4.0 configuration
    0.0 preparing main loop
      0.0 moving elements to ocean
   54.4 main loop
      0.1 updating elements
    0.0 cleaning up
--------------------
===========================
Model:  OceanDrift     (OpenDrift version 1.14.9)
        1998 active Lagrangian3DArray particles  (2 deactivated, 0 scheduled)
-------------------
Environment variables:
  -----
  horizontal_diffusivity
     1) constant_reader
  -----
  land_binary_mask
     1) global_landmask
  -----
  sea_floor_depth_below_sea_level
  sea_surface_height
  upward_sea_water_velocity
  x_sea_water_velocity
  x_wind
  y_sea_water_velocity
  y_wind
     1) https://thredds.met.no/thredds/dodsC/fou-hi/norkystv3_800m_m00_be
  -----
Readers not added for the following variables:
  sea_surface_wave_significant_height
  sea_surface_wave_stokes_drift_x_velocity
  sea_surface_wave_stokes_drift_y_velocity

Discarded readers:

Time:
        Start: 2026-03-18 18:16:15.427627 UTC
        Present: 2026-03-19 18:16:15.427627 UTC
        Calculation steps: 48 * 0:30:00 - total time: 1 day, 0:00:00
        Output steps: 49 * 0:30:00
===========================

18:18:12 INFO    opendrift:4705: Saving animation to /root/project/docs/source/gallery/animations/example_depth_0.gif...
18:18:39 INFO    opendrift:3128: Time to make animation: 0:00:28.649884
../_images/example_depth_0.gif

Total running time of the script: (2 minutes 32.865 seconds)

Gallery generated by Sphinx-Gallery