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)
17:14:52 INFO opendrift:513: OpenDriftSimulation initialised (version 1.14.2 / v1.14.2-88-gf09b7bd)
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('drift: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))
17:14:52 INFO opendrift.models.openoil.openoil:1708: Oil type not specified, using default: GENERIC BUNKER C
17:14:52 INFO opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC BUNKER C
17:14:52 INFO opendrift.models.openoil.openoil:1717: Using density 988.1 and viscosity 0.02169233387797564 of oiltype GENERIC BUNKER C
17:14:52 INFO opendrift.models.basemodel.environment:206: Adding a global landmask from GSHHG
17:14:57 INFO opendrift.models.basemodel.environment:229: Fallback values will be used for the following variables which have no readers:
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_surface_height: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: upward_sea_water_velocity: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_significant_height: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_stokes_drift_x_velocity: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_stokes_drift_y_velocity: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_ice_area_fraction: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_ice_x_velocity: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_ice_y_velocity: 0.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_water_temperature: 10.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_water_salinity: 34.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: sea_floor_depth_below_sea_level: 10000.000000
17:14:57 INFO opendrift.models.basemodel.environment:232: ocean_vertical_diffusivity: 0.020000
17:14:57 INFO opendrift.models.basemodel.environment:232: ocean_mixed_layer_thickness: 50.000000
Running model
o.run(duration=timedelta(hours=48), time_step=1800, time_step_output=3600)
17:14:57 INFO opendrift:1732: Skipping environment variable upward_sea_water_velocity because of condition ['drift:vertical_advection', 'is', False]
17:14:57 INFO opendrift:1743: Storing previous values of element property lon because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
17:14:57 INFO opendrift:1743: Storing previous values of element property lat because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
17:14:57 INFO opendrift:899: Using existing reader for land_binary_mask
17:14:57 INFO opendrift:928: All points are in ocean
17:14:57 INFO opendrift.models.openoil.openoil:692: Oil-water surface tension is 0.035935 Nm
17:14:57 INFO opendrift.models.openoil.openoil:705: Max water fraction not available for GENERIC BUNKER C, using default
17:14:57 INFO opendrift:2035: 2025-07-04 17:14:52.964775 - step 1 of 96 - 3000 active elements (0 deactivated)
17:14:57 INFO opendrift.readers:61: Opening file with xr.open_dataset
17:14:58 INFO opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
17:14:58 INFO opendrift.readers.basereader:176: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
17:14:58 INFO opendrift.readers.basereader:176: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
17:15:01 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.004161266 to -1.327519e-07) found for ocean_vertical_diffusivity, replacing with NaN
17:15:01 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:04 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0037316813 to -1.7585774e-07) found for ocean_vertical_diffusivity, replacing with NaN
17:15:04 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:04 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:04 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:04 INFO opendrift:2035: 2025-07-04 17:44:52.964775 - step 2 of 96 - 3000 active elements (0 deactivated)
17:15:04 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:04 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:04 INFO opendrift:2035: 2025-07-04 18:14:52.964775 - step 3 of 96 - 3000 active elements (0 deactivated)
17:15:07 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0030406534 to -7.926701e-08) found for ocean_vertical_diffusivity, replacing with NaN
17:15:07 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:07 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:07 INFO opendrift:2035: 2025-07-04 18:44:52.964775 - step 4 of 96 - 3000 active elements (0 deactivated)
17:15:07 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:07 INFO opendrift:2035: 2025-07-04 19:14:52.964775 - step 5 of 96 - 3000 active elements (0 deactivated)
17:15:10 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0019254447 to -1.09461835e-05) found for ocean_vertical_diffusivity, replacing with NaN
17:15:10 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:10 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:10 INFO opendrift:2035: 2025-07-04 19:44:52.964775 - step 6 of 96 - 3000 active elements (0 deactivated)
17:15:10 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:10 INFO opendrift:2035: 2025-07-04 20:14:52.964775 - step 7 of 96 - 3000 active elements (0 deactivated)
17:15:12 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0018324374 to -2.9753824e-05) found for ocean_vertical_diffusivity, replacing with NaN
17:15:12 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:12 INFO opendrift:2035: 2025-07-04 20:44:52.964775 - step 8 of 96 - 3000 active elements (0 deactivated)
17:15:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:13 INFO opendrift:2035: 2025-07-04 21:14:52.964775 - step 9 of 96 - 3000 active elements (0 deactivated)
17:15:15 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0022738765 to -6.0633494e-05) found for ocean_vertical_diffusivity, replacing with NaN
17:15:15 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:15 INFO opendrift:2035: 2025-07-04 21:44:52.964775 - step 10 of 96 - 3000 active elements (0 deactivated)
17:15:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:15 INFO opendrift:2035: 2025-07-04 22:14:52.964775 - step 11 of 96 - 3000 active elements (0 deactivated)
17:15:18 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0024067229 to -0.00017851584) found for ocean_vertical_diffusivity, replacing with NaN
17:15:18 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:18 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:18 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:18 INFO opendrift:2035: 2025-07-04 22:44:52.964775 - step 12 of 96 - 3000 active elements (0 deactivated)
17:15:18 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:18 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:18 INFO opendrift:2035: 2025-07-04 23:14:52.964775 - step 13 of 96 - 3000 active elements (0 deactivated)
17:15:22 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0033950808 to -0.00018556094) found for ocean_vertical_diffusivity, replacing with NaN
17:15:22 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:22 INFO opendrift:2035: 2025-07-04 23:44:52.964775 - step 14 of 96 - 3000 active elements (0 deactivated)
17:15:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:22 INFO opendrift:2035: 2025-07-05 00:14:52.964775 - step 15 of 96 - 3000 active elements (0 deactivated)
17:15:26 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.00418552 to -0.00012294737) found for ocean_vertical_diffusivity, replacing with NaN
17:15:26 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:26 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:26 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:28 INFO opendrift:2035: 2025-07-05 00:44:52.964775 - step 16 of 96 - 2999 active elements (1 deactivated)
17:15:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:28 INFO opendrift:2035: 2025-07-05 01:14:52.964775 - step 17 of 96 - 2999 active elements (1 deactivated)
17:15:30 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.004999755 to -0.00020801119) found for ocean_vertical_diffusivity, replacing with NaN
17:15:30 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:30 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:31 INFO opendrift:2035: 2025-07-05 01:44:52.964775 - step 18 of 96 - 2999 active elements (1 deactivated)
17:15:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:31 INFO opendrift:2035: 2025-07-05 02:14:52.964775 - step 19 of 96 - 2998 active elements (2 deactivated)
17:15:33 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.006500769 to -0.00017876513) found for ocean_vertical_diffusivity, replacing with NaN
17:15:33 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:33 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:33 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:33 INFO opendrift:2035: 2025-07-05 02:44:52.964775 - step 20 of 96 - 2998 active elements (2 deactivated)
17:15:33 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:33 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:34 INFO opendrift:2035: 2025-07-05 03:14:52.964775 - step 21 of 96 - 2998 active elements (2 deactivated)
17:15:36 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.00871235 to -3.478716e-05) found for ocean_vertical_diffusivity, replacing with NaN
17:15:36 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:36 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:36 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:36 INFO opendrift:2035: 2025-07-05 03:44:52.964775 - step 22 of 96 - 2997 active elements (3 deactivated)
17:15:36 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:36 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:36 INFO opendrift:2035: 2025-07-05 04:14:52.964775 - step 23 of 96 - 2997 active elements (3 deactivated)
17:15:39 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.009381823 to -8.409126e-05) found for ocean_vertical_diffusivity, replacing with NaN
17:15:39 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:39 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:39 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:39 INFO opendrift:2035: 2025-07-05 04:44:52.964775 - step 24 of 96 - 2997 active elements (3 deactivated)
17:15:39 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:39 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:39 INFO opendrift:2035: 2025-07-05 05:14:52.964775 - step 25 of 96 - 2997 active elements (3 deactivated)
17:15:42 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.007937315 to -0.00019404551) found for ocean_vertical_diffusivity, replacing with NaN
17:15:42 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:42 INFO opendrift:2035: 2025-07-05 05:44:52.964775 - step 26 of 96 - 2997 active elements (3 deactivated)
17:15:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:42 INFO opendrift:2035: 2025-07-05 06:14:52.964775 - step 27 of 96 - 2997 active elements (3 deactivated)
17:15:44 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0061478377 to -0.00014046332) found for ocean_vertical_diffusivity, replacing with NaN
17:15:44 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:44 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:44 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:45 INFO opendrift:2035: 2025-07-05 06:44:52.964775 - step 28 of 96 - 2997 active elements (3 deactivated)
17:15:45 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:45 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:45 INFO opendrift:2035: 2025-07-05 07:14:52.964775 - step 29 of 96 - 2997 active elements (3 deactivated)
17:15:47 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.004893403 to -0.00019527377) found for ocean_vertical_diffusivity, replacing with NaN
17:15:47 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:47 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:47 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:47 INFO opendrift:2035: 2025-07-05 07:44:52.964775 - step 30 of 96 - 2997 active elements (3 deactivated)
17:15:47 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:47 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:48 INFO opendrift:2035: 2025-07-05 08:14:52.964775 - step 31 of 96 - 2997 active elements (3 deactivated)
17:15:51 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.005155026 to -0.00020800867) found for ocean_vertical_diffusivity, replacing with NaN
17:15:51 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:51 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:51 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:51 INFO opendrift:2035: 2025-07-05 08:44:52.964775 - step 32 of 96 - 2997 active elements (3 deactivated)
17:15:51 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:51 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:51 INFO opendrift:2035: 2025-07-05 09:14:52.964775 - step 33 of 96 - 2997 active elements (3 deactivated)
17:15:53 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0053363782 to -0.0001888528) found for ocean_vertical_diffusivity, replacing with NaN
17:15:53 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:53 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:53 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:53 INFO opendrift:2035: 2025-07-05 09:44:52.964775 - step 34 of 96 - 2997 active elements (3 deactivated)
17:15:53 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:53 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:54 INFO opendrift:2035: 2025-07-05 10:14:52.964775 - step 35 of 96 - 2997 active elements (3 deactivated)
17:15:56 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0070892447 to -0.00012578964) found for ocean_vertical_diffusivity, replacing with NaN
17:15:56 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:56 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:56 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:56 INFO opendrift:2035: 2025-07-05 10:44:52.964775 - step 36 of 96 - 2997 active elements (3 deactivated)
17:15:56 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:56 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:57 INFO opendrift:2035: 2025-07-05 11:14:52.964775 - step 37 of 96 - 2997 active elements (3 deactivated)
17:15:59 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.009526558 to -0.000103016515) found for ocean_vertical_diffusivity, replacing with NaN
17:15:59 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:15:59 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:59 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:59 INFO opendrift:2035: 2025-07-05 11:44:52.964775 - step 38 of 96 - 2997 active elements (3 deactivated)
17:15:59 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:59 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:15:59 INFO opendrift:2035: 2025-07-05 12:14:52.964775 - step 39 of 96 - 2997 active elements (3 deactivated)
17:16:02 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.009563377 to -0.00040416577) found for ocean_vertical_diffusivity, replacing with NaN
17:16:02 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:02 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:02 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:02 INFO opendrift:2035: 2025-07-05 12:44:52.964775 - step 40 of 96 - 2997 active elements (3 deactivated)
17:16:02 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:02 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:02 INFO opendrift:2035: 2025-07-05 13:14:52.964775 - step 41 of 96 - 2997 active elements (3 deactivated)
17:16:05 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.010229149 to -0.00035121094) found for ocean_vertical_diffusivity, replacing with NaN
17:16:05 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:05 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:05 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:05 INFO opendrift:2035: 2025-07-05 13:44:52.964775 - step 42 of 96 - 2997 active elements (3 deactivated)
17:16:05 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:05 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:05 INFO opendrift:2035: 2025-07-05 14:14:52.964775 - step 43 of 96 - 2997 active elements (3 deactivated)
17:16:08 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0117224455 to -0.0004119614) found for ocean_vertical_diffusivity, replacing with NaN
17:16:08 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:08 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:08 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:08 INFO opendrift:2035: 2025-07-05 14:44:52.964775 - step 44 of 96 - 2997 active elements (3 deactivated)
17:16:08 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:08 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:08 INFO opendrift:2035: 2025-07-05 15:14:52.964775 - step 45 of 96 - 2997 active elements (3 deactivated)
17:16:10 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.013962276 to -0.00043455375) found for ocean_vertical_diffusivity, replacing with NaN
17:16:10 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:10 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:10 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:11 INFO opendrift:2035: 2025-07-05 15:44:52.964775 - step 46 of 96 - 2997 active elements (3 deactivated)
17:16:11 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:11 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:11 INFO opendrift:2035: 2025-07-05 16:14:52.964775 - step 47 of 96 - 2996 active elements (4 deactivated)
17:16:13 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.016501287 to -0.0005353235) found for ocean_vertical_diffusivity, replacing with NaN
17:16:13 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:13 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:13 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:14 INFO opendrift:2035: 2025-07-05 16:44:52.964775 - step 48 of 96 - 2994 active elements (6 deactivated)
17:16:14 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:14 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:14 INFO opendrift:2035: 2025-07-05 17:14:52.964775 - step 49 of 96 - 2994 active elements (6 deactivated)
17:16:16 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.01634547 to -0.0014164564) found for ocean_vertical_diffusivity, replacing with NaN
17:16:16 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:16 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:16 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:17 INFO opendrift:2035: 2025-07-05 17:44:52.964775 - step 50 of 96 - 2989 active elements (11 deactivated)
17:16:17 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:17 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:17 INFO opendrift:2035: 2025-07-05 18:14:52.964775 - step 51 of 96 - 2982 active elements (18 deactivated)
17:16:19 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.013366154 to -0.0011812702) found for ocean_vertical_diffusivity, replacing with NaN
17:16:19 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:19 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:19 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:19 INFO opendrift:2035: 2025-07-05 18:44:52.964775 - step 52 of 96 - 2979 active elements (21 deactivated)
17:16:19 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:19 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:20 INFO opendrift:2035: 2025-07-05 19:14:52.964775 - step 53 of 96 - 2974 active elements (26 deactivated)
17:16:22 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.009992571 to -0.0004895313) found for ocean_vertical_diffusivity, replacing with NaN
17:16:22 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:22 INFO opendrift:2035: 2025-07-05 19:44:52.964775 - step 54 of 96 - 2968 active elements (32 deactivated)
17:16:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:22 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:22 INFO opendrift:2035: 2025-07-05 20:14:52.964775 - step 55 of 96 - 2961 active elements (39 deactivated)
17:16:25 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.00808953 to -0.00033632896) found for ocean_vertical_diffusivity, replacing with NaN
17:16:25 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:25 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:25 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:25 INFO opendrift:2035: 2025-07-05 20:44:52.964775 - step 56 of 96 - 2958 active elements (42 deactivated)
17:16:25 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:25 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:25 INFO opendrift:2035: 2025-07-05 21:14:52.964775 - step 57 of 96 - 2954 active elements (46 deactivated)
17:16:28 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0072371485 to -0.0005341876) found for ocean_vertical_diffusivity, replacing with NaN
17:16:28 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:28 INFO opendrift:2035: 2025-07-05 21:44:52.964775 - step 58 of 96 - 2949 active elements (51 deactivated)
17:16:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:28 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:28 INFO opendrift:2035: 2025-07-05 22:14:52.964775 - step 59 of 96 - 2945 active elements (55 deactivated)
17:16:30 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0070027933 to -0.00045273127) found for ocean_vertical_diffusivity, replacing with NaN
17:16:30 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:30 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:30 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:30 INFO opendrift:2035: 2025-07-05 22:44:52.964775 - step 60 of 96 - 2940 active elements (60 deactivated)
17:16:30 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:31 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:31 INFO opendrift:2035: 2025-07-05 23:14:52.964775 - step 61 of 96 - 2933 active elements (67 deactivated)
17:16:34 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.00649512 to -0.00059249287) found for ocean_vertical_diffusivity, replacing with NaN
17:16:34 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:34 INFO opendrift:2035: 2025-07-05 23:44:52.964775 - step 62 of 96 - 2921 active elements (79 deactivated)
17:16:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:34 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:34 INFO opendrift:2035: 2025-07-06 00:14:52.964775 - step 63 of 96 - 2919 active elements (81 deactivated)
17:16:36 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0052668117 to -0.0006070284) found for ocean_vertical_diffusivity, replacing with NaN
17:16:36 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:36 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:36 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:37 INFO opendrift:2035: 2025-07-06 00:44:52.964775 - step 64 of 96 - 2911 active elements (89 deactivated)
17:16:37 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:37 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:37 INFO opendrift:2035: 2025-07-06 01:14:52.964775 - step 65 of 96 - 2900 active elements (100 deactivated)
17:16:39 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0065345853 to -0.00070319173) found for ocean_vertical_diffusivity, replacing with NaN
17:16:39 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:40 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:40 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:40 INFO opendrift:2035: 2025-07-06 01:44:52.964775 - step 66 of 96 - 2881 active elements (119 deactivated)
17:16:40 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:40 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:40 INFO opendrift:2035: 2025-07-06 02:14:52.964775 - step 67 of 96 - 2873 active elements (127 deactivated)
17:16:42 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0075991447 to -0.0007240094) found for ocean_vertical_diffusivity, replacing with NaN
17:16:42 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:42 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:43 INFO opendrift:2035: 2025-07-06 02:44:52.964775 - step 68 of 96 - 2857 active elements (143 deactivated)
17:16:43 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:43 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:43 INFO opendrift:2035: 2025-07-06 03:14:52.964775 - step 69 of 96 - 2839 active elements (161 deactivated)
17:16:45 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.00937609 to -0.0008662455) found for ocean_vertical_diffusivity, replacing with NaN
17:16:45 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:45 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:45 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:45 INFO opendrift:2035: 2025-07-06 03:44:52.964775 - step 70 of 96 - 2814 active elements (186 deactivated)
17:16:45 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:45 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:46 INFO opendrift:2035: 2025-07-06 04:14:52.964775 - step 71 of 96 - 2793 active elements (207 deactivated)
17:16:48 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.010860234 to -0.0006185102) found for ocean_vertical_diffusivity, replacing with NaN
17:16:48 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:48 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:48 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:48 INFO opendrift:2035: 2025-07-06 04:44:52.964775 - step 72 of 96 - 2759 active elements (241 deactivated)
17:16:48 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:48 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:48 INFO opendrift:2035: 2025-07-06 05:14:52.964775 - step 73 of 96 - 2737 active elements (263 deactivated)
17:16:51 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.010284586 to -0.00049652415) found for ocean_vertical_diffusivity, replacing with NaN
17:16:51 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:51 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:51 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:51 INFO opendrift:2035: 2025-07-06 05:44:52.964775 - step 74 of 96 - 2713 active elements (287 deactivated)
17:16:51 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:51 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:51 INFO opendrift:2035: 2025-07-06 06:14:52.964775 - step 75 of 96 - 2686 active elements (314 deactivated)
17:16:54 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.008839674 to -0.0008419308) found for ocean_vertical_diffusivity, replacing with NaN
17:16:54 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:54 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:54 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:54 INFO opendrift:2035: 2025-07-06 06:44:52.964775 - step 76 of 96 - 2657 active elements (343 deactivated)
17:16:54 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:54 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:54 INFO opendrift:2035: 2025-07-06 07:14:52.964775 - step 77 of 96 - 2624 active elements (376 deactivated)
17:16:57 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.00810782 to -0.000751686) found for ocean_vertical_diffusivity, replacing with NaN
17:16:57 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:16:57 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:57 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:57 INFO opendrift:2035: 2025-07-06 07:44:52.964775 - step 78 of 96 - 2594 active elements (406 deactivated)
17:16:57 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:57 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:16:57 INFO opendrift:2035: 2025-07-06 08:14:52.964775 - step 79 of 96 - 2566 active elements (434 deactivated)
17:17:00 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0076518347 to -0.0005042935) found for ocean_vertical_diffusivity, replacing with NaN
17:17:00 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:00 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:00 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:00 INFO opendrift:2035: 2025-07-06 08:44:52.964775 - step 80 of 96 - 2533 active elements (467 deactivated)
17:17:00 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:00 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:00 INFO opendrift:2035: 2025-07-06 09:14:52.964775 - step 81 of 96 - 2485 active elements (515 deactivated)
17:17:03 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.007651817 to -0.0003211952) found for ocean_vertical_diffusivity, replacing with NaN
17:17:03 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:03 INFO opendrift:2035: 2025-07-06 09:44:52.964775 - step 82 of 96 - 2440 active elements (560 deactivated)
17:17:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:03 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:03 INFO opendrift:2035: 2025-07-06 10:14:52.964775 - step 83 of 96 - 2399 active elements (601 deactivated)
17:17:06 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.007349758 to -0.0003017104) found for ocean_vertical_diffusivity, replacing with NaN
17:17:06 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:06 INFO opendrift:2035: 2025-07-06 10:44:52.964775 - step 84 of 96 - 2337 active elements (663 deactivated)
17:17:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:06 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:06 INFO opendrift:2035: 2025-07-06 11:14:52.964775 - step 85 of 96 - 2267 active elements (733 deactivated)
17:17:09 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0061893784 to -0.00019114988) found for ocean_vertical_diffusivity, replacing with NaN
17:17:09 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:09 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:09 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:09 INFO opendrift:2035: 2025-07-06 11:44:52.964775 - step 86 of 96 - 2194 active elements (806 deactivated)
17:17:09 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:09 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:09 INFO opendrift:2035: 2025-07-06 12:14:52.964775 - step 87 of 96 - 2093 active elements (907 deactivated)
17:17:11 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.006584637 to -0.0007401208) found for ocean_vertical_diffusivity, replacing with NaN
17:17:11 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:11 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:11 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:12 INFO opendrift:2035: 2025-07-06 12:44:52.964775 - step 88 of 96 - 1984 active elements (1016 deactivated)
17:17:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:12 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:12 INFO opendrift:2035: 2025-07-06 13:14:52.964775 - step 89 of 96 - 1878 active elements (1122 deactivated)
17:17:14 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.0075032213 to -0.001109632) found for ocean_vertical_diffusivity, replacing with NaN
17:17:14 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:14 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:14 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:15 INFO opendrift:2035: 2025-07-06 13:44:52.964775 - step 90 of 96 - 1730 active elements (1270 deactivated)
17:17:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:15 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:15 INFO opendrift:2035: 2025-07-06 14:14:52.964775 - step 91 of 96 - 1575 active elements (1425 deactivated)
17:17:17 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.008944918 to -0.0013201785) found for ocean_vertical_diffusivity, replacing with NaN
17:17:17 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:17 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:17 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:18 INFO opendrift:2035: 2025-07-06 14:44:52.964775 - step 92 of 96 - 1430 active elements (1570 deactivated)
17:17:18 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:18 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:18 INFO opendrift:2035: 2025-07-06 15:14:52.964775 - step 93 of 96 - 1280 active elements (1720 deactivated)
17:17:20 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.010414142 to -0.0018792652) found for ocean_vertical_diffusivity, replacing with NaN
17:17:20 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:20 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:20 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:20 INFO opendrift:2035: 2025-07-06 15:44:52.964775 - step 94 of 96 - 1112 active elements (1888 deactivated)
17:17:20 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:20 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:21 INFO opendrift:2035: 2025-07-06 16:14:52.964775 - step 95 of 96 - 997 active elements (2003 deactivated)
17:17:23 WARNING opendrift.readers.basereader.variables:656: Invalid values (-0.012742383 to -0.0012981863) found for ocean_vertical_diffusivity, replacing with NaN
17:17:23 WARNING opendrift.readers.basereader.variables:659: (allowed range: [0, 1])
17:17:23 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:23 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:23 INFO opendrift:2035: 2025-07-06 16:44:52.964775 - step 96 of 96 - 872 active elements (2128 deactivated)
17:17:23 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
17:17:23 WARNING opendrift.readers.interpolation.interpolators:118: Only NaNs input to linearNDFast - returning
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:
--------------------
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:10.5 total
0:00:00.0 preparing
0:02:09.4 reading
0:00:01.5 interpolation
0:00:00.1 interpolation_time
0:00:01.0 rotating vectors
0:00:00.0 masking
--------------------
Performance:
2:31.1 total time
4.2 configuration
0.1 preparing main loop
0.0 moving elements to ocean
2:26.7 main loop
6.4 updating elements
0.0 oil weathering
0.0 updating viscosities
0.0 updating densities
5.8 vertical mixing
0.0 cleaning up
--------------------
===========================
Model: OpenOil (OpenDrift version 1.14.2)
678 active Oil particles (2322 deactivated, 0 scheduled)
-------------------
Environment variables:
-----
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: 2025-07-04 17:14:52.964775 UTC
Present: 2025-07-06 17:14:52.964775 UTC
Calculation steps: 96 * 0:30:00 - total time: 2 days, 0:00:00
Output steps: 49 * 1:00:00
===========================
/opt/conda/envs/opendrift/lib/python3.13/site-packages/cartopy/mpl/geoaxes.py:1692: UserWarning: No data for colormapping provided via 'c'. Parameters 'vmin', 'vmax' will be ignored
result = super().scatter(*args, **kwargs)
17:17:35 INFO opendrift:4553: Saving animation to /root/project/docs/source/gallery/animations/example_oil_ice_0.gif...
17:18:15 INFO opendrift:2994: Time to make animation: 0:00:51.360257

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)\n2025-07-04 17:14 to 2025-07-06 17:14 UTC (49 steps)'}>, <Figure size 568.32x1100 with 2 Axes>)
Total running time of the script: (3 minutes 41.270 seconds)