Note
Go to the end to download the full example code.
Oil in ice
from datetime import datetime, timedelta
from opendrift.readers import reader_netCDF_CF_generic
from opendrift.models.openoil import OpenOil
import cmocean
o = OpenOil(loglevel=20)
08:24:09 INFO opendrift:568: OpenDriftSimulation initialised (version 1.14.9 / v1.14.9-9-gcde0dcf)
Using live data from Barents 2.5 km ocean model
o.add_readers_from_list(['https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be'])
Adjusting some configuration
o.set_config('processes:dispersion', False)
o.set_config('processes:evaporation', False)
o.set_config('processes:emulsification', False)
o.set_config('environment:constant:horizontal_diffusivity', 10)
o.set_config('drift:truncate_ocean_model_below_m', 3)
Imaginary oil spill in Hinlopen strait
o.seed_elements(lon=19.1909, lat=79.5986, radius=50,
number=3000, time=datetime.now() - timedelta(days=7))
08:24:09 INFO opendrift.models.openoil.openoil:1715: Oil type not specified, using default: GENERIC BUNKER C
08:24:09 INFO opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC BUNKER C
08:24:09 INFO opendrift.models.openoil.openoil:1726: Using density 988.1 and viscosity 0.02169233387797564 of oiltype GENERIC BUNKER C
08:24:09 INFO opendrift.models.basemodel.environment:203: Adding a global landmask from GSHHG
08:24:13 INFO opendrift.models.basemodel.environment:227: Fallback values will be used for the following variables which have no readers:
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_surface_height: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: upward_sea_water_velocity: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_significant_height: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_stokes_drift_x_velocity: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_stokes_drift_y_velocity: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_ice_area_fraction: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_ice_x_velocity: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_ice_y_velocity: 0.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_water_temperature: 10.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_water_salinity: 34.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: sea_floor_depth_below_sea_level: 10000.000000
08:24:13 INFO opendrift.models.basemodel.environment:230: ocean_vertical_diffusivity: 0.020000
08:24:13 INFO opendrift.models.basemodel.environment:230: ocean_mixed_layer_thickness: 50.000000
Running model
o.run(duration=timedelta(hours=48), time_step=1800, time_step_output=3600)
08:24:13 INFO opendrift:1828: Skipping environment variable upward_sea_water_velocity because of condition ['drift:vertical_advection', 'is', False]
08:24:13 INFO opendrift:1839: Storing previous values of element property lon because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
08:24:13 INFO opendrift:1839: Storing previous values of element property lat because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
08:24:13 INFO opendrift:947: Using existing reader for land_binary_mask to move elements to ocean
08:24:13 INFO opendrift:978: All points are in ocean
08:24:13 INFO opendrift.models.openoil.openoil:696: Oil-water surface tension is 0.035935 Nm
08:24:13 INFO opendrift.models.openoil.openoil:709: Max water fraction not available for GENERIC BUNKER C, using default
08:24:13 INFO opendrift:2136: 2026-03-18 08:24:09.382179 - step 1 of 96 - 3000 active elements (0 deactivated)
08:24:13 INFO opendrift.readers:64: Opening file with xr.open_dataset
08:24:15 INFO opendrift.readers.reader_netCDF_CF_generic:340: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
08:24:15 INFO opendrift.readers.basereader:178: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
08:24:15 INFO opendrift.readers.basereader:178: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
08:24:18 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.020515554 to -0.0035420728) found for ocean_vertical_diffusivity, replacing with NaN
08:24:18 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:20 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.016343934 to -0.003075265) found for ocean_vertical_diffusivity, replacing with NaN
08:24:20 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:20 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:21 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:21 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:21 INFO opendrift:2136: 2026-03-18 08:54:09.382179 - step 2 of 96 - 3000 active elements (0 deactivated)
08:24:21 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:21 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:21 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:21 INFO opendrift:2136: 2026-03-18 09:24:09.382179 - step 3 of 96 - 3000 active elements (0 deactivated)
08:24:23 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.014146863 to -0.0022660033) found for ocean_vertical_diffusivity, replacing with NaN
08:24:23 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:23 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:23 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:23 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:23 INFO opendrift:2136: 2026-03-18 09:54:09.382179 - step 4 of 96 - 3000 active elements (0 deactivated)
08:24:23 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:23 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:23 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:23 INFO opendrift:2136: 2026-03-18 10:24:09.382179 - step 5 of 96 - 3000 active elements (0 deactivated)
08:24:26 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.015302924 to -0.0022114657) found for ocean_vertical_diffusivity, replacing with NaN
08:24:26 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:26 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:26 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:26 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:26 INFO opendrift:2136: 2026-03-18 10:54:09.382179 - step 6 of 96 - 3000 active elements (0 deactivated)
08:24:26 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:26 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:26 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:26 INFO opendrift:2136: 2026-03-18 11:24:09.382179 - step 7 of 96 - 3000 active elements (0 deactivated)
08:24:28 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.01591355 to -0.002327347) found for ocean_vertical_diffusivity, replacing with NaN
08:24:28 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:28 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:28 INFO opendrift:2136: 2026-03-18 11:54:09.382179 - step 8 of 96 - 3000 active elements (0 deactivated)
08:24:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:29 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:29 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:29 INFO opendrift:2136: 2026-03-18 12:24:09.382179 - step 9 of 96 - 3000 active elements (0 deactivated)
08:24:31 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.019155629 to -0.0018842785) found for ocean_vertical_diffusivity, replacing with NaN
08:24:31 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:31 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:31 INFO opendrift:2136: 2026-03-18 12:54:09.382179 - step 10 of 96 - 3000 active elements (0 deactivated)
08:24:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:31 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:31 INFO opendrift:2136: 2026-03-18 13:24:09.382179 - step 11 of 96 - 3000 active elements (0 deactivated)
08:24:34 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.02196795 to -0.0033564668) found for ocean_vertical_diffusivity, replacing with NaN
08:24:34 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:34 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:34 INFO opendrift:2136: 2026-03-18 13:54:09.382179 - step 12 of 96 - 3000 active elements (0 deactivated)
08:24:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:34 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:34 INFO opendrift:2136: 2026-03-18 14:24:09.382179 - step 13 of 96 - 3000 active elements (0 deactivated)
08:24:36 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0045618583 to -3.6048554e-05) found for ocean_vertical_diffusivity, replacing with NaN
08:24:36 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:36 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:36 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:36 INFO opendrift:2136: 2026-03-18 14:54:09.382179 - step 14 of 96 - 3000 active elements (0 deactivated)
08:24:36 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:37 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:37 INFO opendrift:2136: 2026-03-18 15:24:09.382179 - step 15 of 96 - 3000 active elements (0 deactivated)
08:24:39 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0011200011 to -2.3114642e-05) found for ocean_vertical_diffusivity, replacing with NaN
08:24:39 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:39 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:39 INFO opendrift:2136: 2026-03-18 15:54:09.382179 - step 16 of 96 - 3000 active elements (0 deactivated)
08:24:39 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:39 INFO opendrift:2136: 2026-03-18 16:24:09.382179 - step 17 of 96 - 3000 active elements (0 deactivated)
08:24:42 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.008685812 to -0.001130904) found for ocean_vertical_diffusivity, replacing with NaN
08:24:42 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:42 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:42 INFO opendrift:2136: 2026-03-18 16:54:09.382179 - step 18 of 96 - 3000 active elements (0 deactivated)
08:24:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:42 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:42 INFO opendrift:2136: 2026-03-18 17:24:09.382179 - step 19 of 96 - 3000 active elements (0 deactivated)
08:24:44 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.03248814 to -0.003870071) found for ocean_vertical_diffusivity, replacing with NaN
08:24:44 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:44 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:44 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:44 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:44 INFO opendrift:2136: 2026-03-18 17:54:09.382179 - step 20 of 96 - 3000 active elements (0 deactivated)
08:24:44 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:44 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:45 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:45 INFO opendrift:2136: 2026-03-18 18:24:09.382179 - step 21 of 96 - 3000 active elements (0 deactivated)
08:24:47 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.048029788 to -0.0052189655) found for ocean_vertical_diffusivity, replacing with NaN
08:24:47 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:47 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:47 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:47 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:47 INFO opendrift:2136: 2026-03-18 18:54:09.382179 - step 22 of 96 - 3000 active elements (0 deactivated)
08:24:47 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:47 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:47 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:47 INFO opendrift:2136: 2026-03-18 19:24:09.382179 - step 23 of 96 - 3000 active elements (0 deactivated)
08:24:49 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.028574307 to -0.003476681) found for ocean_vertical_diffusivity, replacing with NaN
08:24:49 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:49 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:49 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:50 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:50 INFO opendrift:2136: 2026-03-18 19:54:09.382179 - step 24 of 96 - 3000 active elements (0 deactivated)
08:24:50 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:50 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:50 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:50 INFO opendrift:2136: 2026-03-18 20:24:09.382179 - step 25 of 96 - 3000 active elements (0 deactivated)
08:24:52 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.025184317 to -0.0016013231) found for ocean_vertical_diffusivity, replacing with NaN
08:24:52 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:52 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:52 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:52 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:52 INFO opendrift:2136: 2026-03-18 20:54:09.382179 - step 26 of 96 - 3000 active elements (0 deactivated)
08:24:52 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:52 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:52 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:52 INFO opendrift:2136: 2026-03-18 21:24:09.382179 - step 27 of 96 - 3000 active elements (0 deactivated)
08:24:55 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.019246317 to -0.0020095168) found for ocean_vertical_diffusivity, replacing with NaN
08:24:55 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:55 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:55 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:55 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:55 INFO opendrift:2136: 2026-03-18 21:54:09.382179 - step 28 of 96 - 3000 active elements (0 deactivated)
08:24:55 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:55 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:55 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:55 INFO opendrift:2136: 2026-03-18 22:24:09.382179 - step 29 of 96 - 3000 active elements (0 deactivated)
08:24:57 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0159128 to -0.0013982987) found for ocean_vertical_diffusivity, replacing with NaN
08:24:57 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:24:57 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:57 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:58 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:58 INFO opendrift:2136: 2026-03-18 22:54:09.382179 - step 30 of 96 - 3000 active elements (0 deactivated)
08:24:58 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:58 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:24:58 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:24:58 INFO opendrift:2136: 2026-03-18 23:24:09.382179 - step 31 of 96 - 3000 active elements (0 deactivated)
08:25:01 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.014308319 to -0.0012376952) found for ocean_vertical_diffusivity, replacing with NaN
08:25:01 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:01 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:01 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:01 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:01 INFO opendrift:2136: 2026-03-18 23:54:09.382179 - step 32 of 96 - 3000 active elements (0 deactivated)
08:25:01 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:01 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:01 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:01 INFO opendrift:2136: 2026-03-19 00:24:09.382179 - step 33 of 96 - 3000 active elements (0 deactivated)
08:25:03 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.014180235 to -0.0023934671) found for ocean_vertical_diffusivity, replacing with NaN
08:25:03 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:03 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:03 INFO opendrift:2136: 2026-03-19 00:54:09.382179 - step 34 of 96 - 3000 active elements (0 deactivated)
08:25:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:03 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:03 INFO opendrift:2136: 2026-03-19 01:24:09.382179 - step 35 of 96 - 3000 active elements (0 deactivated)
08:25:06 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.018003292 to -0.002411025) found for ocean_vertical_diffusivity, replacing with NaN
08:25:06 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:06 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:06 INFO opendrift:2136: 2026-03-19 01:54:09.382179 - step 36 of 96 - 3000 active elements (0 deactivated)
08:25:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:06 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:06 INFO opendrift:2136: 2026-03-19 02:24:09.382179 - step 37 of 96 - 3000 active elements (0 deactivated)
08:25:08 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.00334509 to -3.2893913e-06) found for ocean_vertical_diffusivity, replacing with NaN
08:25:08 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:08 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:08 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:08 INFO opendrift:2136: 2026-03-19 02:54:09.382179 - step 38 of 96 - 3000 active elements (0 deactivated)
08:25:08 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:08 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:08 INFO opendrift:2136: 2026-03-19 03:24:09.382179 - step 39 of 96 - 3000 active elements (0 deactivated)
08:25:12 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:12 INFO opendrift:2136: 2026-03-19 03:54:09.382179 - step 40 of 96 - 3000 active elements (0 deactivated)
08:25:14 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:14 INFO opendrift:2136: 2026-03-19 04:24:09.382179 - step 41 of 96 - 2999 active elements (1 deactivated)
08:25:16 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.005410226 to -5.701807e-06) found for ocean_vertical_diffusivity, replacing with NaN
08:25:16 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:17 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:17 INFO opendrift:2136: 2026-03-19 04:54:09.382179 - step 42 of 96 - 2999 active elements (1 deactivated)
08:25:17 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:17 INFO opendrift:2136: 2026-03-19 05:24:09.382179 - step 43 of 96 - 2999 active elements (1 deactivated)
08:25:19 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0133799715 to -0.0025298162) found for ocean_vertical_diffusivity, replacing with NaN
08:25:19 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:19 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:19 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:19 INFO opendrift:2136: 2026-03-19 05:54:09.382179 - step 44 of 96 - 2999 active elements (1 deactivated)
08:25:19 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:19 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:19 INFO opendrift:2136: 2026-03-19 06:24:09.382179 - step 45 of 96 - 2999 active elements (1 deactivated)
08:25:21 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.035921395 to -0.003031918) found for ocean_vertical_diffusivity, replacing with NaN
08:25:21 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:21 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:21 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:22 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:22 INFO opendrift:2136: 2026-03-19 06:54:09.382179 - step 46 of 96 - 2999 active elements (1 deactivated)
08:25:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:22 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:22 INFO opendrift:2136: 2026-03-19 07:24:09.382179 - step 47 of 96 - 2999 active elements (1 deactivated)
08:25:24 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.025441261 to -0.0027314208) found for ocean_vertical_diffusivity, replacing with NaN
08:25:24 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:24 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:24 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:24 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:24 INFO opendrift:2136: 2026-03-19 07:54:09.382179 - step 48 of 96 - 2999 active elements (1 deactivated)
08:25:24 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:24 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:24 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:24 INFO opendrift:2136: 2026-03-19 08:24:09.382179 - step 49 of 96 - 2999 active elements (1 deactivated)
08:25:27 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.019147234 to -0.0020653924) found for ocean_vertical_diffusivity, replacing with NaN
08:25:27 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:27 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:27 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:27 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:27 INFO opendrift:2136: 2026-03-19 08:54:09.382179 - step 50 of 96 - 2999 active elements (1 deactivated)
08:25:27 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:27 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:27 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:27 INFO opendrift:2136: 2026-03-19 09:24:09.382179 - step 51 of 96 - 2999 active elements (1 deactivated)
08:25:29 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.017256832 to -0.002684246) found for ocean_vertical_diffusivity, replacing with NaN
08:25:29 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:29 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:29 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:29 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:29 INFO opendrift:2136: 2026-03-19 09:54:09.382179 - step 52 of 96 - 2999 active elements (1 deactivated)
08:25:29 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:29 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:29 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:29 INFO opendrift:2136: 2026-03-19 10:24:09.382179 - step 53 of 96 - 2999 active elements (1 deactivated)
08:25:32 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.010985414 to -0.00173109) found for ocean_vertical_diffusivity, replacing with NaN
08:25:32 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:32 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:32 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:32 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:32 INFO opendrift:2136: 2026-03-19 10:54:09.382179 - step 54 of 96 - 2999 active elements (1 deactivated)
08:25:32 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:32 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:32 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:32 INFO opendrift:2136: 2026-03-19 11:24:09.382179 - step 55 of 96 - 2999 active elements (1 deactivated)
08:25:34 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.007496473 to -0.0014612336) found for ocean_vertical_diffusivity, replacing with NaN
08:25:34 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:34 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:34 INFO opendrift:2136: 2026-03-19 11:54:09.382179 - step 56 of 96 - 2999 active elements (1 deactivated)
08:25:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:34 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:34 INFO opendrift:2136: 2026-03-19 12:24:09.382179 - step 57 of 96 - 2999 active elements (1 deactivated)
08:25:37 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.008019248 to -0.0018854325) found for ocean_vertical_diffusivity, replacing with NaN
08:25:37 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:37 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:37 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:37 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:37 INFO opendrift:2136: 2026-03-19 12:54:09.382179 - step 58 of 96 - 2999 active elements (1 deactivated)
08:25:37 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:37 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:37 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:37 INFO opendrift:2136: 2026-03-19 13:24:09.382179 - step 59 of 96 - 2999 active elements (1 deactivated)
08:25:39 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.011362858 to -0.00097478763) found for ocean_vertical_diffusivity, replacing with NaN
08:25:39 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:39 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:39 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:39 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:39 INFO opendrift:2136: 2026-03-19 13:54:09.382179 - step 60 of 96 - 2999 active elements (1 deactivated)
08:25:39 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:39 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:39 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:39 INFO opendrift:2136: 2026-03-19 14:24:09.382179 - step 61 of 96 - 2999 active elements (1 deactivated)
08:25:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:42 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:42 INFO opendrift:2136: 2026-03-19 14:54:09.382179 - step 62 of 96 - 2999 active elements (1 deactivated)
08:25:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:42 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:42 INFO opendrift:2136: 2026-03-19 15:24:09.382179 - step 63 of 96 - 2999 active elements (1 deactivated)
08:25:45 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:45 INFO opendrift:2136: 2026-03-19 15:54:09.382179 - step 64 of 96 - 2999 active elements (1 deactivated)
08:25:45 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:45 INFO opendrift:2136: 2026-03-19 16:24:09.382179 - step 65 of 96 - 2999 active elements (1 deactivated)
08:25:47 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0017964853 to -8.260468e-05) found for ocean_vertical_diffusivity, replacing with NaN
08:25:47 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:47 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:47 INFO opendrift:2136: 2026-03-19 16:54:09.382179 - step 66 of 96 - 2999 active elements (1 deactivated)
08:25:47 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:47 INFO opendrift:2136: 2026-03-19 17:24:09.382179 - step 67 of 96 - 2999 active elements (1 deactivated)
08:25:50 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.00986558 to -0.00091831374) found for ocean_vertical_diffusivity, replacing with NaN
08:25:50 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:50 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:50 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:50 INFO opendrift:2136: 2026-03-19 17:54:09.382179 - step 68 of 96 - 2999 active elements (1 deactivated)
08:25:50 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:50 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:50 INFO opendrift:2136: 2026-03-19 18:24:09.382179 - step 69 of 96 - 2999 active elements (1 deactivated)
08:25:52 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.03650338 to -0.0020284287) found for ocean_vertical_diffusivity, replacing with NaN
08:25:52 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:52 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:52 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:52 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:52 INFO opendrift:2136: 2026-03-19 18:54:09.382179 - step 70 of 96 - 2999 active elements (1 deactivated)
08:25:52 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:52 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:53 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:53 INFO opendrift:2136: 2026-03-19 19:24:09.382179 - step 71 of 96 - 2999 active elements (1 deactivated)
08:25:55 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.044042066 to -0.0017460802) found for ocean_vertical_diffusivity, replacing with NaN
08:25:55 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:55 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:55 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:55 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:55 INFO opendrift:2136: 2026-03-19 19:54:09.382179 - step 72 of 96 - 2999 active elements (1 deactivated)
08:25:55 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:55 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:55 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:55 INFO opendrift:2136: 2026-03-19 20:24:09.382179 - step 73 of 96 - 2999 active elements (1 deactivated)
08:25:57 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.020520544 to -0.0022486984) found for ocean_vertical_diffusivity, replacing with NaN
08:25:57 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:25:57 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:57 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:58 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:58 INFO opendrift:2136: 2026-03-19 20:54:09.382179 - step 74 of 96 - 2999 active elements (1 deactivated)
08:25:58 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:58 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:25:58 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:25:58 INFO opendrift:2136: 2026-03-19 21:24:09.382179 - step 75 of 96 - 2999 active elements (1 deactivated)
08:26:00 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.011393199 to -0.0016087126) found for ocean_vertical_diffusivity, replacing with NaN
08:26:00 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:00 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:00 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:00 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:00 INFO opendrift:2136: 2026-03-19 21:54:09.382179 - step 76 of 96 - 2999 active elements (1 deactivated)
08:26:00 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:00 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:00 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:00 INFO opendrift:2136: 2026-03-19 22:24:09.382179 - step 77 of 96 - 2999 active elements (1 deactivated)
08:26:03 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.009209966 to -0.0011883661) found for ocean_vertical_diffusivity, replacing with NaN
08:26:03 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:03 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:03 INFO opendrift:2136: 2026-03-19 22:54:09.382179 - step 78 of 96 - 2999 active elements (1 deactivated)
08:26:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:03 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:03 INFO opendrift:2136: 2026-03-19 23:24:09.382179 - step 79 of 96 - 2999 active elements (1 deactivated)
08:26:06 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0078893835 to -0.0011795226) found for ocean_vertical_diffusivity, replacing with NaN
08:26:06 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:06 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:06 INFO opendrift:2136: 2026-03-19 23:54:09.382179 - step 80 of 96 - 2999 active elements (1 deactivated)
08:26:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:06 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:06 INFO opendrift:2136: 2026-03-20 00:24:09.382179 - step 81 of 96 - 2999 active elements (1 deactivated)
08:26:09 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.008151861 to -0.0011513788) found for ocean_vertical_diffusivity, replacing with NaN
08:26:09 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:09 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:09 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:09 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:09 INFO opendrift:2136: 2026-03-20 00:54:09.382179 - step 82 of 96 - 2999 active elements (1 deactivated)
08:26:09 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:09 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:09 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:09 INFO opendrift:2136: 2026-03-20 01:24:09.382179 - step 83 of 96 - 2999 active elements (1 deactivated)
08:26:12 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.015570448 to -0.0007537814) found for ocean_vertical_diffusivity, replacing with NaN
08:26:12 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:12 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:12 INFO opendrift:2136: 2026-03-20 01:54:09.382179 - step 84 of 96 - 2999 active elements (1 deactivated)
08:26:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:12 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:12 INFO opendrift:2136: 2026-03-20 02:24:09.382179 - step 85 of 96 - 2999 active elements (1 deactivated)
08:26:15 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.013726724 to -0.00036403805) found for ocean_vertical_diffusivity, replacing with NaN
08:26:15 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:15 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:15 INFO opendrift:2136: 2026-03-20 02:54:09.382179 - step 86 of 96 - 2999 active elements (1 deactivated)
08:26:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:15 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:15 INFO opendrift:2136: 2026-03-20 03:24:09.382179 - step 87 of 96 - 2999 active elements (1 deactivated)
08:26:18 WARNING opendrift.readers.basereader.variables:656: Invalid values (-4.1307896e-05 to -1.6080891e-06) found for ocean_vertical_diffusivity, replacing with NaN
08:26:18 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:18 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:18 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:18 INFO opendrift:2136: 2026-03-20 03:54:09.382179 - step 88 of 96 - 2999 active elements (1 deactivated)
08:26:18 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:18 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:18 INFO opendrift:2136: 2026-03-20 04:24:09.382179 - step 89 of 96 - 2999 active elements (1 deactivated)
08:26:20 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0041307495 to -1.9958284e-06) found for ocean_vertical_diffusivity, replacing with NaN
08:26:20 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:21 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:21 INFO opendrift:2136: 2026-03-20 04:54:09.382179 - step 90 of 96 - 2999 active elements (1 deactivated)
08:26:21 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:21 INFO opendrift:2136: 2026-03-20 05:24:09.382179 - step 91 of 96 - 2999 active elements (1 deactivated)
08:26:24 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.010589432 to -0.00044187967) found for ocean_vertical_diffusivity, replacing with NaN
08:26:24 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:24 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:24 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:24 INFO opendrift:2136: 2026-03-20 05:54:09.382179 - step 92 of 96 - 2999 active elements (1 deactivated)
08:26:24 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:24 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:24 INFO opendrift:2136: 2026-03-20 06:24:09.382179 - step 93 of 96 - 2999 active elements (1 deactivated)
08:26:28 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.032017127 to -0.0017200754) found for ocean_vertical_diffusivity, replacing with NaN
08:26:28 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:28 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:28 INFO opendrift:2136: 2026-03-20 06:54:09.382179 - step 94 of 96 - 2999 active elements (1 deactivated)
08:26:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:28 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:28 INFO opendrift:2136: 2026-03-20 07:24:09.382179 - step 95 of 96 - 2999 active elements (1 deactivated)
08:26:31 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.04875413 to -0.0024149227) found for ocean_vertical_diffusivity, replacing with NaN
08:26:31 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
08:26:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:31 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
08:26:31 INFO opendrift:2136: 2026-03-20 07:54:09.382179 - step 96 of 96 - 2999 active elements (1 deactivated)
08:26:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
08:26:31 INFO opendrift.models.openoil.openoil:1193: Ice concentration above 30%, using Nordam scheme for advection in ice
Print and plot results
print(o)
o.animation(background='sea_ice_area_fraction', cmap=cmocean.cm.ice,
vmin=0, vmax=1, bgalpha=1, fast=False)
===========================
--------------------
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/barents_eps_zdepth_be
0:02:02.6 total
0:00:00.0 preparing
0:02:01.5 reading
0:00:01.6 interpolation
0:00:00.1 interpolation_time
0:00:01.0 rotating vectors
0:00:00.0 masking
--------------------
Performance:
2:22.0 total time
4.3 configuration
0.0 preparing main loop
0.0 moving elements to ocean
2:17.7 main loop
5.9 updating elements
0.0 oil weathering
0.0 updating viscosities
0.0 updating densities
5.4 vertical mixing
0.0 cleaning up
--------------------
===========================
Model: OpenOil (OpenDrift version 1.14.9)
2998 active Oil particles (2 deactivated, 0 scheduled)
-------------------
Environment variables:
-----
horizontal_diffusivity
1) constant_reader
-----
land_binary_mask
1) global_landmask
-----
ocean_vertical_diffusivity
sea_floor_depth_below_sea_level
sea_ice_area_fraction
sea_ice_x_velocity
sea_ice_y_velocity
sea_surface_height
sea_water_salinity
sea_water_temperature
x_sea_water_velocity
x_wind
y_sea_water_velocity
y_wind
1) https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
-----
Readers not added for the following variables:
ocean_mixed_layer_thickness
sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment
sea_surface_wave_period_at_variance_spectral_density_maximum
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 08:24:09.382179 UTC
Present: 2026-03-20 08:24:09.382179 UTC
Calculation steps: 96 * 0:30:00 - total time: 2 days, 0:00:00
Output steps: 49 * 1:00:00
===========================
08:26:42 INFO opendrift:4697: Saving animation to /root/project/docs/source/gallery/animations/example_oil_ice_0.gif...
08:27:24 INFO opendrift:3120: Time to make animation: 0:00:53.326056
o.plot(background='sea_ice_area_fraction', cmap=cmocean.cm.ice,
vmin=0, vmax=1, bgalpha=1, fast=False)

(<GeoAxes: title={'center': 'OpenDrift - OpenOil (GENERIC BUNKER C)\n2026-03-18 08:24 to 2026-03-20 08:24 UTC (49 steps)'}>, <Figure size 616.885x1100 with 2 Axes>)
Total running time of the script: (3 minutes 34.427 seconds)