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)
14:19:01 INFO    opendrift.models.basemodel:533: OpenDriftSimulation initialised (version 1.11.2 / v1.11.2-43-gce9f6bb)

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.utcnow() - timedelta(days=7))
14:19:01 INFO    opendrift.models.openoil.openoil:1710: Oil type not specified, using default: GENERIC BUNKER C
14:19:01 INFO    opendrift.models.openoil.adios.dirjs:90: Querying ADIOS database for oil: GENERIC BUNKER C
14:19:01 INFO    opendrift.models.openoil.openoil:1719: Using density 971.1 and viscosity 0.0005020658058702914 of oiltype GENERIC BUNKER C
14:19:01 INFO    opendrift.models.basemodel.environment:218: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1.3 m/s. Adding a customised landmask may be faster...
14:19:07 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_surface_height: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    upward_sea_water_velocity: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_ice_area_fraction: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_ice_x_velocity: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_ice_y_velocity: 0.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_water_temperature: 10.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_water_salinity: 34.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    sea_floor_depth_below_sea_level: 10000.000000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    ocean_vertical_diffusivity: 0.020000
14:19:07 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000

Running model

o.run(duration=timedelta(hours=48), time_step=1800, time_step_output=3600)
14:19:07 INFO    opendrift.models.basemodel:911: Using existing reader for land_binary_mask
14:19:07 INFO    opendrift.models.basemodel:922: All points are in ocean
14:19:07 INFO    opendrift.models.openoil.openoil:687: Oil-water surface tension is 0.035282 Nm
14:19:07 INFO    opendrift.models.openoil.openoil:700: Max water fraction not available for GENERIC BUNKER C, using default
14:19:07 INFO    opendrift.models.basemodel:2011: 2024-05-07 14:19:01.187187 - step 1 of 96 - 3000 active elements (0 deactivated)
14:19:07 INFO    opendrift.readers.reader_netCDF_CF_generic:102: 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)
14:19:10 INFO    opendrift.readers.reader_netCDF_CF_generic:314: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
14:19:10 INFO    opendrift.readers.basereader:166: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
14:19:10 INFO    opendrift.readers.basereader:166: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
14:19:13 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.018986495 to -0.002324765) found for ocean_vertical_diffusivity, replacing with NaN
14:19:13 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:16 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.01056564 to -0.0007757388) found for ocean_vertical_diffusivity, replacing with NaN
14:19:16 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:16 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:16 INFO    opendrift.models.basemodel:2011: 2024-05-07 14:49:01.187187 - step 2 of 96 - 3000 active elements (0 deactivated)
14:19:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:17 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:17 INFO    opendrift.models.basemodel:2011: 2024-05-07 15:19:01.187187 - step 3 of 96 - 3000 active elements (0 deactivated)
14:19:20 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.004297898 to -0.00021416655) found for ocean_vertical_diffusivity, replacing with NaN
14:19:20 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:20 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:20 INFO    opendrift.models.basemodel:2011: 2024-05-07 15:49:01.187187 - step 4 of 96 - 3000 active elements (0 deactivated)
14:19:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:20 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:20 INFO    opendrift.models.basemodel:2011: 2024-05-07 16:19:01.187187 - step 5 of 96 - 3000 active elements (0 deactivated)
14:19:23 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.0054179165 to -0.001407364) found for ocean_vertical_diffusivity, replacing with NaN
14:19:23 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:23 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:23 INFO    opendrift.models.basemodel:2011: 2024-05-07 16:49:01.187187 - step 6 of 96 - 3000 active elements (0 deactivated)
14:19:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:23 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:23 INFO    opendrift.models.basemodel:2011: 2024-05-07 17:19:01.187187 - step 7 of 96 - 3000 active elements (0 deactivated)
14:19:26 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.03517683 to -0.002367918) found for ocean_vertical_diffusivity, replacing with NaN
14:19:26 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:26 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:26 INFO    opendrift.models.basemodel:2011: 2024-05-07 17:49:01.187187 - step 8 of 96 - 3000 active elements (0 deactivated)
14:19:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:27 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:27 INFO    opendrift.models.basemodel:2011: 2024-05-07 18:19:01.187187 - step 9 of 96 - 3000 active elements (0 deactivated)
14:19:30 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.055046517 to -0.0017002989) found for ocean_vertical_diffusivity, replacing with NaN
14:19:30 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:30 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:30 INFO    opendrift.models.basemodel:2011: 2024-05-07 18:49:01.187187 - step 10 of 96 - 3000 active elements (0 deactivated)
14:19:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:30 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:30 INFO    opendrift.models.basemodel:2011: 2024-05-07 19:19:01.187187 - step 11 of 96 - 3000 active elements (0 deactivated)
14:19:33 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.04069304 to -0.0031506887) found for ocean_vertical_diffusivity, replacing with NaN
14:19:33 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:33 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:33 INFO    opendrift.models.basemodel:2011: 2024-05-07 19:49:01.187187 - step 12 of 96 - 3000 active elements (0 deactivated)
14:19:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:33 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:33 INFO    opendrift.models.basemodel:2011: 2024-05-07 20:19:01.187187 - step 13 of 96 - 3000 active elements (0 deactivated)
14:19:38 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.016711855 to -0.0022592759) found for ocean_vertical_diffusivity, replacing with NaN
14:19:38 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:38 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:38 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:38 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:38 INFO    opendrift.models.basemodel:2011: 2024-05-07 20:49:01.187187 - step 14 of 96 - 3000 active elements (0 deactivated)
14:19:38 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:38 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:38 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:38 INFO    opendrift.models.basemodel:2011: 2024-05-07 21:19:01.187187 - step 15 of 96 - 3000 active elements (0 deactivated)
14:19:42 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.015079868 to -0.0023545576) found for ocean_vertical_diffusivity, replacing with NaN
14:19:42 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:42 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:42 INFO    opendrift.models.basemodel:2011: 2024-05-07 21:49:01.187187 - step 16 of 96 - 3000 active elements (0 deactivated)
14:19:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:42 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:42 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:42 INFO    opendrift.models.basemodel:2011: 2024-05-07 22:19:01.187187 - step 17 of 96 - 3000 active elements (0 deactivated)
14:19:45 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.013702856 to -0.001745818) found for ocean_vertical_diffusivity, replacing with NaN
14:19:45 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:45 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:45 INFO    opendrift.models.basemodel:2011: 2024-05-07 22:49:01.187187 - step 18 of 96 - 3000 active elements (0 deactivated)
14:19:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:45 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:45 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:45 INFO    opendrift.models.basemodel:2011: 2024-05-07 23:19:01.187187 - step 19 of 96 - 3000 active elements (0 deactivated)
14:19:48 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.010873 to -0.00134557) found for ocean_vertical_diffusivity, replacing with NaN
14:19:48 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:48 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:49 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:49 INFO    opendrift.models.basemodel:2011: 2024-05-07 23:49:01.187187 - step 20 of 96 - 3000 active elements (0 deactivated)
14:19:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:49 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:49 INFO    opendrift.models.basemodel:2011: 2024-05-08 00:19:01.187187 - step 21 of 96 - 3000 active elements (0 deactivated)
14:19:52 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.0144094145 to -0.0007456575) found for ocean_vertical_diffusivity, replacing with NaN
14:19:52 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:52 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:52 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:52 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:52 INFO    opendrift.models.basemodel:2011: 2024-05-08 00:49:01.187187 - step 22 of 96 - 3000 active elements (0 deactivated)
14:19:52 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:52 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:52 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:52 INFO    opendrift.models.basemodel:2011: 2024-05-08 01:19:01.187187 - step 23 of 96 - 3000 active elements (0 deactivated)
14:19:55 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.01825378 to -0.00040514322) found for ocean_vertical_diffusivity, replacing with NaN
14:19:55 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:55 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:55 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:55 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:55 INFO    opendrift.models.basemodel:2011: 2024-05-08 01:49:01.187187 - step 24 of 96 - 3000 active elements (0 deactivated)
14:19:55 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:55 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:56 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:56 INFO    opendrift.models.basemodel:2011: 2024-05-08 02:19:01.187187 - step 25 of 96 - 3000 active elements (0 deactivated)
14:19:58 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.011289117 to -0.00014782757) found for ocean_vertical_diffusivity, replacing with NaN
14:19:58 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:19:58 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:58 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:59 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:59 INFO    opendrift.models.basemodel:2011: 2024-05-08 02:49:01.187187 - step 26 of 96 - 3000 active elements (0 deactivated)
14:19:59 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:59 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:19:59 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:19:59 INFO    opendrift.models.basemodel:2011: 2024-05-08 03:19:01.187187 - step 27 of 96 - 3000 active elements (0 deactivated)
14:20:02 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.0037145752 to -8.652262e-06) found for ocean_vertical_diffusivity, replacing with NaN
14:20:02 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:02 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
14:20:02 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:02 INFO    opendrift.models.basemodel:2011: 2024-05-08 03:49:01.187187 - step 28 of 96 - 3000 active elements (0 deactivated)
14:20:02 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:02 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:02 INFO    opendrift.models.basemodel:2011: 2024-05-08 04:19:01.187187 - step 29 of 96 - 3000 active elements (0 deactivated)
14:20:05 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.0050961175 to -0.00037383797) found for ocean_vertical_diffusivity, replacing with NaN
14:20:05 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:05 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:05 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:05 INFO    opendrift.models.basemodel:2011: 2024-05-08 04:49:01.187187 - step 30 of 96 - 3000 active elements (0 deactivated)
14:20:05 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:05 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:05 INFO    opendrift.models.basemodel:2011: 2024-05-08 05:19:01.187187 - step 31 of 96 - 3000 active elements (0 deactivated)
14:20:09 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.019850878 to -0.0012776955) found for ocean_vertical_diffusivity, replacing with NaN
14:20:09 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:09 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:09 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:09 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:09 INFO    opendrift.models.basemodel:2011: 2024-05-08 05:49:01.187187 - step 32 of 96 - 3000 active elements (0 deactivated)
14:20:09 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:09 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:09 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:09 INFO    opendrift.models.basemodel:2011: 2024-05-08 06:19:01.187187 - step 33 of 96 - 3000 active elements (0 deactivated)
14:20:13 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.046368837 to -0.001509391) found for ocean_vertical_diffusivity, replacing with NaN
14:20:13 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:13 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:13 INFO    opendrift.models.basemodel:2011: 2024-05-08 06:49:01.187187 - step 34 of 96 - 3000 active elements (0 deactivated)
14:20:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:13 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:13 INFO    opendrift.models.basemodel:2011: 2024-05-08 07:19:01.187187 - step 35 of 96 - 3000 active elements (0 deactivated)
14:20:16 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.041572027 to -0.0022098417) found for ocean_vertical_diffusivity, replacing with NaN
14:20:16 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:16 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:17 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:17 INFO    opendrift.models.basemodel:2011: 2024-05-08 07:49:01.187187 - step 36 of 96 - 3000 active elements (0 deactivated)
14:20:17 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:17 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:17 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:17 INFO    opendrift.models.basemodel:2011: 2024-05-08 08:19:01.187187 - step 37 of 96 - 3000 active elements (0 deactivated)
14:20:20 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.021074299 to -0.0009128363) found for ocean_vertical_diffusivity, replacing with NaN
14:20:20 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:20 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:20 INFO    opendrift.models.basemodel:2011: 2024-05-08 08:49:01.187187 - step 38 of 96 - 3000 active elements (0 deactivated)
14:20:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:20 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:20 INFO    opendrift.models.basemodel:2011: 2024-05-08 09:19:01.187187 - step 39 of 96 - 3000 active elements (0 deactivated)
14:20:23 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.018413011 to -0.0014327549) found for ocean_vertical_diffusivity, replacing with NaN
14:20:23 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:23 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:23 INFO    opendrift.models.basemodel:2011: 2024-05-08 09:49:01.187187 - step 40 of 96 - 3000 active elements (0 deactivated)
14:20:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:24 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:24 INFO    opendrift.models.basemodel:2011: 2024-05-08 10:19:01.187187 - step 41 of 96 - 3000 active elements (0 deactivated)
14:20:29 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.017464286 to -0.0007449593) found for ocean_vertical_diffusivity, replacing with NaN
14:20:29 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:29 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:29 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:30 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:30 INFO    opendrift.models.basemodel:2011: 2024-05-08 10:49:01.187187 - step 42 of 96 - 3000 active elements (0 deactivated)
14:20:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:30 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:30 INFO    opendrift.models.basemodel:2011: 2024-05-08 11:19:01.187187 - step 43 of 96 - 3000 active elements (0 deactivated)
14:20:33 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.016108418 to -0.0004961414) found for ocean_vertical_diffusivity, replacing with NaN
14:20:33 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:33 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:33 INFO    opendrift.models.basemodel:2011: 2024-05-08 11:49:01.187187 - step 44 of 96 - 3000 active elements (0 deactivated)
14:20:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:33 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:33 INFO    opendrift.models.basemodel:2011: 2024-05-08 12:19:01.187187 - step 45 of 96 - 3000 active elements (0 deactivated)
14:20:36 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.015584877 to -0.0002074674) found for ocean_vertical_diffusivity, replacing with NaN
14:20:36 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:36 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:36 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:36 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:36 INFO    opendrift.models.basemodel:2011: 2024-05-08 12:49:01.187187 - step 46 of 96 - 3000 active elements (0 deactivated)
14:20:36 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:36 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:36 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:36 INFO    opendrift.models.basemodel:2011: 2024-05-08 13:19:01.187187 - step 47 of 96 - 3000 active elements (0 deactivated)
14:20:40 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.016196359 to -0.0002048515) found for ocean_vertical_diffusivity, replacing with NaN
14:20:40 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:40 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:40 INFO    opendrift.models.basemodel:2011: 2024-05-08 13:49:01.187187 - step 48 of 96 - 3000 active elements (0 deactivated)
14:20:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:40 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:40 INFO    opendrift.models.basemodel:2011: 2024-05-08 14:19:01.187187 - step 49 of 96 - 3000 active elements (0 deactivated)
14:20:43 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.014088613 to -7.3940384e-05) found for ocean_vertical_diffusivity, replacing with NaN
14:20:43 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:43 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:43 INFO    opendrift.models.basemodel:2011: 2024-05-08 14:49:01.187187 - step 50 of 96 - 3000 active elements (0 deactivated)
14:20:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:43 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:43 INFO    opendrift.models.basemodel:2011: 2024-05-08 15:19:01.187187 - step 51 of 96 - 3000 active elements (0 deactivated)
14:20:47 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.0063594575 to -3.6143043e-05) found for ocean_vertical_diffusivity, replacing with NaN
14:20:47 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:47 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:47 INFO    opendrift.models.basemodel:2011: 2024-05-08 15:49:01.187187 - step 52 of 96 - 3000 active elements (0 deactivated)
14:20:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:47 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:47 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:47 INFO    opendrift.models.basemodel:2011: 2024-05-08 16:19:01.187187 - step 53 of 96 - 3000 active elements (0 deactivated)
14:20:50 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.007464148 to -0.0004918814) found for ocean_vertical_diffusivity, replacing with NaN
14:20:50 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:50 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:50 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:50 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:50 INFO    opendrift.models.basemodel:2011: 2024-05-08 16:49:01.187187 - step 54 of 96 - 3000 active elements (0 deactivated)
14:20:50 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:50 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:50 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:50 INFO    opendrift.models.basemodel:2011: 2024-05-08 17:19:01.187187 - step 55 of 96 - 3000 active elements (0 deactivated)
14:20:53 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.017895455 to -0.00088490295) found for ocean_vertical_diffusivity, replacing with NaN
14:20:53 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:53 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:53 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:53 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:53 INFO    opendrift.models.basemodel:2011: 2024-05-08 17:49:01.187187 - step 56 of 96 - 3000 active elements (0 deactivated)
14:20:53 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:53 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:53 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:53 INFO    opendrift.models.basemodel:2011: 2024-05-08 18:19:01.187187 - step 57 of 96 - 3000 active elements (0 deactivated)
14:20:56 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.03083098 to -0.0030906415) found for ocean_vertical_diffusivity, replacing with NaN
14:20:56 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:56 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:56 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:56 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:56 INFO    opendrift.models.basemodel:2011: 2024-05-08 18:49:01.187187 - step 58 of 96 - 3000 active elements (0 deactivated)
14:20:56 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:56 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:56 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:20:56 INFO    opendrift.models.basemodel:2011: 2024-05-08 19:19:01.187187 - step 59 of 96 - 3000 active elements (0 deactivated)
14:20:59 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.041619703 to -0.0029897864) found for ocean_vertical_diffusivity, replacing with NaN
14:20:59 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:20:59 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:20:59 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:00 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:00 INFO    opendrift.models.basemodel:2011: 2024-05-08 19:49:01.187187 - step 60 of 96 - 3000 active elements (0 deactivated)
14:21:00 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:00 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:00 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:00 INFO    opendrift.models.basemodel:2011: 2024-05-08 20:19:01.187187 - step 61 of 96 - 3000 active elements (0 deactivated)
14:21:03 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.035490245 to -0.0018978141) found for ocean_vertical_diffusivity, replacing with NaN
14:21:03 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:03 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:03 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:03 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:03 INFO    opendrift.models.basemodel:2011: 2024-05-08 20:49:01.187187 - step 62 of 96 - 3000 active elements (0 deactivated)
14:21:03 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:03 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:03 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:03 INFO    opendrift.models.basemodel:2011: 2024-05-08 21:19:01.187187 - step 63 of 96 - 3000 active elements (0 deactivated)
14:21:06 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.029421384 to -0.0027146763) found for ocean_vertical_diffusivity, replacing with NaN
14:21:06 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:06 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:06 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:06 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:06 INFO    opendrift.models.basemodel:2011: 2024-05-08 21:49:01.187187 - step 64 of 96 - 3000 active elements (0 deactivated)
14:21:06 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:06 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:06 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:06 INFO    opendrift.models.basemodel:2011: 2024-05-08 22:19:01.187187 - step 65 of 96 - 3000 active elements (0 deactivated)
14:21:09 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.02654596 to -0.0017029903) found for ocean_vertical_diffusivity, replacing with NaN
14:21:09 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:09 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:09 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:09 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:09 INFO    opendrift.models.basemodel:2011: 2024-05-08 22:49:01.187187 - step 66 of 96 - 3000 active elements (0 deactivated)
14:21:09 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:09 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:09 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:09 INFO    opendrift.models.basemodel:2011: 2024-05-08 23:19:01.187187 - step 67 of 96 - 3000 active elements (0 deactivated)
14:21:13 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.024618963 to -0.0014475174) found for ocean_vertical_diffusivity, replacing with NaN
14:21:13 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:13 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:13 INFO    opendrift.models.basemodel:2011: 2024-05-08 23:49:01.187187 - step 68 of 96 - 3000 active elements (0 deactivated)
14:21:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:13 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:13 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:13 INFO    opendrift.models.basemodel:2011: 2024-05-09 00:19:01.187187 - step 69 of 96 - 3000 active elements (0 deactivated)
14:21:17 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.022895347 to -0.0011275302) found for ocean_vertical_diffusivity, replacing with NaN
14:21:17 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:17 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:17 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:17 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:17 INFO    opendrift.models.basemodel:2011: 2024-05-09 00:49:01.187187 - step 70 of 96 - 3000 active elements (0 deactivated)
14:21:17 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:17 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:17 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:17 INFO    opendrift.models.basemodel:2011: 2024-05-09 01:19:01.187187 - step 71 of 96 - 3000 active elements (0 deactivated)
14:21:20 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.021307565 to -0.0010406371) found for ocean_vertical_diffusivity, replacing with NaN
14:21:20 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:20 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:20 INFO    opendrift.models.basemodel:2011: 2024-05-09 01:49:01.187187 - step 72 of 96 - 3000 active elements (0 deactivated)
14:21:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:20 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:20 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:20 INFO    opendrift.models.basemodel:2011: 2024-05-09 02:19:01.187187 - step 73 of 96 - 3000 active elements (0 deactivated)
14:21:23 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.015388496 to -0.0011826601) found for ocean_vertical_diffusivity, replacing with NaN
14:21:23 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:23 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:23 INFO    opendrift.models.basemodel:2011: 2024-05-09 02:49:01.187187 - step 74 of 96 - 3000 active elements (0 deactivated)
14:21:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:23 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:23 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:23 INFO    opendrift.models.basemodel:2011: 2024-05-09 03:19:01.187187 - step 75 of 96 - 3000 active elements (0 deactivated)
14:21:26 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.004675574 to -0.00013646216) found for ocean_vertical_diffusivity, replacing with NaN
14:21:26 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:26 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:26 INFO    opendrift.models.basemodel:2011: 2024-05-09 03:49:01.187187 - step 76 of 96 - 3000 active elements (0 deactivated)
14:21:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:26 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:27 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:27 INFO    opendrift.models.basemodel:2011: 2024-05-09 04:19:01.187187 - step 77 of 96 - 3000 active elements (0 deactivated)
14:21:29 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.00610332 to -0.00029014662) found for ocean_vertical_diffusivity, replacing with NaN
14:21:29 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:29 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:29 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:30 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:30 INFO    opendrift.models.basemodel:2011: 2024-05-09 04:49:01.187187 - step 78 of 96 - 3000 active elements (0 deactivated)
14:21:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:30 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:30 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:30 INFO    opendrift.models.basemodel:2011: 2024-05-09 05:19:01.187187 - step 79 of 96 - 3000 active elements (0 deactivated)
14:21:33 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.013138496 to -0.00078449404) found for ocean_vertical_diffusivity, replacing with NaN
14:21:33 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:33 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:33 INFO    opendrift.models.basemodel:2011: 2024-05-09 05:49:01.187187 - step 80 of 96 - 3000 active elements (0 deactivated)
14:21:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:33 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:33 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:33 INFO    opendrift.models.basemodel:2011: 2024-05-09 06:19:01.187187 - step 81 of 96 - 3000 active elements (0 deactivated)
14:21:36 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.019303683 to -0.003306742) found for ocean_vertical_diffusivity, replacing with NaN
14:21:36 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:36 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:36 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:37 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:37 INFO    opendrift.models.basemodel:2011: 2024-05-09 06:49:01.187187 - step 82 of 96 - 3000 active elements (0 deactivated)
14:21:37 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:37 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:37 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:37 INFO    opendrift.models.basemodel:2011: 2024-05-09 07:19:01.187187 - step 83 of 96 - 3000 active elements (0 deactivated)
14:21:40 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.03037187 to -0.0035035799) found for ocean_vertical_diffusivity, replacing with NaN
14:21:40 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:40 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:40 INFO    opendrift.models.basemodel:2011: 2024-05-09 07:49:01.187187 - step 84 of 96 - 3000 active elements (0 deactivated)
14:21:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:40 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:40 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:40 INFO    opendrift.models.basemodel:2011: 2024-05-09 08:19:01.187187 - step 85 of 96 - 3000 active elements (0 deactivated)
14:21:43 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.03296113 to -0.0027301402) found for ocean_vertical_diffusivity, replacing with NaN
14:21:43 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:43 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:43 INFO    opendrift.models.basemodel:2011: 2024-05-09 08:49:01.187187 - step 86 of 96 - 3000 active elements (0 deactivated)
14:21:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:43 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:43 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:43 INFO    opendrift.models.basemodel:2011: 2024-05-09 09:19:01.187187 - step 87 of 96 - 3000 active elements (0 deactivated)
14:21:46 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.03162598 to -0.002792153) found for ocean_vertical_diffusivity, replacing with NaN
14:21:46 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:46 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:46 INFO    opendrift.models.basemodel:2011: 2024-05-09 09:49:01.187187 - step 88 of 96 - 3000 active elements (0 deactivated)
14:21:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:46 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:46 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:46 INFO    opendrift.models.basemodel:2011: 2024-05-09 10:19:01.187187 - step 89 of 96 - 3000 active elements (0 deactivated)
14:21:49 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.029773155 to -0.002350334) found for ocean_vertical_diffusivity, replacing with NaN
14:21:49 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:49 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:49 INFO    opendrift.models.basemodel:2011: 2024-05-09 10:49:01.187187 - step 90 of 96 - 3000 active elements (0 deactivated)
14:21:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:49 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:49 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:49 INFO    opendrift.models.basemodel:2011: 2024-05-09 11:19:01.187187 - step 91 of 96 - 3000 active elements (0 deactivated)
14:21:51 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.025891956 to -0.0019825187) found for ocean_vertical_diffusivity, replacing with NaN
14:21:51 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:51 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:51 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:51 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:51 INFO    opendrift.models.basemodel:2011: 2024-05-09 11:49:01.187187 - step 92 of 96 - 3000 active elements (0 deactivated)
14:21:51 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
14:21:51 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:51 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:51 INFO    opendrift.models.basemodel:2011: 2024-05-09 12:19:01.187187 - step 93 of 96 - 3000 active elements (0 deactivated)
14:21:54 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.02060885 to -0.0012885131) found for ocean_vertical_diffusivity, replacing with NaN
14:21:54 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:54 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:54 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
14:21:54 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:54 INFO    opendrift.models.basemodel:2011: 2024-05-09 12:49:01.187187 - step 94 of 96 - 3000 active elements (0 deactivated)
14:21:54 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:54 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:54 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:54 INFO    opendrift.models.basemodel:2011: 2024-05-09 13:19:01.187187 - step 95 of 96 - 3000 active elements (0 deactivated)
14:21:56 WARNING opendrift.readers.basereader.variables:650: Invalid values (-0.018903822 to -0.0011369874) found for ocean_vertical_diffusivity, replacing with NaN
14:21:56 WARNING opendrift.readers.basereader.variables:653: (allowed range: [0, 1])
14:21:56 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:56 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
14:21:57 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice
14:21:57 INFO    opendrift.models.basemodel:2011: 2024-05-09 13:49:01.187187 - step 96 of 96 - 3000 active elements (0 deactivated)
14:21:57 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:57 WARNING opendrift:122: Only NaNs input to linearNDFast - returning
14:21:57 INFO    opendrift.models.openoil.openoil:1184: Ice concentration above 30%, using Nordam scheme for advection in ice

Print and plot results

print(o)
o.animation(background='sea_ice_area_fraction', cmap=cmocean.cm.ice,
            vmin=0, vmax=1, bgalpha=1, fast=False)
===========================
--------------------
Reader performance:
--------------------
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:02:37.7  total
 0:00:00.0  preparing
 0:02:34.7  reading
 0:00:01.7  interpolation
 0:00:00.1  interpolation_time
 0:00:02.9  rotating vectors
 0:00:00.0  masking
--------------------
Performance:
 2:56.0 total time
    6.0 configuration
    0.1 preparing main loop
      0.0 moving elements to ocean
 2:49.8 main loop
      6.1 updating elements
        0.0 oil weathering
          0.0 updating viscosities
          0.0 updating densities
        5.5 vertical mixing
    0.0 cleaning up
--------------------
===========================
Model:  OpenOil     (OpenDrift version 1.11.2)
        3000 active Oil particles  (0 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_height
  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: 2024-05-07 14:19:01.187187 UTC
        Present: 2024-05-09 14:19:01.187187 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:1683: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap', 'vmin', 'vmax' will be ignored
  result = super().scatter(*args, **kwargs)
14:22:10 INFO    opendrift.models.basemodel:4570: Saving animation to /root/project/docs/source/gallery/animations/example_oil_ice_0.gif...
14:24:34 INFO    opendrift.models.basemodel:3003: Time to make animation: 0:02:36.736359
../_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) 2024-05-07 14:19 to 2024-05-09 14:19 UTC (49 steps)
(<GeoAxes: title={'center': 'OpenDrift - OpenOil (GENERIC BUNKER C)\n2024-05-07 14:19 to 2024-05-09 14:19 UTC (49 steps)'}>, <Figure size 700.517x1100 with 2 Axes>)

Total running time of the script: (5 minutes 50.001 seconds)

Gallery generated by Sphinx-Gallery