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)
13:58:56 INFO    opendrift.models.basemodel:539: OpenDriftSimulation initialised (version 1.10.7 / v1.10.6-119-g1da5bec)

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'])

Imaginary oil spill in Hinlopen strait

o.seed_elements(lon=19.1909, lat=79.5986, radius=50,
                number=3000, time=datetime.utcnow() - timedelta(days=7))
13:58:56 INFO    opendrift.models.openoil.openoil:1645: Oil type not specified, using default: GENERIC BUNKER C
13:58:56 INFO    opendrift.models.openoil.openoil:1462: setting oil_type to: GENERIC BUNKER C
13:58:56 INFO    opendrift.models.openoil.adios.dirjs:71: Querying ADIOS database for oil: GENERIC BUNKER C
13:58:56 INFO    opendrift.models.openoil.openoil:1652: Using density 971.1 and viscosity 0.0005020658058702914 of oiltype GENERIC BUNKER C

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)

Running model

o.run(duration=timedelta(hours=48), time_step=1800, time_step_output=3600)
13:58:56 INFO    opendrift.models.basemodel:2591: Fallback values will be used for the following variables which have no readers:
13:58:56 INFO    opendrift.models.basemodel:2594:       upward_sea_water_velocity: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_significant_height: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_stokes_drift_x_velocity: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_stokes_drift_y_velocity: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_ice_area_fraction: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_ice_x_velocity: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_ice_y_velocity: 0.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_water_temperature: 10.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_water_salinity: 34.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       sea_floor_depth_below_sea_level: 10000.000000
13:58:56 INFO    opendrift.models.basemodel:2594:       ocean_vertical_diffusivity: 0.020000
13:58:56 INFO    opendrift.models.basemodel:2594:       ocean_mixed_layer_thickness: 50.000000
13:58:56 INFO    opendrift.models.basemodel:2753: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1.3 m/s. Adding a customised landmask may be faster...
13:59:02 INFO    opendrift.models.basemodel:1701: Using existing reader for land_binary_mask
13:59:02 INFO    opendrift.models.basemodel:1713: All points are in ocean
13:59:02 INFO    opendrift.models.openoil.openoil:646: Oil-water surface tension is 0.035282 Nm
13:59:02 INFO    opendrift.models.basemodel:2882: 2023-08-25 13:58:56.355382 - step 1 of 96 - 3000 active elements (0 deactivated)
13:59:02 INFO    opendrift.readers.reader_netCDF_CF_generic:92: Opening dataset: https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
/opt/conda/envs/opendrift/lib/python3.11/site-packages/pyproj/crs/crs.py:1286: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj = self._crs.to_proj4(version=version)
13:59:04 INFO    opendrift.readers.basereader:166: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
13:59:04 INFO    opendrift.readers.basereader:166: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
13:59:06 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.006902259 to -0.0014444498) found for ocean_vertical_diffusivity, replacing with NaN
13:59:06 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:08 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.009488077 to -0.0026054443) found for ocean_vertical_diffusivity, replacing with NaN
13:59:08 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:08 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:08 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:08 INFO    opendrift.models.basemodel:2882: 2023-08-25 14:28:56.355382 - step 2 of 96 - 3000 active elements (0 deactivated)
13:59:10 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.010772483 to -0.0028537966) found for ocean_vertical_diffusivity, replacing with NaN
13:59:10 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:10 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:10 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:10 INFO    opendrift.models.basemodel:2882: 2023-08-25 14:58:56.355382 - step 3 of 96 - 3000 active elements (0 deactivated)
13:59:10 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:10 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:11 INFO    opendrift.models.basemodel:2882: 2023-08-25 15:28:56.355382 - step 4 of 96 - 3000 active elements (0 deactivated)
13:59:13 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.009538743 to -0.002165147) found for ocean_vertical_diffusivity, replacing with NaN
13:59:13 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:13 INFO    opendrift.models.basemodel:2882: 2023-08-25 15:58:56.355382 - step 5 of 96 - 3000 active elements (0 deactivated)
13:59:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:13 INFO    opendrift.models.basemodel:2882: 2023-08-25 16:28:56.355382 - step 6 of 96 - 3000 active elements (0 deactivated)
13:59:16 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.0067691705 to -8.170257e-05) found for ocean_vertical_diffusivity, replacing with NaN
13:59:16 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:16 INFO    opendrift.models.basemodel:2882: 2023-08-25 16:58:56.355382 - step 7 of 96 - 3000 active elements (0 deactivated)
13:59:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:16 INFO    opendrift.models.basemodel:2882: 2023-08-25 17:28:56.355382 - step 8 of 96 - 3000 active elements (0 deactivated)
13:59:19 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.0038051982 to -6.973009e-05) found for ocean_vertical_diffusivity, replacing with NaN
13:59:19 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:19 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:19 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:20 INFO    opendrift.models.basemodel:2882: 2023-08-25 17:58:56.355382 - step 9 of 96 - 3000 active elements (0 deactivated)
13:59:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:20 INFO    opendrift.models.basemodel:2882: 2023-08-25 18:28:56.355382 - step 10 of 96 - 3000 active elements (0 deactivated)
13:59:23 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.0022681213 to -8.477737e-05) found for ocean_vertical_diffusivity, replacing with NaN
13:59:23 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:23 INFO    opendrift.models.basemodel:2882: 2023-08-25 18:58:56.355382 - step 11 of 96 - 3000 active elements (0 deactivated)
13:59:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:23 INFO    opendrift.models.basemodel:2882: 2023-08-25 19:28:56.355382 - step 12 of 96 - 3000 active elements (0 deactivated)
13:59:26 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.0010617715 to -5.485558e-05) found for ocean_vertical_diffusivity, replacing with NaN
13:59:26 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:26 INFO    opendrift.models.basemodel:2882: 2023-08-25 19:58:56.355382 - step 13 of 96 - 3000 active elements (0 deactivated)
13:59:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:27 INFO    opendrift.models.basemodel:2882: 2023-08-25 20:28:56.355382 - step 14 of 96 - 3000 active elements (0 deactivated)
13:59:29 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.00034018877 to -1.7107004e-05) found for ocean_vertical_diffusivity, replacing with NaN
13:59:29 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:29 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:29 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:30 INFO    opendrift.models.basemodel:2882: 2023-08-25 20:58:56.355382 - step 15 of 96 - 3000 active elements (0 deactivated)
13:59:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:30 INFO    opendrift.models.basemodel:2882: 2023-08-25 21:28:56.355382 - step 16 of 96 - 3000 active elements (0 deactivated)
13:59:33 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.00011487474 to -9.5838e-09) found for ocean_vertical_diffusivity, replacing with NaN
13:59:33 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
/root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast
  data[mask] = np.finfo(np.float64).min
13:59:33 INFO    opendrift.models.basemodel:2882: 2023-08-25 21:58:56.355382 - step 17 of 96 - 3000 active elements (0 deactivated)
13:59:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:33 INFO    opendrift.models.basemodel:2882: 2023-08-25 22:28:56.355382 - step 18 of 96 - 3000 active elements (0 deactivated)
13:59:36 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.00023993423 to -1.8407933e-06) found for ocean_vertical_diffusivity, replacing with NaN
13:59:36 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:36 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
/root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast
  data[mask] = np.finfo(np.float64).min
13:59:36 INFO    opendrift.models.basemodel:2882: 2023-08-25 22:58:56.355382 - step 19 of 96 - 3000 active elements (0 deactivated)
13:59:36 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:36 INFO    opendrift.models.basemodel:2882: 2023-08-25 23:28:56.355382 - step 20 of 96 - 3000 active elements (0 deactivated)
13:59:40 WARNING opendrift.readers.basereader.variables:635: Invalid values (-0.002647741 to -2.8162305e-05) found for ocean_vertical_diffusivity, replacing with NaN
13:59:40 WARNING opendrift.readers.basereader.variables:638: (allowed range: [0, 1])
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
/root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast
  data[mask] = np.finfo(np.float64).min
13:59:40 INFO    opendrift.models.basemodel:2882: 2023-08-25 23:58:56.355382 - step 21 of 96 - 3000 active elements (0 deactivated)
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 INFO    opendrift.models.basemodel:2882: 2023-08-26 00:28:56.355382 - step 22 of 96 - 2999 active elements (1 deactivated)
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 INFO    opendrift.models.basemodel:2882: 2023-08-26 00:58:56.355382 - step 23 of 96 - 2996 active elements (4 deactivated)
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 INFO    opendrift.models.basemodel:2882: 2023-08-26 01:28:56.355382 - step 24 of 96 - 2995 active elements (5 deactivated)
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 INFO    opendrift.models.basemodel:2882: 2023-08-26 01:58:56.355382 - step 25 of 96 - 2992 active elements (8 deactivated)
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 INFO    opendrift.models.basemodel:2882: 2023-08-26 02:28:56.355382 - step 26 of 96 - 2992 active elements (8 deactivated)
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 INFO    opendrift.models.basemodel:2882: 2023-08-26 02:58:56.355382 - step 27 of 96 - 2991 active elements (9 deactivated)
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 INFO    opendrift.models.basemodel:2882: 2023-08-26 03:28:56.355382 - step 28 of 96 - 2983 active elements (17 deactivated)
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 INFO    opendrift.models.basemodel:2882: 2023-08-26 03:58:56.355382 - step 29 of 96 - 2976 active elements (24 deactivated)
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 INFO    opendrift.models.basemodel:2882: 2023-08-26 04:28:56.355382 - step 30 of 96 - 2967 active elements (33 deactivated)
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 INFO    opendrift.models.basemodel:2882: 2023-08-26 04:58:56.355382 - step 31 of 96 - 2959 active elements (41 deactivated)
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 INFO    opendrift.models.basemodel:2882: 2023-08-26 05:28:56.355382 - step 32 of 96 - 2949 active elements (51 deactivated)
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:41 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 INFO    opendrift.models.basemodel:2882: 2023-08-26 05:58:56.355382 - step 33 of 96 - 2929 active elements (71 deactivated)
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 INFO    opendrift.models.basemodel:2882: 2023-08-26 06:28:56.355382 - step 34 of 96 - 2917 active elements (83 deactivated)
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 INFO    opendrift.models.basemodel:2882: 2023-08-26 06:58:56.355382 - step 35 of 96 - 2902 active elements (98 deactivated)
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 INFO    opendrift.models.basemodel:2882: 2023-08-26 07:28:56.355382 - step 36 of 96 - 2883 active elements (117 deactivated)
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 INFO    opendrift.models.basemodel:2882: 2023-08-26 07:58:56.355382 - step 37 of 96 - 2866 active elements (134 deactivated)
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 INFO    opendrift.models.basemodel:2882: 2023-08-26 08:28:56.355382 - step 38 of 96 - 2843 active elements (157 deactivated)
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 INFO    opendrift.models.basemodel:2882: 2023-08-26 08:58:56.355382 - step 39 of 96 - 2820 active elements (180 deactivated)
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 INFO    opendrift.models.basemodel:2882: 2023-08-26 09:28:56.355382 - step 40 of 96 - 2793 active elements (207 deactivated)
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 INFO    opendrift.models.basemodel:2882: 2023-08-26 09:58:56.355382 - step 41 of 96 - 2763 active elements (237 deactivated)
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 INFO    opendrift.models.basemodel:2882: 2023-08-26 10:28:56.355382 - step 42 of 96 - 2724 active elements (276 deactivated)
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 INFO    opendrift.models.basemodel:2882: 2023-08-26 10:58:56.355382 - step 43 of 96 - 2687 active elements (313 deactivated)
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 INFO    opendrift.models.basemodel:2882: 2023-08-26 11:28:56.355382 - step 44 of 96 - 2659 active elements (341 deactivated)
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 INFO    opendrift.models.basemodel:2882: 2023-08-26 11:58:56.355382 - step 45 of 96 - 2630 active elements (370 deactivated)
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 INFO    opendrift.models.basemodel:2882: 2023-08-26 12:28:56.355382 - step 46 of 96 - 2595 active elements (405 deactivated)
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 INFO    opendrift.models.basemodel:2882: 2023-08-26 12:58:56.355382 - step 47 of 96 - 2565 active elements (435 deactivated)
13:59:43 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 INFO    opendrift.models.basemodel:2882: 2023-08-26 13:28:56.355382 - step 48 of 96 - 2543 active elements (457 deactivated)
13:59:44 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 INFO    opendrift.models.basemodel:2882: 2023-08-26 13:58:56.355382 - step 49 of 96 - 2521 active elements (479 deactivated)
13:59:44 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 INFO    opendrift.models.basemodel:2882: 2023-08-26 14:28:56.355382 - step 50 of 96 - 2492 active elements (508 deactivated)
13:59:44 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 INFO    opendrift.models.basemodel:2882: 2023-08-26 14:58:56.355382 - step 51 of 96 - 2460 active elements (540 deactivated)
13:59:44 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 INFO    opendrift.models.basemodel:2882: 2023-08-26 15:28:56.355382 - step 52 of 96 - 2436 active elements (564 deactivated)
13:59:44 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 INFO    opendrift.models.basemodel:2882: 2023-08-26 15:58:56.355382 - step 53 of 96 - 2408 active elements (592 deactivated)
13:59:44 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 INFO    opendrift.models.basemodel:2882: 2023-08-26 16:28:56.355382 - step 54 of 96 - 2380 active elements (620 deactivated)
13:59:44 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 INFO    opendrift.models.basemodel:2882: 2023-08-26 16:58:56.355382 - step 55 of 96 - 2348 active elements (652 deactivated)
13:59:44 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:44 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 INFO    opendrift.models.basemodel:2882: 2023-08-26 17:28:56.355382 - step 56 of 96 - 2323 active elements (677 deactivated)
13:59:45 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 INFO    opendrift.models.basemodel:2882: 2023-08-26 17:58:56.355382 - step 57 of 96 - 2298 active elements (702 deactivated)
13:59:45 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 INFO    opendrift.models.basemodel:2882: 2023-08-26 18:28:56.355382 - step 58 of 96 - 2275 active elements (725 deactivated)
13:59:45 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 INFO    opendrift.models.basemodel:2882: 2023-08-26 18:58:56.355382 - step 59 of 96 - 2256 active elements (744 deactivated)
13:59:45 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 INFO    opendrift.models.basemodel:2882: 2023-08-26 19:28:56.355382 - step 60 of 96 - 2240 active elements (760 deactivated)
13:59:45 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 INFO    opendrift.models.basemodel:2882: 2023-08-26 19:58:56.355382 - step 61 of 96 - 2222 active elements (778 deactivated)
13:59:45 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 INFO    opendrift.models.basemodel:2882: 2023-08-26 20:28:56.355382 - step 62 of 96 - 2198 active elements (802 deactivated)
13:59:45 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 INFO    opendrift.models.basemodel:2882: 2023-08-26 20:58:56.355382 - step 63 of 96 - 2180 active elements (820 deactivated)
13:59:45 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 INFO    opendrift.models.basemodel:2882: 2023-08-26 21:28:56.355382 - step 64 of 96 - 2162 active elements (838 deactivated)
13:59:46 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 INFO    opendrift.models.basemodel:2882: 2023-08-26 21:58:56.355382 - step 65 of 96 - 2144 active elements (856 deactivated)
13:59:46 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 INFO    opendrift.models.basemodel:2882: 2023-08-26 22:28:56.355382 - step 66 of 96 - 2126 active elements (874 deactivated)
13:59:46 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 INFO    opendrift.models.basemodel:2882: 2023-08-26 22:58:56.355382 - step 67 of 96 - 2108 active elements (892 deactivated)
13:59:46 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 INFO    opendrift.models.basemodel:2882: 2023-08-26 23:28:56.355382 - step 68 of 96 - 2100 active elements (900 deactivated)
13:59:46 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 INFO    opendrift.models.basemodel:2882: 2023-08-26 23:58:56.355382 - step 69 of 96 - 2081 active elements (919 deactivated)
13:59:46 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 INFO    opendrift.models.basemodel:2882: 2023-08-27 00:28:56.355382 - step 70 of 96 - 2062 active elements (938 deactivated)
13:59:46 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 00:58:56.355382 - step 71 of 96 - 2035 active elements (965 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 01:28:56.355382 - step 72 of 96 - 2014 active elements (986 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 01:58:56.355382 - step 73 of 96 - 1991 active elements (1009 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 02:28:56.355382 - step 74 of 96 - 1974 active elements (1026 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 02:58:56.355382 - step 75 of 96 - 1953 active elements (1047 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 03:28:56.355382 - step 76 of 96 - 1923 active elements (1077 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 03:58:56.355382 - step 77 of 96 - 1897 active elements (1103 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 04:28:56.355382 - step 78 of 96 - 1878 active elements (1122 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 INFO    opendrift.models.basemodel:2882: 2023-08-27 04:58:56.355382 - step 79 of 96 - 1851 active elements (1149 deactivated)
13:59:47 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 05:28:56.355382 - step 80 of 96 - 1816 active elements (1184 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 05:58:56.355382 - step 81 of 96 - 1787 active elements (1213 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 06:28:56.355382 - step 82 of 96 - 1766 active elements (1234 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 06:58:56.355382 - step 83 of 96 - 1746 active elements (1254 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 07:28:56.355382 - step 84 of 96 - 1715 active elements (1285 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 07:58:56.355382 - step 85 of 96 - 1691 active elements (1309 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 08:28:56.355382 - step 86 of 96 - 1660 active elements (1340 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 08:58:56.355382 - step 87 of 96 - 1625 active elements (1375 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 INFO    opendrift.models.basemodel:2882: 2023-08-27 09:28:56.355382 - step 88 of 96 - 1599 active elements (1401 deactivated)
13:59:48 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 INFO    opendrift.models.basemodel:2882: 2023-08-27 09:58:56.355382 - step 89 of 96 - 1570 active elements (1430 deactivated)
13:59:49 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 INFO    opendrift.models.basemodel:2882: 2023-08-27 10:28:56.355382 - step 90 of 96 - 1543 active elements (1457 deactivated)
13:59:49 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 INFO    opendrift.models.basemodel:2882: 2023-08-27 10:58:56.355382 - step 91 of 96 - 1521 active elements (1479 deactivated)
13:59:49 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 INFO    opendrift.models.basemodel:2882: 2023-08-27 11:28:56.355382 - step 92 of 96 - 1504 active elements (1496 deactivated)
13:59:49 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 INFO    opendrift.models.basemodel:2882: 2023-08-27 11:58:56.355382 - step 93 of 96 - 1479 active elements (1521 deactivated)
13:59:49 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 INFO    opendrift.models.basemodel:2882: 2023-08-27 12:28:56.355382 - step 94 of 96 - 1455 active elements (1545 deactivated)
13:59:49 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 INFO    opendrift.models.basemodel:2882: 2023-08-27 12:58:56.355382 - step 95 of 96 - 1426 active elements (1574 deactivated)
13:59:49 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 INFO    opendrift.models.basemodel:2882: 2023-08-27 13:28:56.355382 - step 96 of 96 - 1395 active elements (1605 deactivated)
13:59:49 WARNING opendrift.readers.basereader.structured:286: Data block from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:59:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
13:59:49 WARNING opendrift:122: 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:00.0  total
 0:00:00.0  preparing
 0:00:00.0  reading
 0:00:00.0  masking
--------------------
https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
 0:00:37.7  total
 0:00:00.0  preparing
 0:00:35.1  reading
 0:00:01.5  interpolation
 0:00:00.1  interpolation_time
 0:00:02.6  rotating vectors
 0:00:00.0  masking
--------------------
Performance:
   53.8 total time
    0.2 configuration
    5.8 preparing main loop
      5.6 making dynamical landmask
      0.0 moving elements to ocean
     40.8 readers
        0.0 global_landmask
        0.5 postprocessing
   47.6 main loop
       38.2 https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
      5.4 updating elements
        0.0 oil weathering
          0.0 updating viscosities
          0.0 updating densities
        4.9 vertical mixing
    0.1 cleaning up
--------------------
===========================
Model:  OpenOil     (OpenDrift version 1.10.7)
        1355 active Oil particles  (1645 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_water_salinity
  sea_water_temperature
  upward_sea_water_velocity
  x_sea_water_velocity
  x_wind
  y_sea_water_velocity
  y_wind
     1) https://thredds.met.no/thredds/dodsC/fou-hi/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

Time:
        Start: 2023-08-25 13:58:56.355382 UTC
        Present: 2023-08-27 13:58:56.355382 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.11/site-packages/cartopy/mpl/geoaxes.py:1696: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap', 'vmin', 'vmax' will be ignored
  result = super().scatter(*args, **kwargs)
14:00:03 INFO    opendrift.models.basemodel:5350: Saving animation to /root/project/docs/source/gallery/animations/example_oil_ice_0.gif...
14:02:20 INFO    opendrift.models.basemodel:3848: Time to make animation: 0:02:30.064810
../_images/example_oil_ice_0.gif
o.plot(background='sea_ice_area_fraction', cmap=cmocean.cm.ice,
       vmin=0, vmax=1, bgalpha=1, fast=False)
OpenDrift - OpenOil (GENERIC BUNKER C) 2023-08-25 13:58 to 2023-08-27 13:58 UTC (49 steps)
0.1 ALPHA

(<GeoAxes: title={'center': 'OpenDrift - OpenOil (GENERIC BUNKER C)\n2023-08-25 13:58 to 2023-08-27 13:58 UTC (49 steps)'}>, <Figure size 1003.53x1100 with 2 Axes>)

Total running time of the script: (3 minutes 42.429 seconds)

Gallery generated by Sphinx-Gallery