Note
Go to the end to download the full example code.
Icebergs (openberg)
from datetime import datetime, timedelta
import numpy as np
import matplotlib.pyplot as plt
import opendrift
from opendrift.models.openberg import OpenBerg
Currents and wind forcing
forcing = ['https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be']
A permutation of iceberg sizes/dimensions
n = 10
lengths = np.linspace(50, 500, n)
widths = np.linspace(20, 200, n)
sails = np.linspace(5, 50, n)
drafts = np.linspace(2, 120, n)
lengths, widths, sails, drafts = np.meshgrid(lengths, widths, sails, drafts)
icebergs = {'lon': 18.127, 'lat': 74.776, 'time': datetime.now(),
'number': lengths.size, 'radius': 500,
'sail': sails, 'draft': drafts, 'length': lengths, 'width': widths}
Simulating drift for 48 hours
o = OpenBerg()
o.set_config('drift:vertical_profile', False)
o.set_config('drift:horizontal_diffusivity', 100)
o.add_readers_from_list(forcing)
o.seed_elements(**icebergs)
o.run(duration=timedelta(hours=48))
o.animation(color='draft', contourlines=np.arange(0, 500, 25))
13:48:03 DEBUG opendrift.config:168: Adding 18 config items from __init__
13:48:03 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails
13:48:03 DEBUG opendrift.config:168: Adding 13 config items from __init__
13:48:03 INFO opendrift:576: OpenDriftSimulation initialised (version 1.14.7 / v1.14.7-15-g2988cd4)
13:48:03 DEBUG opendrift.config:168: Adding 11 config items from openberg
13:48:03 DEBUG opendrift.readers.reader_lazy:37: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:03 DEBUG opendrift.models.basemodel.environment:313: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:03 INFO opendrift.models.basemodel.environment:203: Adding a global landmask from GSHHG
13:48:03 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:48:06 DEBUG opendrift.models.basemodel.environment:313: Added reader global_landmask
13:48:06 INFO opendrift.models.basemodel.environment:227: Fallback values will be used for the following variables which have no readers:
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_floor_depth_below_sea_level: 10000.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_surface_height: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_surface_x_slope: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_surface_y_slope: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_significant_height: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_from_direction: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_stokes_drift_x_velocity: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_stokes_drift_y_velocity: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_water_temperature: 2.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_water_salinity: 35.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_ice_area_fraction: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_ice_thickness: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_ice_x_velocity: 0.000000
13:48:06 INFO opendrift.models.basemodel.environment:230: sea_ice_y_velocity: 0.000000
13:48:06 DEBUG opendrift:164: Changed mode from Mode.Config to Mode.Ready
13:48:07 DEBUG opendrift.elements.elements:138: array sail is multidimensional -> flattening with ravel
13:48:07 DEBUG opendrift.elements.elements:138: array draft is multidimensional -> flattening with ravel
13:48:07 DEBUG opendrift.elements.elements:138: array length is multidimensional -> flattening with ravel
13:48:07 DEBUG opendrift.elements.elements:138: array width is multidimensional -> flattening with ravel
13:48:07 DEBUG opendrift:164: Changed mode from Mode.Ready to Mode.Run
13:48:07 DEBUG opendrift:1775:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.14.7
Platform: Linux, 6.8.0-1040-aws
4.0 GB memory
36 processors (x86_64)
NumPy version 2.3.5
SciPy version 1.16.3
Matplotlib version 3.10.8
NetCDF4 version 1.7.3
Xarray version 2025.9.0
ADIOS (adios_db) version 1.2.5
Copernicusmarine version 2.2.5
Python version 3.14.2 | packaged by conda-forge | (main, Dec 6 2025, 11:21:58) [GCC 14.3.0]
------------------------------------------------------
13:48:07 DEBUG opendrift:1788: No output file is specified, neglecting export_buffer_length
13:48:07 INFO opendrift:1814: Storing previous values of element property lon because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
13:48:07 INFO opendrift:1814: Storing previous values of element property lat because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
13:48:07 DEBUG opendrift:1937: Finalizing environment and preparing readers for simulation coverage ([12.13479867 73.19932387 24.12024245 76.34887101]) and time (2025-12-16 13:48:02.868659 to 2025-12-18 13:48:02.868659)
13:48:07 DEBUG opendrift.models.basemodel.environment:166: Preparing LazyReader: https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be for extent [12.13479867 73.19932387 24.12024245 76.34887101]
13:48:07 DEBUG opendrift.models.basemodel.environment:166: Preparing global_landmask for extent [12.13479867 73.19932387 24.12024245 76.34887101]
13:48:07 DEBUG opendrift.readers.basereader.variables:555: Nothing more to prepare for global_landmask
13:48:07 DEBUG opendrift:2034: Initial self.result, size Frozen({'trajectory': 10000, 'time': 49})
13:48:07 INFO opendrift:952: Using existing reader for land_binary_mask to move elements to ocean
13:48:07 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:07 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:48:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:07 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:48:07 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:07 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:07 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:48:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:48:07 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:48:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:48:07 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:07 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:48:07 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:48:07 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:48:07 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:48:07 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:48:07 INFO opendrift:982: All points are in ocean
13:48:07 DEBUG opendrift:909: to be seeded: 10000, already seeded 0
13:48:07 DEBUG opendrift:931: Released 10000 new elements.
13:48:07 DEBUG opendrift:2110: ======================================================================
13:48:07 INFO opendrift:2111: 2025-12-16 13:48:02.868659 - step 1 of 48 - 10000 active elements (0 deactivated)
13:48:07 DEBUG opendrift:2117: 0 elements scheduled.
13:48:07 DEBUG opendrift:2119: ======================================================================
13:48:07 DEBUG opendrift:2130: 74.7560806274414 <- latitude -> 74.7921142578125
13:48:07 DEBUG opendrift:2130: 18.063207626342773 <- longitude -> 18.19183349609375
13:48:07 DEBUG opendrift:2128: z = 0.0
13:48:07 DEBUG opendrift:2131: ---------------------------------
13:48:07 DEBUG opendrift.models.basemodel.environment:571: Variables not covered by any reader: ['sea_ice_thickness', 'sea_water_salinity', 'y_wind', 'sea_surface_wave_from_direction', 'x_wind', 'sea_water_temperature', 'y_sea_water_velocity', 'x_sea_water_velocity', 'sea_floor_depth_below_sea_level', 'sea_surface_wave_significant_height', 'sea_ice_area_fraction']
13:48:07 DEBUG opendrift.readers.reader_lazy:56: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:07 DEBUG opendrift.readers:154: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
13:48:07 INFO opendrift.readers:63: Opening file with xr.open_dataset
13:48:07 DEBUG findlibs:301: about to search for libeccodes.so/eccodeslib in <function _find_in_package at 0x7f14659e31c0>
13:48:07 DEBUG findlibs:301: about to search for libeccodes.so/eccodeslib in <function _find_in_python at 0x7f14659e3320>
13:48:07 DEBUG findlibs:303: found libeccodes.so/eccodeslib in <function _find_in_python at 0x7f14659e3320>
13:48:07 DEBUG gribapi.bindings:98: eccodes lib search: findlibs returned /opt/conda/envs/opendrift/lib/libeccodes.so
13:48:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables.
13:48:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:143: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'lambert_conformal_conic', 'standard_parallel': array([77.5, 77.5], dtype=float32), 'longitude_of_central_meridian': np.float32(-25.0), 'latitude_of_projection_origin': np.float32(77.5), 'earth_radius': np.float32(6.371e+06), 'proj4': '+proj=lcc +lat_0=77.5 +lon_0=-25 +lat_1=77.5 +lat_2=77.5 +no_defs +R=6.371e+06'}
13:48:09 DEBUG pyproj:40: PROJ_ERROR: proj_create: several objects matching this name: Krovak (Greenwich), Equal Earth Greenwich, Laborde Grid (Greenwich), Modified Krovak (Greenwich), Krovak East North (Greenwich), Modified Krovak East North (Greenwich), ...
13:48:10 INFO opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
13:48:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:368: Skipped variables without standard_name: ['angle']
13:48:10 DEBUG opendrift.readers.basereader.variables:614: Setting buffer size 10 for reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00
13:48:10 INFO opendrift.readers.basereader:176: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
13:48:10 INFO opendrift.readers.basereader:176: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
13:48:10 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:48:10 DEBUG opendrift.readers.basereader.variables:569: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
13:48:10 DEBUG opendrift.readers.basereader.variables:569: Adding variable mapping: ['sea_ice_x_velocity', 'sea_ice_y_velocity'] -> sea_ice_speed
13:48:10 DEBUG opendrift.readers.basereader.variables:569: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
13:48:10 DEBUG opendrift.readers.basereader.structured:151: Clearing cache for reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be before starting new simulation
13:48:10 DEBUG opendrift.readers.basereader.variables:614: Setting buffer size 4 for reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be, assuming a maximum average speed of 1 m/s and time span of 1:00:00
13:48:10 DEBUG opendrift.readers.basereader.variables:555: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:10 DEBUG opendrift.readers.reader_lazy:71: Reader initialised: https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:10 DEBUG opendrift.readers.basereader.variables:614: Setting buffer size 4 for reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be, assuming a maximum average speed of 1 m/s and time span of 1:00:00
13:48:10 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:10 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:48:10 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:10 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:48:10 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:10 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:10 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:48:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:48:10 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:48:10 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:48:10 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:10 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:10 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:48:10 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:10 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:10 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:10 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:10 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:48:10 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 13:00:00 (before)
2025-12-16 14:00:00 (after)
13:48:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:48:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:48:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:48:13 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -42.53997553957136 and -41.47306265087688 degrees.
13:48:13 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:48:13 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:48:13 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:48:13 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:48:13 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:48:13 DEBUG opendrift.readers.basereader.structured:290: Fetched env-block (size 11x9x7) for time before (2025-12-16 13:00:00)
13:48:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:48:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:48:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:48:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -42.53997553957136 and -41.47306265087688 degrees.
13:48:15 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:48:15 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:48:15 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:48:15 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:48:15 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:48:15 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 11x9x7) for time after (2025-12-16 14:00:00)
13:48:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 13:00:00) in space (linearNDFast)
13:48:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:48:15 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 14:00:00) in space (linearNDFast)
13:48:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:48:15 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 13:00:00, weight 0.20) and
after (2025-12-16 14:00:00, weight 0.80) in time
13:48:15 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:48:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 42.05566531895647 and 42.18125751143569 degrees.
13:48:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 42.05566531895647 and 42.18125751143569 degrees.
13:48:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 42.05566531895647 and 42.18125751143569 degrees.
13:48:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 42.05566531895647 and 42.18125751143569 degrees.
13:48:15 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:15 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:48:15 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:48:15 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:48:15 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:48:15 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:48:15 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: 0.115366 (min) 0.163793 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0420101 (min) 0.00345645 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 227.6 (min) 266.329 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.614315 (min) -0.604762 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: x_wind: -11.9617 (min) -11.6036 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: y_wind: 4.49391 (min) 4.78563 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 3.76228 (min) 4.49021 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.8719 (min) 34.9829 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:48:15 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:48:15 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.809010, mean: 3.981940, max: 4.080934
13:48:15 DEBUG opendrift:696: No elements hit coastline.
13:48:15 DEBUG opendrift:767: No elements hit seafloor.
13:48:15 DEBUG opendrift:1707: No elements to deactivate
13:48:15 DEBUG opendrift:2167: Calling OpenBerg.update()
13:48:15 DEBUG opendrift.models.openberg:596: Rolling over : 3629 icebergs ...
13:48:15 DEBUG opendrift.models.openberg:551: Melting is disabled
13:48:15 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:48:15 DEBUG opendrift.models.openberg:524: No grounded icebergs detected in this timestep
13:48:25 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0034749393865888857 and 1.105526129491915 m/s
13:48:25 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:48:25 DEBUG opendrift:2110: ======================================================================
13:48:25 INFO opendrift:2111: 2025-12-16 14:48:02.868659 - step 2 of 48 - 10000 active elements (0 deactivated)
13:48:25 DEBUG opendrift:2117: 0 elements scheduled.
13:48:25 DEBUG opendrift:2119: ======================================================================
13:48:25 DEBUG opendrift:2130: 74.76725354271817 <- latitude -> 74.88685151023525
13:48:25 DEBUG opendrift:2130: 18.004859298008633 <- longitude -> 18.274638993211415
13:48:25 DEBUG opendrift:2128: z = 0.0
13:48:25 DEBUG opendrift:2131: ---------------------------------
13:48:25 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:25 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:48:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:25 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:48:25 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:25 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:25 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:48:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:48:25 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:48:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:48:25 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:25 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:25 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:48:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:25 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:25 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:25 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:25 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:48:25 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 14:00:00 (before)
2025-12-16 15:00:00 (after)
13:48:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:48:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:48:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:48:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -42.76651528542568 and -41.34769553390365 degrees.
13:48:27 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:48:27 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:48:27 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:48:27 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:48:27 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:48:27 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x13x7) for time after (2025-12-16 15:00:00)
13:48:27 WARNING opendrift.readers.basereader.structured:324: 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:48:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 14:00:00) in space (linearNDFast)
13:48:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:48:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 15:00:00) in space (linearNDFast)
13:48:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:48:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 14:00:00, weight 0.20) and
after (2025-12-16 15:00:00, weight 0.80) in time
13:48:27 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:48:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.998666926884624 and 42.26203052187126 degrees.
13:48:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.998666926884624 and 42.26203052187126 degrees.
13:48:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.998666926884624 and 42.26203052187126 degrees.
13:48:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.998666926884624 and 42.26203052187126 degrees.
13:48:27 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:27 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:48:27 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:48:27 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:48:27 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:48:27 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:48:27 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.0967607 (min) 0.0804329 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0546726 (min) 0.0279667 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 207.716 (min) 283.133 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.812671 (min) -0.800043 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: x_wind: -12.8016 (min) -11.3468 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.91462 (min) 4.41226 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 3.50801 (min) 4.84708 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.8342 (min) 35.034 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:48:27 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:48:27 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.545443, mean: 3.961149, max: 4.510383
13:48:27 DEBUG opendrift:696: No elements hit coastline.
13:48:27 DEBUG opendrift:767: No elements hit seafloor.
13:48:27 DEBUG opendrift:1707: No elements to deactivate
13:48:27 DEBUG opendrift:2167: Calling OpenBerg.update()
13:48:27 DEBUG opendrift.models.openberg:551: Melting is disabled
13:48:27 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:48:27 DEBUG opendrift.models.openberg:524: No grounded icebergs detected in this timestep
13:48:38 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0036326958526624563 and 1.3010692822175616 m/s
13:48:38 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:48:38 DEBUG opendrift:2110: ======================================================================
13:48:38 INFO opendrift:2111: 2025-12-16 15:48:02.868659 - step 3 of 48 - 10000 active elements (0 deactivated)
13:48:38 DEBUG opendrift:2117: 0 elements scheduled.
13:48:38 DEBUG opendrift:2119: ======================================================================
13:48:38 DEBUG opendrift:2130: 74.77094587543766 <- latitude -> 74.98882017072786
13:48:38 DEBUG opendrift:2130: 17.99041874888288 <- longitude -> 18.301707824752786
13:48:38 DEBUG opendrift:2128: z = 0.0
13:48:38 DEBUG opendrift:2131: ---------------------------------
13:48:38 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:38 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:48:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:38 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:48:38 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:38 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:48:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:48:38 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:48:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:48:38 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:38 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:38 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:48:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:38 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:38 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:38 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:48:38 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 15:00:00 (before)
2025-12-16 16:00:00 (after)
13:48:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:48:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:48:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:48:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -42.937701103435955 and -41.15873563524567 degrees.
13:48:41 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:48:41 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:48:41 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:48:41 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:48:41 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:48:41 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:48:41 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 16x16x7) for time after (2025-12-16 16:00:00)
13:48:41 WARNING opendrift.readers.basereader.structured:324: 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:48:41 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 15:00:00) in space (linearNDFast)
13:48:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 1
13:48:41 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 16:00:00) in space (linearNDFast)
13:48:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:48:41 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 15:00:00, weight 0.20) and
after (2025-12-16 16:00:00, weight 0.80) in time
13:48:41 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:48:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.98452365360459 and 42.288407817320866 degrees.
13:48:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.98452365360459 and 42.288407817320866 degrees.
13:48:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.98452365360459 and 42.288407817320866 degrees.
13:48:41 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.98452365360459 and 42.288407817320866 degrees.
13:48:41 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:41 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:48:41 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:48:41 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:48:41 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:48:41 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:48:41 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.174665 (min) 0.00566915 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0577754 (min) 0.037855 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 113.559 (min) 285.684 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.894804 (min) -0.885017 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: x_wind: -13.5356 (min) -11.7863 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.48719 (min) 4.96899 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 2.85417 (min) 4.84422 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.7189 (min) 35.0346 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:48:41 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:48:41 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.716689, mean: 4.265766, max: 5.114412
13:48:41 DEBUG opendrift:696: No elements hit coastline.
13:48:41 DEBUG opendrift:767: No elements hit seafloor.
13:48:41 DEBUG opendrift:1707: No elements to deactivate
13:48:41 DEBUG opendrift:2167: Calling OpenBerg.update()
13:48:41 DEBUG opendrift.models.openberg:551: Melting is disabled
13:48:41 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:48:41 DEBUG opendrift.models.openberg:524: No grounded icebergs detected in this timestep
13:48:53 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0020962482474473475 and 1.0050923494063644 m/s
13:48:53 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:48:53 DEBUG opendrift:2110: ======================================================================
13:48:53 INFO opendrift:2111: 2025-12-16 16:48:02.868659 - step 4 of 48 - 10000 active elements (0 deactivated)
13:48:53 DEBUG opendrift:2117: 0 elements scheduled.
13:48:53 DEBUG opendrift:2119: ======================================================================
13:48:53 DEBUG opendrift:2130: 74.79010486422301 <- latitude -> 75.1049465163108
13:48:53 DEBUG opendrift:2130: 17.928882117505232 <- longitude -> 18.31794117655797
13:48:53 DEBUG opendrift:2128: z = 0.0
13:48:53 DEBUG opendrift:2131: ---------------------------------
13:48:53 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:53 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:48:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:53 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:48:53 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:53 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:48:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:48:53 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:48:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:48:53 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:53 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:48:53 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:48:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:48:53 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:48:53 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:48:53 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:48:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:48:53 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 16:00:00 (before)
2025-12-16 17:00:00 (after)
13:48:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:48:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:48:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:48:56 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -43.106052893098386 and -40.905083533832695 degrees.
13:48:56 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:48:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:48:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:48:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:48:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:48:56 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:48:56 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 19x20x7) for time after (2025-12-16 17:00:00)
13:48:56 WARNING opendrift.readers.basereader.structured:324: 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:48:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 16:00:00) in space (linearNDFast)
13:48:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:48:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 17:00:00) in space (linearNDFast)
13:48:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:48:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 16:00:00, weight 0.20) and
after (2025-12-16 17:00:00, weight 0.80) in time
13:48:56 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:48:56 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.92434432480242 and 42.3042374014372 degrees.
13:48:56 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.92434432480242 and 42.3042374014372 degrees.
13:48:56 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.92434432480242 and 42.3042374014372 degrees.
13:48:56 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.92434432480242 and 42.3042374014372 degrees.
13:48:56 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:48:56 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:48:56 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:48:56 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:48:56 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:48:56 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:48:56 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.334401 (min) -0.0289291 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0702712 (min) 0.0623917 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 76.0485 (min) 288.143 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.842312 (min) -0.824449 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: x_wind: -14.4756 (min) -11.7375 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.44125 (min) 5.35961 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 2.32183 (min) 4.86204 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.6481 (min) 35.0343 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:48:56 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:48:56 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.697724, mean: 4.376859, max: 5.861374
13:48:56 DEBUG opendrift:696: No elements hit coastline.
13:48:56 DEBUG opendrift:767: No elements hit seafloor.
13:48:56 DEBUG opendrift:1707: No elements to deactivate
13:48:56 DEBUG opendrift:2167: Calling OpenBerg.update()
13:48:56 DEBUG opendrift.models.openberg:551: Melting is disabled
13:48:56 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:48:56 DEBUG opendrift.models.openberg:524: No grounded icebergs detected in this timestep
13:49:11 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.004456933434311514 and 0.9963995384733544 m/s
13:49:11 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:49:11 DEBUG opendrift:2110: ======================================================================
13:49:11 INFO opendrift:2111: 2025-12-16 17:48:02.868659 - step 5 of 48 - 10000 active elements (0 deactivated)
13:49:11 DEBUG opendrift:2117: 0 elements scheduled.
13:49:11 DEBUG opendrift:2119: ======================================================================
13:49:11 DEBUG opendrift:2130: 74.80190682453738 <- latitude -> 75.2400144504688
13:49:11 DEBUG opendrift:2130: 17.882645712039928 <- longitude -> 18.343695768721638
13:49:11 DEBUG opendrift:2128: z = 0.0
13:49:11 DEBUG opendrift:2131: ---------------------------------
13:49:11 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:49:11 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:49:11 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:49:11 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:49:11 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:49:11 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:49:11 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:49:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:49:11 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:49:11 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:49:11 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:49:11 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:49:11 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:49:11 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:49:11 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:49:11 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:49:11 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:49:11 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:49:11 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 17:00:00 (before)
2025-12-16 18:00:00 (after)
13:49:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:49:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:49:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:49:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -43.33797771245425 and -40.64947062284685 degrees.
13:49:14 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:49:14 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:49:14 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:49:14 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:49:14 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:49:14 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:49:14 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 23x24x7) for time after (2025-12-16 18:00:00)
13:49:14 WARNING opendrift.readers.basereader.structured:324: 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:49:14 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 17:00:00) in space (linearNDFast)
13:49:14 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 1
13:49:14 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 18:00:00) in space (linearNDFast)
13:49:14 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:49:14 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 17:00:00, weight 0.20) and
after (2025-12-16 18:00:00, weight 0.80) in time
13:49:14 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:49:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.87921523131674 and 42.32929108257892 degrees.
13:49:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.87921523131674 and 42.32929108257892 degrees.
13:49:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.87921523131674 and 42.32929108257892 degrees.
13:49:14 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.87921523131674 and 42.32929108257892 degrees.
13:49:14 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:49:14 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:49:14 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:49:14 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:49:14 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:49:14 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:49:14 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.628779 (min) -0.049177 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0111907 (min) 0.103616 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 58.2741 (min) 287.582 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.707124 (min) -0.68009 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: x_wind: -15.7126 (min) -12.0037 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.94104 (min) 5.22809 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 1.83211 (min) 4.87701 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.575 (min) 35.0383 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:49:14 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:49:14 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.926678, mean: 4.813692, max: 6.745806
13:49:14 DEBUG opendrift:696: No elements hit coastline.
13:49:14 DEBUG opendrift:767: No elements hit seafloor.
13:49:14 DEBUG opendrift:1707: No elements to deactivate
13:49:14 DEBUG opendrift:2167: Calling OpenBerg.update()
13:49:14 DEBUG opendrift.models.openberg:551: Melting is disabled
13:49:14 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:49:14 DEBUG opendrift.models.openberg:524: No grounded icebergs detected in this timestep
13:49:29 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0022201040374701577 and 1.0604002543977697 m/s
13:49:29 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:49:29 DEBUG opendrift:2110: ======================================================================
13:49:29 INFO opendrift:2111: 2025-12-16 18:48:02.868659 - step 6 of 48 - 10000 active elements (0 deactivated)
13:49:29 DEBUG opendrift:2117: 0 elements scheduled.
13:49:29 DEBUG opendrift:2119: ======================================================================
13:49:29 DEBUG opendrift:2130: 74.8220652749165 <- latitude -> 75.39583528412211
13:49:29 DEBUG opendrift:2130: 17.84992329625224 <- longitude -> 18.346954390399507
13:49:29 DEBUG opendrift:2128: z = 0.0
13:49:29 DEBUG opendrift:2131: ---------------------------------
13:49:29 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:49:29 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:49:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:49:29 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:49:29 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:49:29 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:49:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:49:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:49:29 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:49:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:49:29 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:49:29 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:49:29 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:49:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:49:29 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:49:29 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:49:29 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:49:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:49:29 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 18:00:00 (before)
2025-12-16 19:00:00 (after)
13:49:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:49:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:49:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:49:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -43.630708246577164 and -40.38222072140091 degrees.
13:49:32 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:49:32 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:49:32 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:49:32 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:49:32 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:49:32 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:49:32 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 28x28x7) for time after (2025-12-16 19:00:00)
13:49:32 WARNING opendrift.readers.basereader.structured:324: 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:49:32 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 18:00:00) in space (linearNDFast)
13:49:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:49:32 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 19:00:00) in space (linearNDFast)
13:49:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:49:32 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 18:00:00, weight 0.20) and
after (2025-12-16 19:00:00, weight 0.80) in time
13:49:32 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:49:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.846963001580086 and 42.33245380813571 degrees.
13:49:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.846963001580086 and 42.33245380813571 degrees.
13:49:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.846963001580086 and 42.33245380813571 degrees.
13:49:32 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.846963001580086 and 42.33245380813571 degrees.
13:49:32 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:49:32 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:49:32 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:49:32 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:49:32 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:49:32 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:49:32 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.683803 (min) -0.0852841 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0.0588794 (min) 0.312204 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 53.7434 (min) 285.704 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.542916 (min) -0.50275 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.1395 (min) -13.2391 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.51049 (min) 6.08386 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 1.63328 (min) 4.66724 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.5506 (min) 35.0122 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:49:32 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:49:32 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 4.614884, mean: 5.449843, max: 8.137048
13:49:32 DEBUG opendrift:696: No elements hit coastline.
13:49:32 DEBUG opendrift:767: No elements hit seafloor.
13:49:32 DEBUG opendrift:1707: No elements to deactivate
13:49:32 DEBUG opendrift:2167: Calling OpenBerg.update()
13:49:32 DEBUG opendrift.models.openberg:551: Melting is disabled
13:49:32 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:49:32 DEBUG opendrift.models.openberg:524: No grounded icebergs detected in this timestep
13:49:52 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.00425812164921163 and 0.9264911264631978 m/s
13:49:52 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:49:52 DEBUG opendrift:2110: ======================================================================
13:49:52 INFO opendrift:2111: 2025-12-16 19:48:02.868659 - step 7 of 48 - 10000 active elements (0 deactivated)
13:49:52 DEBUG opendrift:2117: 0 elements scheduled.
13:49:52 DEBUG opendrift:2119: ======================================================================
13:49:52 DEBUG opendrift:2130: 74.8497498229585 <- latitude -> 75.58534123946137
13:49:52 DEBUG opendrift:2130: 17.77193364357834 <- longitude -> 18.352468725950168
13:49:52 DEBUG opendrift:2128: z = 0.0
13:49:52 DEBUG opendrift:2131: ---------------------------------
13:49:52 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:49:52 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:49:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:49:52 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:49:52 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:49:52 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:49:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:49:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:49:52 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:49:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:49:52 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:49:52 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:49:52 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:49:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:49:52 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:49:52 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:49:52 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:49:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:49:52 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 19:00:00 (before)
2025-12-16 20:00:00 (after)
13:49:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:49:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:49:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:49:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -43.80280912289419 and -40.04627821577781 degrees.
13:49:55 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:49:55 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:49:55 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:49:55 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:49:55 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:49:55 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:49:55 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 32x32x7) for time after (2025-12-16 20:00:00)
13:49:55 WARNING opendrift.readers.basereader.structured:324: 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:49:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 19:00:00) in space (linearNDFast)
13:49:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:49:55 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 20:00:00) in space (linearNDFast)
13:49:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:49:55 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 19:00:00, weight 0.20) and
after (2025-12-16 20:00:00, weight 0.80) in time
13:49:55 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:49:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.770105416319666 and 42.33777088367456 degrees.
13:49:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.770105416319666 and 42.33777088367456 degrees.
13:49:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.770105416319666 and 42.33777088367456 degrees.
13:49:55 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.770105416319666 and 42.33777088367456 degrees.
13:49:55 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:49:55 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:49:55 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:49:55 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:49:55 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:49:55 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:49:55 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.626044 (min) -0.121042 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0.138607 (min) 0.609508 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 53.4312 (min) 270.854 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.417659 (min) -0.348841 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: x_wind: -18.584 (min) -13.8508 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: y_wind: 4.05627 (min) 6.81561 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 1.62253 (min) 4.28594 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.5485 (min) 34.959 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:49:55 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:49:55 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 5.125421, mean: 6.333102, max: 9.625405
13:49:55 DEBUG opendrift:696: No elements hit coastline.
13:49:55 DEBUG opendrift:767: No elements hit seafloor.
13:49:56 DEBUG opendrift:1707: No elements to deactivate
13:49:56 DEBUG opendrift:2167: Calling OpenBerg.update()
13:49:56 DEBUG opendrift.models.openberg:551: Melting is disabled
13:49:56 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:49:56 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 1
13:50:19 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.949709506556256 m/s
13:50:19 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:50:19 DEBUG opendrift:2110: ======================================================================
13:50:19 INFO opendrift:2111: 2025-12-16 20:48:02.868659 - step 8 of 48 - 10000 active elements (0 deactivated)
13:50:19 DEBUG opendrift:2117: 0 elements scheduled.
13:50:19 DEBUG opendrift:2119: ======================================================================
13:50:19 DEBUG opendrift:2130: 74.87845816053337 <- latitude -> 75.79605435634782
13:50:19 DEBUG opendrift:2130: 17.685932163220382 <- longitude -> 18.318996222254132
13:50:19 DEBUG opendrift:2128: z = 0.0
13:50:19 DEBUG opendrift:2131: ---------------------------------
13:50:19 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:50:19 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:50:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:50:19 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:50:19 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:50:19 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:50:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:50:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:50:19 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:50:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:50:19 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:50:19 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:50:19 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:50:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:50:19 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:50:19 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:50:19 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:50:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:50:19 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 20:00:00 (before)
2025-12-16 21:00:00 (after)
13:50:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:50:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:50:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:50:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -44.22241009287227 and -39.65062841523801 degrees.
13:50:23 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:50:23 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:50:23 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:50:23 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:50:23 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:50:23 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:50:23 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 38x39x7) for time after (2025-12-16 21:00:00)
13:50:23 WARNING opendrift.readers.basereader.structured:324: 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:50:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 20:00:00) in space (linearNDFast)
13:50:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:50:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 21:00:00) in space (linearNDFast)
13:50:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:50:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 20:00:00, weight 0.20) and
after (2025-12-16 21:00:00, weight 0.80) in time
13:50:23 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:50:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.685827052033474 and 42.3050346316766 degrees.
13:50:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.685827052033474 and 42.3050346316766 degrees.
13:50:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.685827052033474 and 42.3050346316766 degrees.
13:50:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.685827052033474 and 42.3050346316766 degrees.
13:50:23 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:50:23 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:50:23 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:50:23 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:50:23 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:50:23 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:50:23 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.438987 (min) -0.123709 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0.146171 (min) 0.849593 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 49.2225 (min) 249.667 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.360426 (min) -0.274306 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.2161 (min) -14.6876 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: y_wind: 4.04717 (min) 7.17183 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 1.48693 (min) 4.18714 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.5401 (min) 34.923 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:50:23 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:50:23 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 5.719645, mean: 7.298895, max: 10.324406
13:50:23 DEBUG opendrift:696: No elements hit coastline.
13:50:23 DEBUG opendrift:767: No elements hit seafloor.
13:50:23 DEBUG opendrift:1707: No elements to deactivate
13:50:23 DEBUG opendrift:2167: Calling OpenBerg.update()
13:50:23 DEBUG opendrift.models.openberg:551: Melting is disabled
13:50:23 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:50:23 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 19
13:50:49 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.1145762514903608 m/s
13:50:49 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:50:49 DEBUG opendrift:2110: ======================================================================
13:50:49 INFO opendrift:2111: 2025-12-16 21:48:02.868659 - step 9 of 48 - 10000 active elements (0 deactivated)
13:50:49 DEBUG opendrift:2117: 0 elements scheduled.
13:50:49 DEBUG opendrift:2119: ======================================================================
13:50:49 DEBUG opendrift:2130: 74.8962178425523 <- latitude -> 76.03117726413329
13:50:49 DEBUG opendrift:2130: 17.661778725250993 <- longitude -> 18.32057776765043
13:50:49 DEBUG opendrift:2128: z = 0.0
13:50:49 DEBUG opendrift:2131: ---------------------------------
13:50:49 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:50:49 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:50:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:50:49 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:50:49 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:50:49 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:50:49 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:50:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:50:49 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:50:49 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:50:49 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:50:49 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:50:49 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:50:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:50:49 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:50:49 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:50:49 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:50:49 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:50:49 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 21:00:00 (before)
2025-12-16 22:00:00 (after)
13:50:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:50:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:50:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:50:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -44.647663533056196 and -39.170787196339695 degrees.
13:50:52 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:50:52 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:50:52 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:50:52 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:50:52 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:50:52 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:50:52 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 45x46x7) for time after (2025-12-16 22:00:00)
13:50:52 WARNING opendrift.readers.basereader.structured:324: 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:50:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 21:00:00) in space (linearNDFast)
13:50:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:50:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 22:00:00) in space (linearNDFast)
13:50:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:50:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 21:00:00, weight 0.20) and
after (2025-12-16 22:00:00, weight 0.80) in time
13:50:53 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:50:53 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.66236950938308 and 42.30651563699608 degrees.
13:50:53 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.66236950938308 and 42.30651563699608 degrees.
13:50:53 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.66236950938308 and 42.30651563699608 degrees.
13:50:53 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.66236950938308 and 42.30651563699608 degrees.
13:50:53 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:50:53 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:50:53 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:50:53 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:50:53 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:50:53 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:50:53 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.339377 (min) 0.00215707 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0.166712 (min) 0.933465 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 48.0243 (min) 265.676 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.321276 (min) -0.216979 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.6176 (min) -15.8484 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: y_wind: 4.85084 (min) 6.82973 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 1.44074 (min) 4.30061 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.5357 (min) 34.8951 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:50:53 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:50:53 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 6.757708, mean: 8.787271, max: 10.514571
13:50:53 DEBUG opendrift:696: No elements hit coastline.
13:50:53 DEBUG opendrift:767: No elements hit seafloor.
13:50:53 DEBUG opendrift:1707: No elements to deactivate
13:50:53 DEBUG opendrift:2167: Calling OpenBerg.update()
13:50:53 DEBUG opendrift.models.openberg:551: Melting is disabled
13:50:53 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:50:53 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 210
13:51:17 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.004492225096837 m/s
13:51:17 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:51:17 DEBUG opendrift:2110: ======================================================================
13:51:17 INFO opendrift:2111: 2025-12-16 22:48:02.868659 - step 10 of 48 - 10000 active elements (0 deactivated)
13:51:17 DEBUG opendrift:2117: 0 elements scheduled.
13:51:17 DEBUG opendrift:2119: ======================================================================
13:51:17 DEBUG opendrift:2130: 74.92947895957836 <- latitude -> 76.25536366858827
13:51:17 DEBUG opendrift:2130: 17.59448690858922 <- longitude -> 18.35279768288316
13:51:17 DEBUG opendrift:2128: z = 0.0
13:51:17 DEBUG opendrift:2131: ---------------------------------
13:51:17 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:51:17 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:51:17 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:51:17 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:51:17 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:51:17 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:51:17 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:51:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:51:17 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:51:17 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:51:17 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:51:17 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:51:17 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:51:17 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:51:17 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:51:17 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:51:17 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:51:17 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:51:17 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 22:00:00 (before)
2025-12-16 23:00:00 (after)
13:51:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:51:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:51:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:51:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -45.01883603943649 and -38.75076425597921 degrees.
13:51:20 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:51:20 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:51:20 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:51:20 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:51:20 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:51:20 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:51:20 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 51x52x7) for time after (2025-12-16 23:00:00)
13:51:20 WARNING opendrift.readers.basereader.structured:324: 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:51:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 22:00:00) in space (linearNDFast)
13:51:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 1
13:51:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-16 23:00:00) in space (linearNDFast)
13:51:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:51:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 22:00:00, weight 0.20) and
after (2025-12-16 23:00:00, weight 0.80) in time
13:51:20 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:51:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.59677341844685 and 42.33728444210805 degrees.
13:51:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.59677341844685 and 42.33728444210805 degrees.
13:51:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.59677341844685 and 42.33728444210805 degrees.
13:51:20 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.59677341844685 and 42.33728444210805 degrees.
13:51:20 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:51:20 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:51:20 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:51:20 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:51:20 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:51:20 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:51:20 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.240191 (min) 0.36399 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: 0.0980408 (min) 0.886731 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 45.6671 (min) 299.947 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.330355 (min) -0.203997 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.789 (min) -17.2675 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: y_wind: 5.16652 (min) 6.365 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 1.45818 (min) 4.37832 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.5282 (min) 34.9038 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:51:20 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:51:20 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 7.991557, mean: 9.622248, max: 10.588597
13:51:20 DEBUG opendrift:696: No elements hit coastline.
13:51:20 DEBUG opendrift:767: No elements hit seafloor.
13:51:20 DEBUG opendrift:1707: No elements to deactivate
13:51:20 DEBUG opendrift:2167: Calling OpenBerg.update()
13:51:20 DEBUG opendrift.models.openberg:551: Melting is disabled
13:51:20 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:51:20 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 690
13:51:20 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 2
13:51:45 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.173489137978291 m/s
13:51:45 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:51:45 DEBUG opendrift:2110: ======================================================================
13:51:45 INFO opendrift:2111: 2025-12-16 23:48:02.868659 - step 11 of 48 - 10000 active elements (0 deactivated)
13:51:45 DEBUG opendrift:2117: 0 elements scheduled.
13:51:45 DEBUG opendrift:2119: ======================================================================
13:51:45 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 76.46711279134485
13:51:45 DEBUG opendrift:2130: 17.52031604206167 <- longitude -> 18.395107833939385
13:51:45 DEBUG opendrift:2128: z = 0.0
13:51:45 DEBUG opendrift:2131: ---------------------------------
13:51:45 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:51:45 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:51:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:51:45 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:51:45 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:51:45 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:51:45 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:51:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:51:45 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:51:45 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:51:45 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:51:45 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:51:45 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:51:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:51:45 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:51:45 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:51:45 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:51:45 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:51:45 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-16 23:00:00 (before)
2025-12-17 00:00:00 (after)
13:51:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:51:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:51:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:51:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -45.522365038308784 and -38.269380167604716 degrees.
13:51:49 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:51:49 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:51:49 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:51:49 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:51:49 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:51:49 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:51:49 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 58x60x7) for time after (2025-12-17 00:00:00)
13:51:49 WARNING opendrift.readers.basereader.structured:324: 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:51:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-16 23:00:00) in space (linearNDFast)
13:51:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:51:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 00:00:00) in space (linearNDFast)
13:51:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:51:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-16 23:00:00, weight 0.20) and
after (2025-12-17 00:00:00, weight 0.80) in time
13:51:49 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:51:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.52411036058706 and 42.378572968628525 degrees.
13:51:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.52411036058706 and 42.378572968628525 degrees.
13:51:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.52411036058706 and 42.378572968628525 degrees.
13:51:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.52411036058706 and 42.378572968628525 degrees.
13:51:49 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:51:49 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:51:49 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:51:49 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:51:49 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:51:49 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:51:49 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.311776 (min) 0.565428 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.105667 (min) 0.708193 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 42.3845 (min) 287.935 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.455286 (min) -0.259186 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.9629 (min) -17.0996 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: y_wind: 4.5828 (min) 5.9606 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 1.32379 (min) 4.41556 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.1921 (min) 34.9035 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:51:49 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:51:49 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 8.028834, mean: 9.499374, max: 10.605933
13:51:49 DEBUG opendrift:696: No elements hit coastline.
13:51:49 DEBUG opendrift:767: No elements hit seafloor.
13:51:49 DEBUG opendrift:1707: No elements to deactivate
13:51:49 DEBUG opendrift:2167: Calling OpenBerg.update()
13:51:49 DEBUG opendrift.models.openberg:551: Melting is disabled
13:51:49 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:51:49 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 1624
13:52:08 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.012063467011659 m/s
13:52:08 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:52:08 DEBUG opendrift:2110: ======================================================================
13:52:08 INFO opendrift:2111: 2025-12-17 00:48:02.868659 - step 12 of 48 - 10000 active elements (0 deactivated)
13:52:08 DEBUG opendrift:2117: 0 elements scheduled.
13:52:08 DEBUG opendrift:2119: ======================================================================
13:52:08 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 76.66166504267119
13:52:08 DEBUG opendrift:2130: 17.474133403740154 <- longitude -> 18.48534911878131
13:52:08 DEBUG opendrift:2128: z = 0.0
13:52:08 DEBUG opendrift:2131: ---------------------------------
13:52:08 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:52:08 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:52:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:52:08 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:52:08 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:52:08 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:52:08 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:52:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:52:08 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:52:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:52:08 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:52:08 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:52:08 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:52:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:52:08 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:52:08 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:52:08 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:52:08 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:52:08 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 00:00:00 (before)
2025-12-17 01:00:00 (after)
13:52:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:52:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:52:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:52:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -45.905806569489094 and -37.9215786062493 degrees.
13:52:11 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:52:11 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:52:11 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:52:11 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:52:11 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:52:11 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:52:11 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 63x66x7) for time after (2025-12-17 01:00:00)
13:52:11 WARNING opendrift.readers.basereader.structured:324: 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:52:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 00:00:00) in space (linearNDFast)
13:52:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:52:11 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 01:00:00) in space (linearNDFast)
13:52:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:52:11 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 00:00:00, weight 0.20) and
after (2025-12-17 01:00:00, weight 0.80) in time
13:52:11 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:52:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.47880691846708 and 42.46681990563704 degrees.
13:52:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.47880691846708 and 42.46681990563704 degrees.
13:52:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.47880691846708 and 42.46681990563704 degrees.
13:52:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.47880691846708 and 42.46681990563704 degrees.
13:52:11 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:52:11 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:52:11 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:52:11 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:52:11 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:52:11 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:52:11 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.120177 (min) 0.551268 (max)
13:52:11 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0995619 (min) 0.470805 (max)
13:52:11 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 42.3845 (min) 304.618 (max)
13:52:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.637817 (min) -0.387768 (max)
13:52:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:52:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:52:11 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.596 (min) -16.14 (max)
13:52:11 DEBUG opendrift.models.basemodel.environment:894: y_wind: 4.095 (min) 5.9571 (max)
13:52:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 1.07786 (min) 4.44672 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.0925 (min) 34.907 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:52:12 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:52:12 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 6.862672, mean: 9.313405, max: 10.135649
13:52:12 DEBUG opendrift:696: No elements hit coastline.
13:52:12 DEBUG opendrift:767: No elements hit seafloor.
13:52:12 DEBUG opendrift:1707: No elements to deactivate
13:52:12 DEBUG opendrift:2167: Calling OpenBerg.update()
13:52:12 DEBUG opendrift.models.openberg:551: Melting is disabled
13:52:12 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:52:12 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 2992
13:52:26 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9183298580767058 m/s
13:52:26 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:52:26 DEBUG opendrift:2110: ======================================================================
13:52:26 INFO opendrift:2111: 2025-12-17 01:48:02.868659 - step 13 of 48 - 10000 active elements (0 deactivated)
13:52:26 DEBUG opendrift:2117: 0 elements scheduled.
13:52:26 DEBUG opendrift:2119: ======================================================================
13:52:26 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 76.82386323154574
13:52:26 DEBUG opendrift:2130: 17.43077641638824 <- longitude -> 18.520598545101848
13:52:26 DEBUG opendrift:2128: z = 0.0
13:52:26 DEBUG opendrift:2131: ---------------------------------
13:52:26 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:52:26 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:52:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:52:26 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:52:26 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:52:26 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:52:26 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:52:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:52:26 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:52:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:52:26 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:52:26 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:52:26 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:52:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:52:26 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:52:26 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:52:26 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:52:26 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:52:26 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 01:00:00 (before)
2025-12-17 02:00:00 (after)
13:52:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:52:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:52:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:52:29 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -46.22918673643372 and -37.57045598670199 degrees.
13:52:29 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:52:29 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:52:29 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:52:29 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:52:29 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:52:29 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:52:29 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 68x71x7) for time after (2025-12-17 02:00:00)
13:52:29 WARNING opendrift.readers.basereader.structured:324: 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:52:29 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 01:00:00) in space (linearNDFast)
13:52:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:29 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 1
13:52:30 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 02:00:00) in space (linearNDFast)
13:52:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:52:30 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 01:00:00, weight 0.20) and
after (2025-12-17 02:00:00, weight 0.80) in time
13:52:30 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:52:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.43623097151336 and 42.501095259519474 degrees.
13:52:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.43623097151336 and 42.501095259519474 degrees.
13:52:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.43623097151336 and 42.501095259519474 degrees.
13:52:30 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.43623097151336 and 42.501095259519474 degrees.
13:52:30 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:52:30 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:52:30 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:52:30 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:52:30 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:52:30 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:52:30 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.242572 (min) 0.429203 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0602122 (min) 0.300178 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 42.3845 (min) 304.539 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.807841 (min) -0.571801 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.855 (min) -16.2554 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: y_wind: 4.31323 (min) 5.65921 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 0.772472 (min) 4.39621 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 34.0626 (min) 34.9034 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:52:30 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:52:30 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 7.079988, mean: 9.571840, max: 10.444361
13:52:30 DEBUG opendrift:696: No elements hit coastline.
13:52:30 DEBUG opendrift:767: No elements hit seafloor.
13:52:30 DEBUG opendrift:1707: No elements to deactivate
13:52:30 DEBUG opendrift:2167: Calling OpenBerg.update()
13:52:30 DEBUG opendrift.models.openberg:551: Melting is disabled
13:52:30 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:52:30 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3568
13:52:43 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9273357908835471 m/s
13:52:43 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:52:43 DEBUG opendrift:2110: ======================================================================
13:52:43 INFO opendrift:2111: 2025-12-17 02:48:02.868659 - step 14 of 48 - 10000 active elements (0 deactivated)
13:52:43 DEBUG opendrift:2117: 0 elements scheduled.
13:52:43 DEBUG opendrift:2119: ======================================================================
13:52:43 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 76.979603026436
13:52:43 DEBUG opendrift:2130: 17.456039665840745 <- longitude -> 18.562597134648282
13:52:43 DEBUG opendrift:2128: z = 0.0
13:52:43 DEBUG opendrift:2131: ---------------------------------
13:52:43 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:52:43 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:52:43 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:52:43 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:52:43 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:52:43 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:52:43 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:52:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:52:43 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:52:43 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:52:43 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:52:43 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:52:43 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:52:43 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:52:43 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:52:43 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:52:43 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:52:43 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:52:43 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 02:00:00 (before)
2025-12-17 03:00:00 (after)
13:52:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:52:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:52:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:52:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -46.621912601851896 and -37.21599126606341 degrees.
13:52:46 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:52:46 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:52:46 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:52:46 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:52:46 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:52:46 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:52:46 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 73x77x7) for time after (2025-12-17 03:00:00)
13:52:46 WARNING opendrift.readers.basereader.structured:324: 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:52:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 02:00:00) in space (linearNDFast)
13:52:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
13:52:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 03:00:00) in space (linearNDFast)
13:52:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:52:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 02:00:00, weight 0.20) and
after (2025-12-17 03:00:00, weight 0.80) in time
13:52:46 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:52:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.46068609361356 and 42.54195311434789 degrees.
13:52:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.46068609361356 and 42.54195311434789 degrees.
13:52:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.46068609361356 and 42.54195311434789 degrees.
13:52:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.46068609361356 and 42.54195311434789 degrees.
13:52:46 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:52:46 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:52:46 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:52:46 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:52:46 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:52:46 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:52:46 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.183321 (min) 0.266713 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0493196 (min) 0.285946 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 42.3845 (min) 305.248 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.906549 (min) -0.755265 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.9649 (min) -16.1168 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.46053 (min) 5.87948 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 0.194871 (min) 4.41246 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.9536 (min) 34.905 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:52:46 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:52:46 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 7.019649, mean: 9.418036, max: 10.531594
13:52:46 DEBUG opendrift:696: No elements hit coastline.
13:52:46 DEBUG opendrift:767: No elements hit seafloor.
13:52:47 DEBUG opendrift:1707: No elements to deactivate
13:52:47 DEBUG opendrift:2167: Calling OpenBerg.update()
13:52:47 DEBUG opendrift.models.openberg:551: Melting is disabled
13:52:47 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:52:47 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3659
13:53:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9523706133152756 m/s
13:53:02 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:53:02 DEBUG opendrift:2110: ======================================================================
13:53:02 INFO opendrift:2111: 2025-12-17 03:48:02.868659 - step 15 of 48 - 10000 active elements (0 deactivated)
13:53:02 DEBUG opendrift:2117: 0 elements scheduled.
13:53:02 DEBUG opendrift:2119: ======================================================================
13:53:02 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.15439463990876
13:53:02 DEBUG opendrift:2130: 17.42766358711535 <- longitude -> 18.564321553586947
13:53:02 DEBUG opendrift:2128: z = 0.0
13:53:02 DEBUG opendrift:2131: ---------------------------------
13:53:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:53:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:53:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:53:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:53:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:53:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:53:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:53:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:53:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:53:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:53:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:53:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:53:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:53:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:53:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:53:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:53:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:53:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:53:02 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 03:00:00 (before)
2025-12-17 04:00:00 (after)
13:53:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:53:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:53:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:53:05 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -46.953118530883444 and -36.85816402229727 degrees.
13:53:05 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:53:05 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:53:05 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:53:05 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:53:05 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:53:05 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:53:05 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 78x82x7) for time after (2025-12-17 04:00:00)
13:53:05 WARNING opendrift.readers.basereader.structured:324: 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:53:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 03:00:00) in space (linearNDFast)
13:53:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
13:53:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 04:00:00) in space (linearNDFast)
13:53:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:53:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 03:00:00, weight 0.20) and
after (2025-12-17 04:00:00, weight 0.80) in time
13:53:05 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:53:05 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.43278832323527 and 42.54350098250827 degrees.
13:53:05 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.43278832323527 and 42.54350098250827 degrees.
13:53:05 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.43278832323527 and 42.54350098250827 degrees.
13:53:05 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.43278832323527 and 42.54350098250827 degrees.
13:53:05 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:53:05 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:53:05 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:53:05 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:53:05 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:53:05 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:53:05 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.292207 (min) 0.0949699 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.115374 (min) 0.228556 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 42.3845 (min) 303.559 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.944672 (min) -0.759577 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.8563 (min) -15.9149 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.33408 (min) 5.65498 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: 0.0422143 (min) 4.43276 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.9083 (min) 34.9082 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:53:05 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:53:05 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 6.670450, mean: 9.338897, max: 10.320947
13:53:05 DEBUG opendrift:696: No elements hit coastline.
13:53:05 DEBUG opendrift:767: No elements hit seafloor.
13:53:05 DEBUG opendrift:1707: No elements to deactivate
13:53:05 DEBUG opendrift:2167: Calling OpenBerg.update()
13:53:05 DEBUG opendrift.models.openberg:551: Melting is disabled
13:53:05 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:53:05 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3661
13:53:19 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.0245768960379351 m/s
13:53:19 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:53:19 DEBUG opendrift:2110: ======================================================================
13:53:19 INFO opendrift:2111: 2025-12-17 04:48:02.868659 - step 16 of 48 - 10000 active elements (0 deactivated)
13:53:19 DEBUG opendrift:2117: 0 elements scheduled.
13:53:19 DEBUG opendrift:2119: ======================================================================
13:53:19 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.29336657617674
13:53:19 DEBUG opendrift:2130: 17.380908639663815 <- longitude -> 18.583039945871832
13:53:19 DEBUG opendrift:2128: z = 0.0
13:53:19 DEBUG opendrift:2131: ---------------------------------
13:53:19 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:53:19 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:53:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:53:19 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:53:19 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:53:19 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:53:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:53:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:53:19 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:53:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:53:19 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:53:19 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:53:19 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:53:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:53:19 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:53:19 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:53:19 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:53:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:53:19 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 04:00:00 (before)
2025-12-17 05:00:00 (after)
13:53:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:53:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:53:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:53:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -47.287940075445725 and -36.496954493312174 degrees.
13:53:23 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:53:23 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:53:23 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:53:23 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:53:23 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:53:23 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:53:23 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 83x87x7) for time after (2025-12-17 05:00:00)
13:53:23 WARNING opendrift.readers.basereader.structured:324: 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:53:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 04:00:00) in space (linearNDFast)
13:53:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:53:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 05:00:00) in space (linearNDFast)
13:53:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:53:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 04:00:00, weight 0.20) and
after (2025-12-17 05:00:00, weight 0.80) in time
13:53:23 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:53:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.38700408260557 and 42.561661244175745 degrees.
13:53:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.38700408260557 and 42.561661244175745 degrees.
13:53:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.38700408260557 and 42.561661244175745 degrees.
13:53:23 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.38700408260557 and 42.561661244175745 degrees.
13:53:23 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:53:23 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:53:23 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:53:23 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:53:23 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:53:23 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:53:23 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.428437 (min) -0.0558071 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.182094 (min) 0.188844 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 26.0338 (min) 300.679 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.870013 (min) -0.58272 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.5868 (min) -13.7104 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.37891 (min) 4.9598 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -0.780481 (min) 4.42378 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7946 (min) 34.9074 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:53:23 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:53:23 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 5.055072, mean: 9.003014, max: 9.968407
13:53:23 DEBUG opendrift:696: No elements hit coastline.
13:53:23 DEBUG opendrift:767: No elements hit seafloor.
13:53:23 DEBUG opendrift:1707: No elements to deactivate
13:53:23 DEBUG opendrift:2167: Calling OpenBerg.update()
13:53:23 DEBUG opendrift.models.openberg:551: Melting is disabled
13:53:23 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:53:23 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3661
13:53:37 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.990532017416599 m/s
13:53:37 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:53:37 DEBUG opendrift:2110: ======================================================================
13:53:37 INFO opendrift:2111: 2025-12-17 05:48:02.868659 - step 17 of 48 - 10000 active elements (0 deactivated)
13:53:37 DEBUG opendrift:2117: 0 elements scheduled.
13:53:37 DEBUG opendrift:2119: ======================================================================
13:53:37 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.42751163792789
13:53:37 DEBUG opendrift:2130: 17.30939422591059 <- longitude -> 18.58170539393275
13:53:37 DEBUG opendrift:2128: z = 0.0
13:53:37 DEBUG opendrift:2131: ---------------------------------
13:53:37 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:53:37 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:53:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:53:37 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:53:37 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:53:37 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:53:37 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 10000 elements
13:53:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:53:38 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:53:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:53:38 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:53:38 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:53:38 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:53:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:53:38 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:53:38 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:53:38 DEBUG opendrift.models.basemodel.environment:620: Data needed for 10000 elements
13:53:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 10000 elements
13:53:38 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 05:00:00 (before)
2025-12-17 06:00:00 (after)
13:53:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:53:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:53:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:53:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -47.626413519879826 and -36.278597318871476 degrees.
13:53:42 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:53:42 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:53:42 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:53:42 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:53:42 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:53:42 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:53:42 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 86x92x7) for time after (2025-12-17 06:00:00)
13:53:42 WARNING opendrift.readers.basereader.structured:324: 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:53:42 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 05:00:00) in space (linearNDFast)
13:53:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 06:00:00) in space (linearNDFast)
13:53:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:53:42 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 05:00:00, weight 0.20) and
after (2025-12-17 06:00:00, weight 0.80) in time
13:53:42 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:53:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.317002149324985 and 42.5602248162205 degrees.
13:53:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.317002149324985 and 42.5602248162205 degrees.
13:53:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.317002149324985 and 42.5602248162205 degrees.
13:53:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.317002149324985 and 42.5602248162205 degrees.
13:53:42 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:53:42 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:53:42 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:53:42 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:53:42 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:53:42 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:53:42 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.45487 (min) -0.077707 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.234975 (min) 0.174128 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 16.2025 (min) 304.615 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.727696 (min) -0.416646 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.4412 (min) -12.13 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: y_wind: 2.0081 (min) 5.04317 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.10253 (min) 4.45121 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7588 (min) 34.9097 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:53:42 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:53:42 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.724999, mean: 8.716892, max: 9.729914
13:53:42 DEBUG opendrift:699: 2 elements hit land, moving them to the coastline.
13:53:42 DEBUG opendrift:1680: Added status stranded
13:53:42 DEBUG opendrift:1691: 2 elements scheduled for deactivation (stranded)
13:53:42 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:53:43 DEBUG opendrift:767: No elements hit seafloor.
13:53:43 DEBUG opendrift:1711: Removed 2 elements.
13:53:43 DEBUG opendrift:1714: Removed 2 values from environment.
13:53:43 DEBUG opendrift:1719: remove items from profile for z
13:53:43 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:53:43 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:53:43 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:53:43 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:53:43 DEBUG opendrift:1723: Removed 2 values from environment_profiles.
13:53:43 DEBUG opendrift:2167: Calling OpenBerg.update()
13:53:43 DEBUG opendrift.models.openberg:551: Melting is disabled
13:53:43 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:53:43 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3661
13:53:54 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.0310487187829736 m/s
13:53:54 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:53:54 DEBUG opendrift:2110: ======================================================================
13:53:54 INFO opendrift:2111: 2025-12-17 06:48:02.868659 - step 18 of 48 - 9998 active elements (2 deactivated)
13:53:54 DEBUG opendrift:2117: 0 elements scheduled.
13:53:54 DEBUG opendrift:2119: ======================================================================
13:53:54 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.53764129144731
13:53:54 DEBUG opendrift:2130: 17.279607809666306 <- longitude -> 18.582512268353458
13:53:54 DEBUG opendrift:2128: z = 0.0
13:53:54 DEBUG opendrift:2131: ---------------------------------
13:53:54 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:53:54 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:53:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:53:54 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:53:54 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:53:54 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9998 elements
13:53:54 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9998 elements
13:53:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:53:54 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:53:54 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:53:54 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:53:54 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:53:54 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:53:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:53:54 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:53:54 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:53:54 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9998 elements
13:53:54 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9998 elements
13:53:54 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 06:00:00 (before)
2025-12-17 07:00:00 (after)
13:53:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:53:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:53:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:53:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -47.831265510094994 and -35.98554275968758 degrees.
13:53:57 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:53:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:53:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:53:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:53:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:53:57 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:53:57 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 90x95x7) for time after (2025-12-17 07:00:00)
13:53:57 WARNING opendrift.readers.basereader.structured:324: 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:53:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 06:00:00) in space (linearNDFast)
13:53:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 07:00:00) in space (linearNDFast)
13:53:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 1
13:53:58 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:53:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 06:00:00, weight 0.20) and
after (2025-12-17 07:00:00, weight 0.80) in time
13:53:58 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:53:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.287778150999536 and 42.56037735703124 degrees.
13:53:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.287778150999536 and 42.56037735703124 degrees.
13:53:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.287778150999536 and 42.56037735703124 degrees.
13:53:58 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.287778150999536 and 42.56037735703124 degrees.
13:53:58 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:53:58 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:53:58 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:53:58 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:53:58 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:53:58 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:53:58 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.544959 (min) -0.0220742 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.281287 (min) 0.194331 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 304.781 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.559642 (min) -0.242577 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.4463 (min) -11.9066 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: y_wind: 2.23443 (min) 5.53299 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.10407 (min) 4.43687 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7489 (min) 34.9085 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.227208 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0163501 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.267985 (min) 0 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.0336993 (min) 0 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:53:58 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:53:58 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.678421, mean: 8.396817, max: 9.641881
13:53:58 DEBUG opendrift:699: 36 elements hit land, moving them to the coastline.
13:53:58 DEBUG opendrift:1691: 36 elements scheduled for deactivation (stranded)
13:53:58 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:53:58 DEBUG opendrift:767: No elements hit seafloor.
13:53:58 DEBUG opendrift:1711: Removed 36 elements.
13:53:58 DEBUG opendrift:1714: Removed 36 values from environment.
13:53:58 DEBUG opendrift:1719: remove items from profile for z
13:53:58 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:53:58 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:53:58 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:53:58 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:53:58 DEBUG opendrift:1723: Removed 36 values from environment_profiles.
13:53:58 DEBUG opendrift:2167: Calling OpenBerg.update()
13:53:58 DEBUG opendrift.models.openberg:551: Melting is disabled
13:53:58 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:53:58 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3657
13:53:58 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 4
13:54:08 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9499267601665868 m/s
13:54:08 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:54:08 DEBUG opendrift:2110: ======================================================================
13:54:08 INFO opendrift:2111: 2025-12-17 07:48:02.868659 - step 19 of 48 - 9962 active elements (38 deactivated)
13:54:08 DEBUG opendrift:2117: 0 elements scheduled.
13:54:08 DEBUG opendrift:2119: ======================================================================
13:54:08 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.61369353271216
13:54:08 DEBUG opendrift:2130: 17.22019055238841 <- longitude -> 18.61928722575605
13:54:08 DEBUG opendrift:2128: z = 0.0
13:54:08 DEBUG opendrift:2131: ---------------------------------
13:54:08 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:54:08 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:54:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:54:08 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:54:08 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:54:08 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9962 elements
13:54:08 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9962 elements
13:54:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:54:08 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:54:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:54:08 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:54:08 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:54:08 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:54:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:54:08 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:54:08 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:54:08 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9962 elements
13:54:08 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9962 elements
13:54:08 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 07:00:00 (before)
2025-12-17 08:00:00 (after)
13:54:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:54:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:54:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:54:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.10648014404436 and -35.83819360862333 degrees.
13:54:11 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:54:11 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:54:11 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:54:11 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:54:11 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:54:11 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:54:11 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 92x99x7) for time after (2025-12-17 08:00:00)
13:54:11 WARNING opendrift.readers.basereader.structured:324: 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:54:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 07:00:00) in space (linearNDFast)
13:54:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 08:00:00) in space (linearNDFast)
13:54:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:54:11 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 4
13:54:11 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 07:00:00, weight 0.20) and
after (2025-12-17 08:00:00, weight 0.80) in time
13:54:11 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:54:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.22963553070004 and 42.59615513189105 degrees.
13:54:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.22963553070004 and 42.59615513189105 degrees.
13:54:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.22963553070004 and 42.59615513189105 degrees.
13:54:11 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.22963553070004 and 42.59615513189105 degrees.
13:54:11 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:54:11 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:54:11 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:54:11 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:54:11 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:54:11 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:54:11 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.576637 (min) -0.0400093 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.25338 (min) 0.394442 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.813 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.41581 (min) -0.096659 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: x_wind: -19.0198 (min) -11.9751 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: y_wind: 1.91607 (min) 5.67502 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -0.998678 (min) 4.45383 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7715 (min) 34.9084 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0636849 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00451598 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:54:11 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:54:11 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 4.041774, mean: 8.273835, max: 9.384233
13:54:11 DEBUG opendrift:699: 62 elements hit land, moving them to the coastline.
13:54:11 DEBUG opendrift:1691: 62 elements scheduled for deactivation (stranded)
13:54:11 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:54:11 DEBUG opendrift:767: No elements hit seafloor.
13:54:11 DEBUG opendrift:1711: Removed 62 elements.
13:54:11 DEBUG opendrift:1714: Removed 62 values from environment.
13:54:11 DEBUG opendrift:1719: remove items from profile for z
13:54:11 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:54:11 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:54:11 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:54:11 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:54:11 DEBUG opendrift:1723: Removed 62 values from environment_profiles.
13:54:11 DEBUG opendrift:2167: Calling OpenBerg.update()
13:54:11 DEBUG opendrift.models.openberg:551: Melting is disabled
13:54:11 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:54:11 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3653
13:54:11 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 6
13:54:22 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9775198225278814 m/s
13:54:22 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:54:22 DEBUG opendrift:2110: ======================================================================
13:54:22 INFO opendrift:2111: 2025-12-17 08:48:02.868659 - step 20 of 48 - 9900 active elements (100 deactivated)
13:54:22 DEBUG opendrift:2117: 0 elements scheduled.
13:54:22 DEBUG opendrift:2119: ======================================================================
13:54:22 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.29590642193914
13:54:22 DEBUG opendrift:2130: 17.15678657977008 <- longitude -> 18.557081835874538
13:54:22 DEBUG opendrift:2128: z = 0.0
13:54:22 DEBUG opendrift:2131: ---------------------------------
13:54:22 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:54:22 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:54:22 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:54:22 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:54:22 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:54:22 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9900 elements
13:54:22 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9900 elements
13:54:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:54:22 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:54:22 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:54:22 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:54:22 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:54:22 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:54:22 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:54:22 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:54:22 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:54:22 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9900 elements
13:54:22 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9900 elements
13:54:22 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 08:00:00 (before)
2025-12-17 09:00:00 (after)
13:54:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:54:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:54:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:54:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -47.355341454945886 and -36.42430502305024 degrees.
13:54:25 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:54:25 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:54:25 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:54:25 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:54:25 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:54:25 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:54:25 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 84x88x7) for time after (2025-12-17 09:00:00)
13:54:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 08:00:00) in space (linearNDFast)
13:54:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:54:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 09:00:00) in space (linearNDFast)
13:54:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:54:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 08:00:00, weight 0.20) and
after (2025-12-17 09:00:00, weight 0.80) in time
13:54:25 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:54:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.16760716589671 and 42.53527710287835 degrees.
13:54:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.16760716589671 and 42.53527710287835 degrees.
13:54:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.16760716589671 and 42.53527710287835 degrees.
13:54:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.16760716589671 and 42.53527710287835 degrees.
13:54:25 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:54:25 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:54:25 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:54:25 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:54:25 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:54:25 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:54:25 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.530641 (min) -0.0478978 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.282185 (min) 0.5851 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.979 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.324079 (min) -0.0052955 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: x_wind: -18.6514 (min) -14.4241 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: y_wind: 2.86201 (min) 5.98924 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -0.947053 (min) 4.42407 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7896 (min) 34.908 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:54:25 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:54:25 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 5.434687, mean: 8.320570, max: 9.292763
13:54:25 DEBUG opendrift:699: 6 elements hit land, moving them to the coastline.
13:54:25 DEBUG opendrift:1691: 6 elements scheduled for deactivation (stranded)
13:54:25 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:54:25 DEBUG opendrift:767: No elements hit seafloor.
13:54:25 DEBUG opendrift:1711: Removed 6 elements.
13:54:25 DEBUG opendrift:1714: Removed 6 values from environment.
13:54:25 DEBUG opendrift:1719: remove items from profile for z
13:54:25 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:54:25 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:54:25 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:54:25 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:54:25 DEBUG opendrift:1723: Removed 6 values from environment_profiles.
13:54:25 DEBUG opendrift:2167: Calling OpenBerg.update()
13:54:25 DEBUG opendrift.models.openberg:551: Melting is disabled
13:54:25 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:54:25 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3641
13:54:25 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 14
13:54:36 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.961875424890088 m/s
13:54:36 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:54:36 DEBUG opendrift:2110: ======================================================================
13:54:36 INFO opendrift:2111: 2025-12-17 09:48:02.868659 - step 21 of 48 - 9894 active elements (106 deactivated)
13:54:36 DEBUG opendrift:2117: 0 elements scheduled.
13:54:36 DEBUG opendrift:2119: ======================================================================
13:54:36 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.4000428611248
13:54:36 DEBUG opendrift:2130: 17.19623934107644 <- longitude -> 18.516434042128832
13:54:36 DEBUG opendrift:2128: z = 0.0
13:54:36 DEBUG opendrift:2131: ---------------------------------
13:54:36 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:54:36 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:54:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:54:36 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:54:36 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:54:36 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9894 elements
13:54:36 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9894 elements
13:54:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:54:36 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:54:36 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:54:36 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:54:36 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:54:36 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:54:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:54:36 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:54:36 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:54:36 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9894 elements
13:54:36 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9894 elements
13:54:36 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 09:00:00 (before)
2025-12-17 10:00:00 (after)
13:54:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:54:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:54:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:54:39 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -47.626413519879826 and -36.278597318871476 degrees.
13:54:39 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:54:39 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:54:39 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:54:39 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:54:39 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:54:39 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:54:39 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 86x92x7) for time after (2025-12-17 10:00:00)
13:54:39 WARNING opendrift.readers.basereader.structured:324: 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:54:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 09:00:00) in space (linearNDFast)
13:54:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 10:00:00) in space (linearNDFast)
13:54:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:54:39 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 09:00:00, weight 0.20) and
after (2025-12-17 10:00:00, weight 0.80) in time
13:54:39 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:54:39 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.205907679289346 and 42.495586391763645 degrees.
13:54:39 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.205907679289346 and 42.495586391763645 degrees.
13:54:39 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.205907679289346 and 42.495586391763645 degrees.
13:54:39 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.205907679289346 and 42.495586391763645 degrees.
13:54:39 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:54:39 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:54:39 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:54:39 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:54:39 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:54:39 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:54:39 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.503194 (min) 0.0098231 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.287141 (min) 0.672887 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 11.9846 (min) 305.77 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.297572 (min) -0.0235155 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: x_wind: -18.8874 (min) -13.202 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: y_wind: 2.80613 (min) 5.95433 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.1172 (min) 4.42218 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7613 (min) 34.9097 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:54:39 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:54:39 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 4.564562, mean: 8.336465, max: 9.452868
13:54:39 DEBUG opendrift:699: 3 elements hit land, moving them to the coastline.
13:54:39 DEBUG opendrift:1691: 3 elements scheduled for deactivation (stranded)
13:54:39 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:54:39 DEBUG opendrift:767: No elements hit seafloor.
13:54:39 DEBUG opendrift:1711: Removed 3 elements.
13:54:39 DEBUG opendrift:1714: Removed 3 values from environment.
13:54:39 DEBUG opendrift:1719: remove items from profile for z
13:54:39 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:54:39 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:54:39 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:54:39 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:54:39 DEBUG opendrift:1723: Removed 3 values from environment_profiles.
13:54:39 DEBUG opendrift:2167: Calling OpenBerg.update()
13:54:39 DEBUG opendrift.models.openberg:551: Melting is disabled
13:54:39 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:54:39 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3631
13:54:39 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 16
13:54:49 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.0471725002976027 m/s
13:54:49 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:54:49 DEBUG opendrift:2110: ======================================================================
13:54:49 INFO opendrift:2111: 2025-12-17 10:48:02.868659 - step 22 of 48 - 9891 active elements (109 deactivated)
13:54:49 DEBUG opendrift:2117: 0 elements scheduled.
13:54:49 DEBUG opendrift:2119: ======================================================================
13:54:49 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.50527791296902
13:54:49 DEBUG opendrift:2130: 17.166498843643126 <- longitude -> 18.53443881600413
13:54:49 DEBUG opendrift:2128: z = 0.0
13:54:49 DEBUG opendrift:2131: ---------------------------------
13:54:49 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:54:49 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:54:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:54:49 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:54:49 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:54:49 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9891 elements
13:54:49 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9891 elements
13:54:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:54:49 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:54:49 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:54:49 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:54:49 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:54:49 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:54:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:54:49 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:54:49 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:54:49 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9891 elements
13:54:49 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9891 elements
13:54:49 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 10:00:00 (before)
2025-12-17 11:00:00 (after)
13:54:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:54:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:54:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:54:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -47.89984588448104 and -36.059011654450735 degrees.
13:54:52 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:54:52 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:54:52 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:54:52 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:54:52 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:54:52 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:54:52 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 89x96x7) for time after (2025-12-17 11:00:00)
13:54:52 WARNING opendrift.readers.basereader.structured:324: 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:54:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 10:00:00) in space (linearNDFast)
13:54:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 11:00:00) in space (linearNDFast)
13:54:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 1
13:54:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 10:00:00, weight 0.20) and
after (2025-12-17 11:00:00, weight 0.80) in time
13:54:52 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:54:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.17682786024416 and 42.5134456589041 degrees.
13:54:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.17682786024416 and 42.5134456589041 degrees.
13:54:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.17682786024416 and 42.5134456589041 degrees.
13:54:52 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.17682786024416 and 42.5134456589041 degrees.
13:54:52 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:54:52 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:54:52 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:54:52 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:54:52 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:54:52 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:54:52 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.423007 (min) 0.215557 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.230958 (min) 0.619946 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.891 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.343164 (min) -0.105776 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: x_wind: -18.8944 (min) -13.0731 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: y_wind: 2.31726 (min) 5.716 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -0.985603 (min) 4.45518 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7613 (min) 34.9079 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.204529 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0139611 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.169333 (min) 0 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.0255068 (min) 0 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:54:52 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:54:52 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 4.671665, mean: 8.289706, max: 9.440732
13:54:52 DEBUG opendrift:699: 21 elements hit land, moving them to the coastline.
13:54:52 DEBUG opendrift:1691: 21 elements scheduled for deactivation (stranded)
13:54:52 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:54:52 DEBUG opendrift:767: No elements hit seafloor.
13:54:52 DEBUG opendrift:1711: Removed 21 elements.
13:54:52 DEBUG opendrift:1714: Removed 21 values from environment.
13:54:52 DEBUG opendrift:1719: remove items from profile for z
13:54:52 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:54:52 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:54:52 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:54:52 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:54:52 DEBUG opendrift:1723: Removed 21 values from environment_profiles.
13:54:52 DEBUG opendrift:2167: Calling OpenBerg.update()
13:54:52 DEBUG opendrift.models.openberg:551: Melting is disabled
13:54:52 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:54:52 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3634
13:54:52 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 8
13:55:02 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9852077292862927 m/s
13:55:02 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:55:02 DEBUG opendrift:2110: ======================================================================
13:55:02 INFO opendrift:2111: 2025-12-17 11:48:02.868659 - step 23 of 48 - 9870 active elements (130 deactivated)
13:55:02 DEBUG opendrift:2117: 0 elements scheduled.
13:55:02 DEBUG opendrift:2119: ======================================================================
13:55:02 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.59513494405692
13:55:02 DEBUG opendrift:2130: 17.190339784415226 <- longitude -> 18.50342772270379
13:55:02 DEBUG opendrift:2128: z = 0.0
13:55:02 DEBUG opendrift:2131: ---------------------------------
13:55:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:55:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:55:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9870 elements
13:55:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9870 elements
13:55:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:55:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:55:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:55:02 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:02 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:02 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:55:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:02 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:55:02 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:02 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9870 elements
13:55:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9870 elements
13:55:02 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 11:00:00 (before)
2025-12-17 12:00:00 (after)
13:55:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:55:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:55:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:55:05 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.10648014404436 and -35.91193679119093 degrees.
13:55:05 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:55:05 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:55:05 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:55:05 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:55:05 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:55:05 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:55:05 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 91x99x7) for time after (2025-12-17 12:00:00)
13:55:05 WARNING opendrift.readers.basereader.structured:324: 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:55:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 11:00:00) in space (linearNDFast)
13:55:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:05 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 12:00:00) in space (linearNDFast)
13:55:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:55:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:55:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 11:00:00, weight 0.20) and
after (2025-12-17 12:00:00, weight 0.80) in time
13:55:06 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:55:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.199987957978365 and 42.48303588546281 degrees.
13:55:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.199987957978365 and 42.48303588546281 degrees.
13:55:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.199987957978365 and 42.48303588546281 degrees.
13:55:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.199987957978365 and 42.48303588546281 degrees.
13:55:06 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:06 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:55:06 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:55:06 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:55:06 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:55:06 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:55:06 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.327513 (min) 0.351219 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.178974 (min) 0.445843 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.882 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.664572 (min) -0.157397 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: x_wind: -18.9166 (min) -11.6406 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: y_wind: 3.30791 (min) 5.29715 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.02927 (min) 4.44555 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7603 (min) 34.9088 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.013698 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.000917909 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:55:06 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:55:06 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.733396, mean: 8.169467, max: 9.416448
13:55:06 DEBUG opendrift:699: 82 elements hit land, moving them to the coastline.
13:55:06 DEBUG opendrift:1691: 82 elements scheduled for deactivation (stranded)
13:55:06 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:55:06 DEBUG opendrift:767: No elements hit seafloor.
13:55:06 DEBUG opendrift:1711: Removed 82 elements.
13:55:06 DEBUG opendrift:1714: Removed 82 values from environment.
13:55:06 DEBUG opendrift:1719: remove items from profile for z
13:55:06 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:55:06 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:55:06 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:55:06 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:55:06 DEBUG opendrift:1723: Removed 82 values from environment_profiles.
13:55:06 DEBUG opendrift:2167: Calling OpenBerg.update()
13:55:06 DEBUG opendrift.models.openberg:551: Melting is disabled
13:55:06 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:55:06 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3643
13:55:14 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.0914605723702377 m/s
13:55:14 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:55:14 DEBUG opendrift:2110: ======================================================================
13:55:14 INFO opendrift:2111: 2025-12-17 12:48:02.868659 - step 24 of 48 - 9788 active elements (212 deactivated)
13:55:14 DEBUG opendrift:2117: 0 elements scheduled.
13:55:14 DEBUG opendrift:2119: ======================================================================
13:55:14 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.65268488386982
13:55:14 DEBUG opendrift:2130: 17.167854567158066 <- longitude -> 18.54744956381888
13:55:14 DEBUG opendrift:2128: z = 0.0
13:55:14 DEBUG opendrift:2131: ---------------------------------
13:55:14 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:14 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:55:14 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:14 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:55:14 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:14 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9788 elements
13:55:14 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9788 elements
13:55:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:55:14 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:55:14 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:55:14 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:14 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:14 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:55:14 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:14 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:55:14 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:14 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9788 elements
13:55:14 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9788 elements
13:55:14 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 12:00:00 (before)
2025-12-17 13:00:00 (after)
13:55:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:55:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:55:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:55:17 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.2449834462784 and -36.059011654450735 degrees.
13:55:17 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:55:17 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:55:17 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:55:17 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:55:17 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:55:17 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:55:17 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 89x101x7) for time after (2025-12-17 13:00:00)
13:55:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 12:00:00) in space (linearNDFast)
13:55:17 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:17 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 13:00:00) in space (linearNDFast)
13:55:17 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
13:55:17 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 12:00:00, weight 0.20) and
after (2025-12-17 13:00:00, weight 0.80) in time
13:55:17 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:55:18 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.17875829806069 and 42.52560111944066 degrees.
13:55:18 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.17875829806069 and 42.52560111944066 degrees.
13:55:18 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.17875829806069 and 42.52560111944066 degrees.
13:55:18 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.17875829806069 and 42.52560111944066 degrees.
13:55:18 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:18 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:55:18 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:55:18 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:55:18 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:55:18 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:55:18 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.230831 (min) 0.358109 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.096913 (min) 0.359514 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 306.026 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.984125 (min) -0.296689 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: x_wind: -18.3809 (min) -11.3269 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: y_wind: 2.59598 (min) 5.1085 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.08243 (min) 4.46 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7455 (min) 34.9124 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.00169039 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.000116962 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:55:18 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:55:18 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.553452, mean: 7.521315, max: 8.773868
13:55:18 DEBUG opendrift:699: 24 elements hit land, moving them to the coastline.
13:55:18 DEBUG opendrift:1691: 24 elements scheduled for deactivation (stranded)
13:55:18 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:55:18 DEBUG opendrift:767: No elements hit seafloor.
13:55:18 DEBUG opendrift:1711: Removed 24 elements.
13:55:18 DEBUG opendrift:1714: Removed 24 values from environment.
13:55:18 DEBUG opendrift:1719: remove items from profile for z
13:55:18 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:55:18 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:55:18 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:55:18 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:55:18 DEBUG opendrift:1723: Removed 24 values from environment_profiles.
13:55:18 DEBUG opendrift:2167: Calling OpenBerg.update()
13:55:18 DEBUG opendrift.models.openberg:551: Melting is disabled
13:55:18 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:55:18 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3645
13:55:24 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.917287540786127 m/s
13:55:24 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:55:24 DEBUG opendrift:2110: ======================================================================
13:55:24 INFO opendrift:2111: 2025-12-17 13:48:02.868659 - step 25 of 48 - 9764 active elements (236 deactivated)
13:55:24 DEBUG opendrift:2117: 0 elements scheduled.
13:55:24 DEBUG opendrift:2119: ======================================================================
13:55:24 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.70223897454663
13:55:24 DEBUG opendrift:2130: 17.15329699051338 <- longitude -> 18.571001641033615
13:55:24 DEBUG opendrift:2128: z = 0.0
13:55:24 DEBUG opendrift:2131: ---------------------------------
13:55:24 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:24 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:55:24 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:24 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:55:24 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:24 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9764 elements
13:55:24 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9764 elements
13:55:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:55:24 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:55:24 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:55:24 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:24 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:24 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:55:24 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:24 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:55:24 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:24 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9764 elements
13:55:24 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9764 elements
13:55:24 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 13:00:00 (before)
2025-12-17 14:00:00 (after)
13:55:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:55:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:55:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:55:27 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.38408710133095 and -35.98554275968758 degrees.
13:55:27 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:55:27 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:55:27 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:55:27 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:55:27 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:55:27 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:55:27 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 90x103x7) for time after (2025-12-17 14:00:00)
13:55:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 13:00:00) in space (linearNDFast)
13:55:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 14:00:00) in space (linearNDFast)
13:55:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:27 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
13:55:28 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:55:28 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 13:00:00, weight 0.20) and
after (2025-12-17 14:00:00, weight 0.80) in time
13:55:28 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:55:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.548819734294085 degrees.
13:55:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.548819734294085 degrees.
13:55:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.548819734294085 degrees.
13:55:28 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.548819734294085 degrees.
13:55:28 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:28 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:55:28 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:55:28 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:55:28 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:55:28 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:55:28 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.159726 (min) 0.28032 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.0577 (min) 0.401278 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.799 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -1.07294 (min) -0.474329 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.1913 (min) -10.9702 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: y_wind: 1.44294 (min) 5.31353 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.17645 (min) 4.46457 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7331 (min) 34.9061 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0122829 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.000806667 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: 0 (min) 0 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:55:28 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:55:28 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.358323, mean: 6.527968, max: 7.576509
13:55:28 DEBUG opendrift:699: 44 elements hit land, moving them to the coastline.
13:55:28 DEBUG opendrift:1691: 44 elements scheduled for deactivation (stranded)
13:55:28 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:55:28 DEBUG opendrift:767: No elements hit seafloor.
13:55:28 DEBUG opendrift:1711: Removed 44 elements.
13:55:28 DEBUG opendrift:1714: Removed 44 values from environment.
13:55:28 DEBUG opendrift:1719: remove items from profile for z
13:55:28 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:55:28 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:55:28 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:55:28 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:55:28 DEBUG opendrift:1723: Removed 44 values from environment_profiles.
13:55:28 DEBUG opendrift:2167: Calling OpenBerg.update()
13:55:28 DEBUG opendrift.models.openberg:551: Melting is disabled
13:55:28 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:55:28 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3646
13:55:34 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9993409314674988 m/s
13:55:34 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:55:34 DEBUG opendrift:2110: ======================================================================
13:55:34 INFO opendrift:2111: 2025-12-17 14:48:02.868659 - step 26 of 48 - 9720 active elements (280 deactivated)
13:55:34 DEBUG opendrift:2117: 0 elements scheduled.
13:55:34 DEBUG opendrift:2119: ======================================================================
13:55:34 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.75897436053604
13:55:34 DEBUG opendrift:2130: 17.15329699051338 <- longitude -> 18.602663393077595
13:55:34 DEBUG opendrift:2128: z = 0.0
13:55:34 DEBUG opendrift:2131: ---------------------------------
13:55:34 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:34 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:55:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:34 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:55:34 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:34 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9720 elements
13:55:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9720 elements
13:55:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:55:34 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:55:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:55:34 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:34 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:34 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:55:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:34 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:55:34 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:34 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9720 elements
13:55:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9720 elements
13:55:34 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 14:00:00 (before)
2025-12-17 15:00:00 (after)
13:55:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:55:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:55:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:55:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.5237933705581 and -35.83819360862333 degrees.
13:55:38 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:55:38 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:55:38 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:55:38 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:55:38 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:55:38 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:55:38 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 92x105x7) for time after (2025-12-17 15:00:00)
13:55:38 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 14:00:00) in space (linearNDFast)
13:55:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:38 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 15:00:00) in space (linearNDFast)
13:55:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:55:38 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:55:38 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 14:00:00, weight 0.20) and
after (2025-12-17 15:00:00, weight 0.80) in time
13:55:38 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:55:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.579838069446325 degrees.
13:55:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.579838069446325 degrees.
13:55:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.579838069446325 degrees.
13:55:38 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.579838069446325 degrees.
13:55:38 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:38 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:55:38 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:55:38 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:55:38 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:55:38 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:55:38 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.17871 (min) 0.224439 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.201351 (min) 0.390388 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.484 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.957727 (min) -0.651999 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.3698 (min) -10.7797 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: y_wind: 1.08164 (min) 5.05022 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.21216 (min) 4.38173 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.716 (min) 34.901 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.161423 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0104769 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.111319 (min) 0 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0.0149396 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:55:38 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:55:38 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.210844, mean: 5.894247, max: 6.822448
13:55:38 DEBUG opendrift:699: 49 elements hit land, moving them to the coastline.
13:55:38 DEBUG opendrift:1691: 49 elements scheduled for deactivation (stranded)
13:55:38 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:55:38 DEBUG opendrift:767: No elements hit seafloor.
13:55:38 DEBUG opendrift:1711: Removed 49 elements.
13:55:38 DEBUG opendrift:1714: Removed 49 values from environment.
13:55:38 DEBUG opendrift:1719: remove items from profile for z
13:55:38 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:55:38 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:55:38 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:55:38 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:55:38 DEBUG opendrift:1723: Removed 49 values from environment_profiles.
13:55:38 DEBUG opendrift:2167: Calling OpenBerg.update()
13:55:38 DEBUG opendrift.models.openberg:551: Melting is disabled
13:55:38 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:55:38 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3652
13:55:45 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.0363359583150238 m/s
13:55:45 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:55:45 DEBUG opendrift:2110: ======================================================================
13:55:45 INFO opendrift:2111: 2025-12-17 15:48:02.868659 - step 27 of 48 - 9671 active elements (329 deactivated)
13:55:45 DEBUG opendrift:2117: 0 elements scheduled.
13:55:45 DEBUG opendrift:2119: ======================================================================
13:55:45 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.5748615340107
13:55:45 DEBUG opendrift:2130: 17.15329699051338 <- longitude -> 18.617903439576153
13:55:45 DEBUG opendrift:2128: z = 0.0
13:55:45 DEBUG opendrift:2131: ---------------------------------
13:55:45 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:45 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:55:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:45 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:55:45 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:45 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9671 elements
13:55:45 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9671 elements
13:55:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:55:45 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:55:45 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:55:45 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:45 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:45 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:55:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:45 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:55:45 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:45 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9671 elements
13:55:45 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9671 elements
13:55:45 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 15:00:00 (before)
2025-12-17 16:00:00 (after)
13:55:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:55:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:55:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:55:48 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.03745291620122 and -35.98554275968758 degrees.
13:55:48 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:55:48 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:55:48 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:55:48 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:55:48 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:55:48 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:55:48 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 90x98x7) for time after (2025-12-17 16:00:00)
13:55:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 15:00:00) in space (linearNDFast)
13:55:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 16:00:00) in space (linearNDFast)
13:55:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:48 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 1
13:55:49 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:55:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 15:00:00, weight 0.20) and
after (2025-12-17 16:00:00, weight 0.80) in time
13:55:49 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:55:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.594647615521616 degrees.
13:55:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.594647615521616 degrees.
13:55:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.594647615521616 degrees.
13:55:49 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.164422458118445 and 42.594647615521616 degrees.
13:55:49 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:49 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:55:49 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:55:49 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:55:49 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:55:49 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:55:49 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.245305 (min) 0.188674 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.278827 (min) 0.34336 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.797 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.94566 (min) -0.776938 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.7587 (min) -10.6371 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0.468843 (min) 5.10479 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.13873 (min) 4.31862 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7621 (min) 34.9029 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.105225 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00674767 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.0780623 (min) 0 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: 0 (min) 0.00628629 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:55:49 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:55:49 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.300908, mean: 5.701632, max: 7.198605
13:55:49 DEBUG opendrift:699: 91 elements hit land, moving them to the coastline.
13:55:49 DEBUG opendrift:1691: 91 elements scheduled for deactivation (stranded)
13:55:49 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:55:49 DEBUG opendrift:767: No elements hit seafloor.
13:55:49 DEBUG opendrift:1711: Removed 91 elements.
13:55:49 DEBUG opendrift:1714: Removed 91 values from environment.
13:55:49 DEBUG opendrift:1719: remove items from profile for z
13:55:49 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:55:49 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:55:49 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:55:49 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:55:49 DEBUG opendrift:1723: Removed 91 values from environment_profiles.
13:55:49 DEBUG opendrift:2167: Calling OpenBerg.update()
13:55:49 DEBUG opendrift.models.openberg:551: Melting is disabled
13:55:49 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:55:49 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3676
13:55:49 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 2
13:55:56 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.1571611470656387 m/s
13:55:56 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:55:56 DEBUG opendrift:2110: ======================================================================
13:55:56 INFO opendrift:2111: 2025-12-17 16:48:02.868659 - step 28 of 48 - 9580 active elements (420 deactivated)
13:55:56 DEBUG opendrift:2117: 0 elements scheduled.
13:55:56 DEBUG opendrift:2119: ======================================================================
13:55:56 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.59512646970174
13:55:56 DEBUG opendrift:2130: 17.07096120153375 <- longitude -> 18.631772941217754
13:55:56 DEBUG opendrift:2128: z = 0.0
13:55:56 DEBUG opendrift:2131: ---------------------------------
13:55:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:55:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:55:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9580 elements
13:55:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9580 elements
13:55:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:55:56 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:55:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:55:56 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:55:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:55:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:55:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:55:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:55:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9580 elements
13:55:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9580 elements
13:55:56 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 16:00:00 (before)
2025-12-17 17:00:00 (after)
13:55:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:55:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:55:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:55:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.17565689273473 and -36.059011654450735 degrees.
13:55:59 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:55:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:55:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:55:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:55:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:55:59 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:55:59 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 89x100x7) for time after (2025-12-17 17:00:00)
13:55:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 16:00:00) in space (linearNDFast)
13:55:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:59 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 17:00:00) in space (linearNDFast)
13:55:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 161 elements, expanding data 1
13:55:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:55:59 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 16:00:00, weight 0.20) and
after (2025-12-17 17:00:00, weight 0.80) in time
13:55:59 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:55:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.08357712551494 and 42.60791102409687 degrees.
13:55:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.08357712551494 and 42.60791102409687 degrees.
13:55:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.08357712551494 and 42.60791102409687 degrees.
13:55:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.08357712551494 and 42.60791102409687 degrees.
13:55:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:55:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:55:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:55:59 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:55:59 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:55:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:55:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.488546 (min) 0.10495 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.275409 (min) 0.275176 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.528 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.884328 (min) -0.620629 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.6885 (min) -10.5201 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: -0.315967 (min) 4.63011 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.13945 (min) 4.37254 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 32.9802 (min) 34.9047 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.175883 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0111387 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.144079 (min) 0 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.00041179 (min) 0 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:55:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:55:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.195582, mean: 5.405255, max: 7.317504
13:55:59 DEBUG opendrift:699: 122 elements hit land, moving them to the coastline.
13:55:59 DEBUG opendrift:1691: 122 elements scheduled for deactivation (stranded)
13:55:59 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:56:00 DEBUG opendrift:767: No elements hit seafloor.
13:56:00 DEBUG opendrift:1711: Removed 122 elements.
13:56:00 DEBUG opendrift:1714: Removed 122 values from environment.
13:56:00 DEBUG opendrift:1719: remove items from profile for z
13:56:00 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:56:00 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:56:00 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:56:00 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:56:00 DEBUG opendrift:1723: Removed 122 values from environment_profiles.
13:56:00 DEBUG opendrift:2167: Calling OpenBerg.update()
13:56:00 DEBUG opendrift.models.openberg:551: Melting is disabled
13:56:00 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:56:00 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3708
13:56:00 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 2
13:56:07 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.086051720604502 m/s
13:56:07 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:56:07 DEBUG opendrift:2110: ======================================================================
13:56:07 INFO opendrift:2111: 2025-12-17 17:48:02.868659 - step 29 of 48 - 9458 active elements (542 deactivated)
13:56:07 DEBUG opendrift:2117: 0 elements scheduled.
13:56:07 DEBUG opendrift:2119: ======================================================================
13:56:07 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.63630987364087
13:56:07 DEBUG opendrift:2130: 17.11319856600927 <- longitude -> 18.655921534697256
13:56:07 DEBUG opendrift:2128: z = 0.0
13:56:07 DEBUG opendrift:2131: ---------------------------------
13:56:07 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:07 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:56:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:07 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:56:07 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:07 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9458 elements
13:56:07 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9458 elements
13:56:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:56:07 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:56:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:56:07 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:07 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:07 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:56:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:07 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:56:07 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:07 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9458 elements
13:56:07 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9458 elements
13:56:07 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 17:00:00 (before)
2025-12-17 18:00:00 (after)
13:56:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:56:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:56:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:56:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.2449834462784 and -36.059011654450735 degrees.
13:56:10 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:56:10 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:56:10 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:56:10 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:56:10 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:56:10 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:56:10 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 89x101x7) for time after (2025-12-17 18:00:00)
13:56:10 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 17:00:00) in space (linearNDFast)
13:56:10 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:10 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 18:00:00) in space (linearNDFast)
13:56:10 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:56:10 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:56:10 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 17:00:00, weight 0.20) and
after (2025-12-17 18:00:00, weight 0.80) in time
13:56:10 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:56:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.12491226611419 and 42.631577281824384 degrees.
13:56:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.12491226611419 and 42.631577281824384 degrees.
13:56:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.12491226611419 and 42.631577281824384 degrees.
13:56:10 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.12491226611419 and 42.631577281824384 degrees.
13:56:10 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:10 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:56:10 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:56:10 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:56:10 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:56:10 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:56:10 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.714118 (min) -0.023612 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.167035 (min) 0.233271 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 304.715 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.825021 (min) -0.403979 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.8805 (min) -11.2091 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0.565671 (min) 4.92653 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.13063 (min) 4.38625 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7325 (min) 34.9019 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.171268 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0107054 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.239245 (min) 0 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.0106419 (min) 0 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:56:10 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:56:10 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.585191, mean: 5.640938, max: 7.606173
13:56:10 DEBUG opendrift:699: 193 elements hit land, moving them to the coastline.
13:56:10 DEBUG opendrift:1691: 193 elements scheduled for deactivation (stranded)
13:56:10 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:56:11 DEBUG opendrift:767: No elements hit seafloor.
13:56:11 DEBUG opendrift:1711: Removed 193 elements.
13:56:11 DEBUG opendrift:1714: Removed 193 values from environment.
13:56:11 DEBUG opendrift:1719: remove items from profile for z
13:56:11 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:56:11 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:56:11 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:56:11 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:56:11 DEBUG opendrift:1723: Removed 193 values from environment_profiles.
13:56:11 DEBUG opendrift:2167: Calling OpenBerg.update()
13:56:11 DEBUG opendrift.models.openberg:551: Melting is disabled
13:56:11 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:56:11 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 3888
13:56:11 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 5
13:56:19 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.1270566631083134 m/s
13:56:19 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:56:19 DEBUG opendrift:2110: ======================================================================
13:56:19 INFO opendrift:2111: 2025-12-17 18:48:02.868659 - step 30 of 48 - 9265 active elements (735 deactivated)
13:56:19 DEBUG opendrift:2117: 0 elements scheduled.
13:56:19 DEBUG opendrift:2119: ======================================================================
13:56:19 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.67979787908965
13:56:19 DEBUG opendrift:2130: 17.11319856600927 <- longitude -> 18.684925612526335
13:56:19 DEBUG opendrift:2128: z = 0.0
13:56:19 DEBUG opendrift:2131: ---------------------------------
13:56:19 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:19 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:56:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:19 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:56:19 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:19 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9265 elements
13:56:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 9265 elements
13:56:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:56:19 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:56:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:56:19 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:19 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:19 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:56:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:19 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:56:19 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:19 DEBUG opendrift.models.basemodel.environment:620: Data needed for 9265 elements
13:56:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 9265 elements
13:56:19 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 18:00:00 (before)
2025-12-17 19:00:00 (after)
13:56:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:56:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:56:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:56:22 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.31446008816198 and -35.98554275968758 degrees.
13:56:22 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:56:22 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:56:22 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:56:22 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:56:22 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:56:22 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:56:22 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 90x102x7) for time after (2025-12-17 19:00:00)
13:56:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 18:00:00) in space (linearNDFast)
13:56:22 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 19:00:00) in space (linearNDFast)
13:56:22 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 1
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 115 elements, expanding data 2
13:56:22 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:56:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 18:00:00, weight 0.20) and
after (2025-12-17 19:00:00, weight 0.80) in time
13:56:22 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:56:22 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.12491226611419 and 42.65979718247385 degrees.
13:56:22 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.12491226611419 and 42.65979718247385 degrees.
13:56:22 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.12491226611419 and 42.65979718247385 degrees.
13:56:22 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.12491226611419 and 42.65979718247385 degrees.
13:56:22 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:22 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:56:22 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:56:22 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:56:22 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:56:22 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:56:22 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.846133 (min) -0.0342513 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.254664 (min) 0.213502 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.657 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.703152 (min) -0.200093 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.3306 (min) -10.6374 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: y_wind: 2.05824 (min) 6.05148 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.13347 (min) 4.36783 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.726 (min) 34.9003 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.160353 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0098849 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.155012 (min) 0 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.00391728 (min) 0 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:56:22 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:56:22 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.538358, mean: 5.969862, max: 7.998134
13:56:22 DEBUG opendrift:699: 287 elements hit land, moving them to the coastline.
13:56:22 DEBUG opendrift:1691: 287 elements scheduled for deactivation (stranded)
13:56:22 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:56:23 DEBUG opendrift:767: No elements hit seafloor.
13:56:23 DEBUG opendrift:1711: Removed 287 elements.
13:56:23 DEBUG opendrift:1714: Removed 287 values from environment.
13:56:23 DEBUG opendrift:1719: remove items from profile for z
13:56:23 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:56:23 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:56:23 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:56:23 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:56:23 DEBUG opendrift:1723: Removed 287 values from environment_profiles.
13:56:23 DEBUG opendrift:2167: Calling OpenBerg.update()
13:56:23 DEBUG opendrift.models.openberg:551: Melting is disabled
13:56:23 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:56:23 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 4035
13:56:23 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 15
13:56:31 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9202057382854826 m/s
13:56:31 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:56:31 DEBUG opendrift:2110: ======================================================================
13:56:31 INFO opendrift:2111: 2025-12-17 19:48:02.868659 - step 31 of 48 - 8978 active elements (1022 deactivated)
13:56:31 DEBUG opendrift:2117: 0 elements scheduled.
13:56:31 DEBUG opendrift:2119: ======================================================================
13:56:31 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.72974475433045
13:56:31 DEBUG opendrift:2130: 17.10091152054619 <- longitude -> 18.623763700407174
13:56:31 DEBUG opendrift:2128: z = 0.0
13:56:31 DEBUG opendrift:2131: ---------------------------------
13:56:31 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:31 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:56:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:31 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:56:31 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:31 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8978 elements
13:56:31 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8978 elements
13:56:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:56:31 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:56:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:56:31 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:31 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:31 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:56:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:31 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:56:31 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:31 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8978 elements
13:56:31 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8978 elements
13:56:31 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 19:00:00 (before)
2025-12-17 20:00:00 (after)
13:56:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:56:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:56:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:56:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.45386476818634 and -35.91193679119093 degrees.
13:56:34 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:56:34 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:56:34 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:56:34 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:56:34 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:56:34 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:56:34 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 91x104x7) for time after (2025-12-17 20:00:00)
13:56:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 19:00:00) in space (linearNDFast)
13:56:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 20:00:00) in space (linearNDFast)
13:56:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:56:34 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 19:00:00, weight 0.20) and
after (2025-12-17 20:00:00, weight 0.80) in time
13:56:34 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:56:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.59921023887858 degrees.
13:56:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.59921023887858 degrees.
13:56:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.59921023887858 degrees.
13:56:34 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.59921023887858 degrees.
13:56:34 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:34 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:56:34 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:56:34 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:56:34 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:56:34 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:56:34 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.808498 (min) -0.0239704 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.332385 (min) 0.478646 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 301.736 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.556485 (min) -0.000375558 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.5468 (min) -9.12603 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: y_wind: 2.08058 (min) 6.62835 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.28028 (min) 4.37691 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.7132 (min) 34.899 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.138145 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00839661 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.0869499 (min) 0 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.0295119 (min) 0.00464635 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:56:34 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:56:34 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.935672, mean: 6.318045, max: 8.092775
13:56:34 DEBUG opendrift:699: 103 elements hit land, moving them to the coastline.
13:56:34 DEBUG opendrift:1691: 103 elements scheduled for deactivation (stranded)
13:56:34 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:56:34 DEBUG opendrift:767: No elements hit seafloor.
13:56:34 DEBUG opendrift:1711: Removed 103 elements.
13:56:34 DEBUG opendrift:1714: Removed 103 values from environment.
13:56:34 DEBUG opendrift:1719: remove items from profile for z
13:56:34 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:56:34 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:56:34 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:56:34 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:56:34 DEBUG opendrift:1723: Removed 103 values from environment_profiles.
13:56:34 DEBUG opendrift:2167: Calling OpenBerg.update()
13:56:34 DEBUG opendrift.models.openberg:551: Melting is disabled
13:56:34 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:56:34 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 4088
13:56:34 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 11
13:56:42 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9909255509424203 m/s
13:56:42 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:56:42 DEBUG opendrift:2110: ======================================================================
13:56:42 INFO opendrift:2111: 2025-12-17 20:48:02.868659 - step 32 of 48 - 8875 active elements (1125 deactivated)
13:56:42 DEBUG opendrift:2117: 0 elements scheduled.
13:56:42 DEBUG opendrift:2119: ======================================================================
13:56:42 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.77642569491007
13:56:42 DEBUG opendrift:2130: 17.10091152054619 <- longitude -> 18.59865898800533
13:56:42 DEBUG opendrift:2128: z = 0.0
13:56:42 DEBUG opendrift:2131: ---------------------------------
13:56:42 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:42 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:56:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:42 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:56:42 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:42 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8875 elements
13:56:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8875 elements
13:56:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:56:42 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:56:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:56:42 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:42 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:42 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:56:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:42 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:56:42 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:42 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8875 elements
13:56:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8875 elements
13:56:42 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 20:00:00 (before)
2025-12-17 21:00:00 (after)
13:56:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:56:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:56:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:56:45 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.593873189705164 and -35.83819360862333 degrees.
13:56:45 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:56:45 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:56:45 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:56:45 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:56:45 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:56:45 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:56:45 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 92x106x7) for time after (2025-12-17 21:00:00)
13:56:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 20:00:00) in space (linearNDFast)
13:56:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 21:00:00) in space (linearNDFast)
13:56:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:56:46 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:56:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 20:00:00, weight 0.20) and
after (2025-12-17 21:00:00, weight 0.80) in time
13:56:46 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:56:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.57461342774917 degrees.
13:56:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.57461342774917 degrees.
13:56:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.57461342774917 degrees.
13:56:46 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.57461342774917 degrees.
13:56:46 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:46 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:56:46 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:56:46 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:56:46 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:56:46 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:56:46 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.617064 (min) -0.0083294 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.37336 (min) 0.771151 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 301.78 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.425596 (min) 0.184227 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.7932 (min) -9.27034 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: y_wind: 1.42101 (min) 6.65066 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.26712 (min) 4.35376 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6973 (min) 34.8995 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.111937 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00671077 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.194564 (min) 0 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.0494444 (min) 0.00562989 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:56:46 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:56:46 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 3.050687, mean: 6.262974, max: 8.212298
13:56:46 DEBUG opendrift:699: 70 elements hit land, moving them to the coastline.
13:56:46 DEBUG opendrift:1691: 70 elements scheduled for deactivation (stranded)
13:56:46 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:56:46 DEBUG opendrift:767: No elements hit seafloor.
13:56:46 DEBUG opendrift:1711: Removed 70 elements.
13:56:46 DEBUG opendrift:1714: Removed 70 values from environment.
13:56:46 DEBUG opendrift:1719: remove items from profile for z
13:56:46 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:56:46 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:56:46 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:56:46 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:56:46 DEBUG opendrift:1723: Removed 70 values from environment_profiles.
13:56:46 DEBUG opendrift:2167: Calling OpenBerg.update()
13:56:46 DEBUG opendrift.models.openberg:551: Melting is disabled
13:56:46 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:56:46 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 4146
13:56:46 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 8
13:56:53 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.0010556213197015 m/s
13:56:53 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:56:53 DEBUG opendrift:2110: ======================================================================
13:56:53 INFO opendrift:2111: 2025-12-17 21:48:02.868659 - step 33 of 48 - 8805 active elements (1195 deactivated)
13:56:53 DEBUG opendrift:2117: 0 elements scheduled.
13:56:53 DEBUG opendrift:2119: ======================================================================
13:56:53 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.762750129425
13:56:53 DEBUG opendrift:2130: 17.10091152054619 <- longitude -> 18.615387307420026
13:56:53 DEBUG opendrift:2128: z = 0.0
13:56:53 DEBUG opendrift:2131: ---------------------------------
13:56:53 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:53 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:56:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:53 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:56:53 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:53 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8805 elements
13:56:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8805 elements
13:56:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:56:53 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:56:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:56:53 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:53 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:56:53 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:56:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:56:53 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:56:53 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:56:53 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8805 elements
13:56:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8805 elements
13:56:53 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 21:00:00 (before)
2025-12-17 22:00:00 (after)
13:56:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:56:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:56:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:56:56 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.5237933705581 and -35.91193679119093 degrees.
13:56:56 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:56:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:56:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:56:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:56:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:56:56 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:56:56 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 91x105x7) for time after (2025-12-17 22:00:00)
13:56:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 21:00:00) in space (linearNDFast)
13:56:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 22:00:00) in space (linearNDFast)
13:56:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:56 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 229 elements, expanding data 1
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:56:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:56:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 21:00:00, weight 0.20) and
after (2025-12-17 22:00:00, weight 0.80) in time
13:56:57 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:56:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.59085562047612 degrees.
13:56:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.59085562047612 degrees.
13:56:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.59085562047612 degrees.
13:56:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.11289787476439 and 42.59085562047612 degrees.
13:56:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:56:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:56:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:56:57 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:56:57 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:56:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:56:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.597626 (min) 0.00185027 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.380522 (min) 0.918531 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 301.417 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.343948 (min) 0.17962 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.9813 (min) -8.95435 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: 1.53639 (min) 6.09154 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.2858 (min) 4.33617 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6963 (min) 34.8959 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0529628 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00313542 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.223142 (min) 0 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.159418 (min) 0 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:56:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:56:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.805952, mean: 6.073005, max: 8.321434
13:56:57 DEBUG opendrift:699: 51 elements hit land, moving them to the coastline.
13:56:57 DEBUG opendrift:1691: 51 elements scheduled for deactivation (stranded)
13:56:57 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:56:57 DEBUG opendrift:767: No elements hit seafloor.
13:56:57 DEBUG opendrift:1711: Removed 51 elements.
13:56:57 DEBUG opendrift:1714: Removed 51 values from environment.
13:56:57 DEBUG opendrift:1719: remove items from profile for z
13:56:57 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:56:57 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:56:57 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:56:57 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:56:57 DEBUG opendrift:1723: Removed 51 values from environment_profiles.
13:56:57 DEBUG opendrift:2167: Calling OpenBerg.update()
13:56:57 DEBUG opendrift.models.openberg:551: Melting is disabled
13:56:57 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:56:57 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 4252
13:57:03 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9794861350960785 m/s
13:57:03 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:57:03 DEBUG opendrift:2110: ======================================================================
13:57:03 INFO opendrift:2111: 2025-12-17 22:48:02.868659 - step 34 of 48 - 8754 active elements (1246 deactivated)
13:57:03 DEBUG opendrift:2117: 0 elements scheduled.
13:57:03 DEBUG opendrift:2119: ======================================================================
13:57:03 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.80323232395482
13:57:03 DEBUG opendrift:2130: 17.079439048384014 <- longitude -> 18.640134419706555
13:57:03 DEBUG opendrift:2128: z = 0.0
13:57:03 DEBUG opendrift:2131: ---------------------------------
13:57:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:57:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:57:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8754 elements
13:57:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8754 elements
13:57:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:57:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:57:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:57:03 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:03 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:03 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:57:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:03 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:57:03 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:03 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8754 elements
13:57:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8754 elements
13:57:03 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 22:00:00 (before)
2025-12-17 23:00:00 (after)
13:57:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:57:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:57:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:57:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.664104506289064 and -35.83819360862333 degrees.
13:57:06 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:57:06 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:57:06 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:57:06 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:57:06 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:57:06 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:57:06 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 92x107x7) for time after (2025-12-17 23:00:00)
13:57:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 22:00:00) in space (linearNDFast)
13:57:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-17 23:00:00) in space (linearNDFast)
13:57:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
13:57:06 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 22:00:00, weight 0.20) and
after (2025-12-17 23:00:00, weight 0.80) in time
13:57:06 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:57:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.09252529399415 and 42.614922541582914 degrees.
13:57:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.09252529399415 and 42.614922541582914 degrees.
13:57:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.09252529399415 and 42.614922541582914 degrees.
13:57:06 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.09252529399415 and 42.614922541582914 degrees.
13:57:06 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:06 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:57:06 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:57:06 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:57:06 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:57:06 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:57:06 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.650375 (min) 0.215636 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.358378 (min) 0.938688 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 298.911 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.310075 (min) -0.0510535 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: x_wind: -18.1979 (min) -9.56547 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: y_wind: 1.02534 (min) 6.48328 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.2394 (min) 4.2761 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6944 (min) 34.8896 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0517233 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00302608 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.217013 (min) 0 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.130358 (min) 0 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:57:06 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:57:06 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.796325, mean: 5.850252, max: 8.376535
13:57:06 DEBUG opendrift:699: 40 elements hit land, moving them to the coastline.
13:57:06 DEBUG opendrift:1691: 40 elements scheduled for deactivation (stranded)
13:57:06 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:57:06 DEBUG opendrift:767: No elements hit seafloor.
13:57:06 DEBUG opendrift:1711: Removed 40 elements.
13:57:06 DEBUG opendrift:1714: Removed 40 values from environment.
13:57:06 DEBUG opendrift:1719: remove items from profile for z
13:57:06 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:57:06 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:57:06 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:57:06 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:57:06 DEBUG opendrift:1723: Removed 40 values from environment_profiles.
13:57:06 DEBUG opendrift:2167: Calling OpenBerg.update()
13:57:06 DEBUG opendrift.models.openberg:551: Melting is disabled
13:57:06 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:57:06 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 4403
13:57:13 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9102432500742983 m/s
13:57:13 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:57:13 DEBUG opendrift:2110: ======================================================================
13:57:13 INFO opendrift:2111: 2025-12-17 23:48:02.868659 - step 35 of 48 - 8714 active elements (1286 deactivated)
13:57:13 DEBUG opendrift:2117: 0 elements scheduled.
13:57:13 DEBUG opendrift:2119: ======================================================================
13:57:13 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.83965891342281
13:57:13 DEBUG opendrift:2130: 17.017493896984444 <- longitude -> 18.671667149724556
13:57:13 DEBUG opendrift:2128: z = 0.0
13:57:13 DEBUG opendrift:2131: ---------------------------------
13:57:13 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:13 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:57:13 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:13 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:57:13 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:13 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8714 elements
13:57:13 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8714 elements
13:57:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:57:13 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:57:13 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:57:13 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:13 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:13 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:57:13 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:13 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:57:13 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:13 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8714 elements
13:57:13 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8714 elements
13:57:13 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-17 23:00:00 (before)
2025-12-18 00:00:00 (after)
13:57:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:57:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:57:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:57:16 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.73448760036872 and -35.76431307293964 degrees.
13:57:16 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:57:16 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:57:16 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:57:16 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:57:16 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:57:16 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:57:16 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 93x108x7) for time after (2025-12-18 00:00:00)
13:57:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-17 23:00:00) in space (linearNDFast)
13:57:16 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 00:00:00) in space (linearNDFast)
13:57:16 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 1
13:57:16 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-17 23:00:00, weight 0.20) and
after (2025-12-18 00:00:00, weight 0.80) in time
13:57:16 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:57:16 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.03222503319366 and 42.6456340201193 degrees.
13:57:16 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.03222503319366 and 42.6456340201193 degrees.
13:57:16 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.03222503319366 and 42.6456340201193 degrees.
13:57:16 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 41.03222503319366 and 42.6456340201193 degrees.
13:57:16 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:16 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:57:16 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:57:16 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:57:16 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:57:16 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:57:16 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.606037 (min) 0.498465 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.286977 (min) 0.787278 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 304.659 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.468992 (min) -0.20887 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.7607 (min) -9.61173 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0.722805 (min) 6.46231 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.33388 (min) 4.2427 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6902 (min) 34.8889 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0504466 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00330475 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.218814 (min) 0 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.196839 (min) 0 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:57:16 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:57:16 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.744683, mean: 5.503325, max: 7.962790
13:57:16 DEBUG opendrift:699: 33 elements hit land, moving them to the coastline.
13:57:16 DEBUG opendrift:1691: 33 elements scheduled for deactivation (stranded)
13:57:16 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:57:16 DEBUG opendrift:767: No elements hit seafloor.
13:57:16 DEBUG opendrift:1711: Removed 33 elements.
13:57:16 DEBUG opendrift:1714: Removed 33 values from environment.
13:57:16 DEBUG opendrift:1719: remove items from profile for z
13:57:16 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:57:16 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:57:16 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:57:16 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:57:16 DEBUG opendrift:1723: Removed 33 values from environment_profiles.
13:57:16 DEBUG opendrift:2167: Calling OpenBerg.update()
13:57:16 DEBUG opendrift.models.openberg:551: Melting is disabled
13:57:16 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:57:16 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 4579
13:57:23 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9608092336244788 m/s
13:57:23 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:57:23 DEBUG opendrift:2110: ======================================================================
13:57:23 INFO opendrift:2111: 2025-12-18 00:48:02.868659 - step 36 of 48 - 8681 active elements (1319 deactivated)
13:57:23 DEBUG opendrift:2117: 0 elements scheduled.
13:57:23 DEBUG opendrift:2119: ======================================================================
13:57:23 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.87468869613883
13:57:23 DEBUG opendrift:2130: 16.935612485627022 <- longitude -> 18.69909860191266
13:57:23 DEBUG opendrift:2128: z = 0.0
13:57:23 DEBUG opendrift:2131: ---------------------------------
13:57:23 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:23 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:57:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:23 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:57:23 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:23 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8681 elements
13:57:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8681 elements
13:57:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:57:23 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:57:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:57:23 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:23 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:23 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:57:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:23 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:57:23 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:23 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8681 elements
13:57:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8681 elements
13:57:23 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 00:00:00 (before)
2025-12-18 01:00:00 (after)
13:57:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:57:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:57:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:57:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.80502275137752 and -35.69029504640488 degrees.
13:57:26 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:57:26 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:57:26 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:57:26 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:57:26 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:57:26 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:57:26 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 94x109x7) for time after (2025-12-18 01:00:00)
13:57:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 00:00:00) in space (linearNDFast)
13:57:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:26 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 01:00:00) in space (linearNDFast)
13:57:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 1
13:57:26 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:26 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 00:00:00, weight 0.20) and
after (2025-12-18 01:00:00, weight 0.80) in time
13:57:26 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:57:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.95224122420893 and 42.67236195264726 degrees.
13:57:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.95224122420893 and 42.67236195264726 degrees.
13:57:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.95224122420893 and 42.67236195264726 degrees.
13:57:26 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.95224122420893 and 42.67236195264726 degrees.
13:57:26 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:26 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:57:26 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:57:26 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:57:26 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:57:26 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:57:26 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.474891 (min) 0.597576 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.25706 (min) 0.523373 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 305.782 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.834697 (min) -0.374417 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.6512 (min) -9.67329 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0.599186 (min) 5.84723 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.34956 (min) 4.21297 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.692 (min) 34.886 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0736289 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00419967 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.184173 (min) 0 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.180472 (min) 0 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:57:26 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:57:26 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.468338, mean: 5.264264, max: 7.793398
13:57:26 DEBUG opendrift:699: 32 elements hit land, moving them to the coastline.
13:57:26 DEBUG opendrift:1691: 32 elements scheduled for deactivation (stranded)
13:57:26 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:57:26 DEBUG opendrift:767: No elements hit seafloor.
13:57:26 DEBUG opendrift:1711: Removed 32 elements.
13:57:26 DEBUG opendrift:1714: Removed 32 values from environment.
13:57:26 DEBUG opendrift:1719: remove items from profile for z
13:57:26 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:57:26 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:57:26 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:57:26 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:57:26 DEBUG opendrift:1723: Removed 32 values from environment_profiles.
13:57:26 DEBUG opendrift:2167: Calling OpenBerg.update()
13:57:26 DEBUG opendrift.models.openberg:551: Melting is disabled
13:57:26 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:57:26 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 4777
13:57:32 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9942521341955115 m/s
13:57:32 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:57:32 DEBUG opendrift:2110: ======================================================================
13:57:32 INFO opendrift:2111: 2025-12-18 01:48:02.868659 - step 37 of 48 - 8649 active elements (1351 deactivated)
13:57:32 DEBUG opendrift:2117: 0 elements scheduled.
13:57:32 DEBUG opendrift:2119: ======================================================================
13:57:32 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.91616182186254
13:57:32 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.6629903310205
13:57:32 DEBUG opendrift:2128: z = 0.0
13:57:32 DEBUG opendrift:2131: ---------------------------------
13:57:32 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:32 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:57:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:32 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:57:32 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:32 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8649 elements
13:57:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8649 elements
13:57:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:57:32 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:57:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:57:32 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:32 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:32 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:57:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:32 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:57:32 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:32 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8649 elements
13:57:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8649 elements
13:57:32 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 01:00:00 (before)
2025-12-18 02:00:00 (after)
13:57:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:57:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:57:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:57:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -48.94655033875041 and -35.61613939260316 degrees.
13:57:35 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:57:35 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:57:35 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:57:35 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:57:35 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:57:35 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:57:35 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 95x111x7) for time after (2025-12-18 02:00:00)
13:57:35 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 01:00:00) in space (linearNDFast)
13:57:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:35 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 02:00:00) in space (linearNDFast)
13:57:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
13:57:35 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:35 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 01:00:00, weight 0.20) and
after (2025-12-18 02:00:00, weight 0.80) in time
13:57:35 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:57:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.63702887419866 degrees.
13:57:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.63702887419866 degrees.
13:57:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.63702887419866 degrees.
13:57:35 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.63702887419866 degrees.
13:57:35 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:35 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:57:35 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:57:35 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:57:35 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:57:35 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:57:35 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.286222 (min) 0.545472 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.182394 (min) 0.259756 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 298.639 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -1.00911 (min) -0.563064 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: x_wind: -17.2416 (min) -9.3591 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0.433492 (min) 4.86984 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.38905 (min) 4.14499 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6893 (min) 34.8821 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.047962 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00296732 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.237562 (min) 0 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.12106 (min) 0.000687383 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:57:35 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:57:35 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.467819, mean: 5.112772, max: 7.422233
13:57:35 DEBUG opendrift:699: 15 elements hit land, moving them to the coastline.
13:57:35 DEBUG opendrift:1691: 15 elements scheduled for deactivation (stranded)
13:57:35 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:57:35 DEBUG opendrift:767: No elements hit seafloor.
13:57:35 DEBUG opendrift:1711: Removed 15 elements.
13:57:35 DEBUG opendrift:1714: Removed 15 values from environment.
13:57:35 DEBUG opendrift:1719: remove items from profile for z
13:57:35 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:57:35 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:57:35 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:57:35 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:57:35 DEBUG opendrift:1723: Removed 15 values from environment_profiles.
13:57:35 DEBUG opendrift:2167: Calling OpenBerg.update()
13:57:35 DEBUG opendrift.models.openberg:551: Melting is disabled
13:57:35 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:57:35 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 4969
13:57:40 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9290146056999805 m/s
13:57:40 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:57:40 DEBUG opendrift:2110: ======================================================================
13:57:40 INFO opendrift:2111: 2025-12-18 02:48:02.868659 - step 38 of 48 - 8634 active elements (1366 deactivated)
13:57:40 DEBUG opendrift:2117: 0 elements scheduled.
13:57:40 DEBUG opendrift:2119: ======================================================================
13:57:40 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 77.9761271689433
13:57:40 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.66266229579437
13:57:40 DEBUG opendrift:2128: z = 0.0
13:57:40 DEBUG opendrift:2131: ---------------------------------
13:57:40 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:40 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:57:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:40 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:57:40 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:40 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8634 elements
13:57:40 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8634 elements
13:57:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:57:40 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:57:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:57:40 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:40 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:40 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:57:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:40 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:57:40 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:40 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8634 elements
13:57:40 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8634 elements
13:57:40 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 02:00:00 (before)
2025-12-18 03:00:00 (after)
13:57:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:57:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:57:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:57:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.08868949093983 and -35.46741466424686 degrees.
13:57:43 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:57:43 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:57:43 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:57:43 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:57:43 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:57:43 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:57:43 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 97x113x7) for time after (2025-12-18 03:00:00)
13:57:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 02:00:00) in space (linearNDFast)
13:57:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:43 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 03:00:00) in space (linearNDFast)
13:57:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:57:43 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:43 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 02:00:00, weight 0.20) and
after (2025-12-18 03:00:00, weight 0.80) in time
13:57:43 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:57:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6368545069276 degrees.
13:57:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6368545069276 degrees.
13:57:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6368545069276 degrees.
13:57:43 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6368545069276 degrees.
13:57:43 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:43 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:57:43 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:57:43 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:57:43 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:57:43 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:57:43 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.225887 (min) 0.381347 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.156283 (min) 0.289375 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 296.05 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.996905 (min) -0.751769 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.7229 (min) -9.46185 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: y_wind: 1.03209 (min) 3.64257 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.40323 (min) 3.85302 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.685 (min) 34.8591 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0468901 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00704809 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.23606 (min) 0 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.126027 (min) 0 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:57:43 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:57:43 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.348849, mean: 5.056272, max: 6.932675
13:57:43 DEBUG opendrift:699: 8 elements hit land, moving them to the coastline.
13:57:43 DEBUG opendrift:1691: 8 elements scheduled for deactivation (stranded)
13:57:43 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:57:43 DEBUG opendrift:767: No elements hit seafloor.
13:57:43 DEBUG opendrift:1711: Removed 8 elements.
13:57:43 DEBUG opendrift:1714: Removed 8 values from environment.
13:57:43 DEBUG opendrift:1719: remove items from profile for z
13:57:43 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:57:43 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:57:43 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:57:43 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:57:43 DEBUG opendrift:1723: Removed 8 values from environment_profiles.
13:57:43 DEBUG opendrift:2167: Calling OpenBerg.update()
13:57:43 DEBUG opendrift.models.openberg:551: Melting is disabled
13:57:43 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:57:43 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 5212
13:57:48 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 1.144625455201571 m/s
13:57:48 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:57:48 DEBUG opendrift:2110: ======================================================================
13:57:48 INFO opendrift:2111: 2025-12-18 03:48:02.868659 - step 39 of 48 - 8626 active elements (1374 deactivated)
13:57:48 DEBUG opendrift:2117: 0 elements scheduled.
13:57:48 DEBUG opendrift:2119: ======================================================================
13:57:48 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.02558023594985
13:57:48 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.651465419304728
13:57:48 DEBUG opendrift:2128: z = 0.0
13:57:48 DEBUG opendrift:2131: ---------------------------------
13:57:48 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:48 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:57:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:48 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:57:48 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:48 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8626 elements
13:57:48 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8626 elements
13:57:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:57:48 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:57:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:57:48 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:48 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:48 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:57:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:48 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:57:48 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:48 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8626 elements
13:57:48 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8626 elements
13:57:48 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 03:00:00 (before)
2025-12-18 04:00:00 (after)
13:57:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:57:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:57:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:57:51 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:57:51 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:57:51 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:57:51 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:57:51 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:57:51 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:57:51 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:57:51 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 04:00:00)
13:57:51 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 03:00:00) in space (linearNDFast)
13:57:51 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:51 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 04:00:00) in space (linearNDFast)
13:57:51 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:57:51 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:57:51 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 03:00:00, weight 0.20) and
after (2025-12-18 04:00:00, weight 0.80) in time
13:57:51 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:57:51 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.62600664940784 degrees.
13:57:51 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.62600664940784 degrees.
13:57:51 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.62600664940784 degrees.
13:57:51 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.62600664940784 degrees.
13:57:51 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:51 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:57:51 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:57:51 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:57:51 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:57:51 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:57:51 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.265154 (min) 0.186188 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.197239 (min) 0.304126 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 290.826 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -1.04553 (min) -0.884469 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.8182 (min) -10.0548 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: y_wind: 0.49791 (min) 2.68277 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.38159 (min) 3.66527 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6769 (min) 34.8536 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0458482 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0036484 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.262097 (min) 0 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.136582 (min) 0 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:57:51 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:57:51 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.526552, mean: 4.965000, max: 7.005691
13:57:51 DEBUG opendrift:699: 9 elements hit land, moving them to the coastline.
13:57:51 DEBUG opendrift:1691: 9 elements scheduled for deactivation (stranded)
13:57:51 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:57:51 DEBUG opendrift:767: No elements hit seafloor.
13:57:51 DEBUG opendrift:1711: Removed 9 elements.
13:57:51 DEBUG opendrift:1714: Removed 9 values from environment.
13:57:51 DEBUG opendrift:1719: remove items from profile for z
13:57:51 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:57:51 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:57:51 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:57:51 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:57:51 DEBUG opendrift:1723: Removed 9 values from environment_profiles.
13:57:51 DEBUG opendrift:2167: Calling OpenBerg.update()
13:57:51 DEBUG opendrift.models.openberg:551: Melting is disabled
13:57:51 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:57:51 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 5496
13:57:56 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9820197128211716 m/s
13:57:56 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:57:56 DEBUG opendrift:2110: ======================================================================
13:57:56 INFO opendrift:2111: 2025-12-18 04:48:02.868659 - step 40 of 48 - 8617 active elements (1383 deactivated)
13:57:56 DEBUG opendrift:2117: 0 elements scheduled.
13:57:56 DEBUG opendrift:2119: ======================================================================
13:57:56 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.02558023594985
13:57:56 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.682090058250157
13:57:56 DEBUG opendrift:2128: z = 0.0
13:57:56 DEBUG opendrift:2131: ---------------------------------
13:57:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:57:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:57:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8617 elements
13:57:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8617 elements
13:57:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:57:56 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:57:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:57:56 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:56 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:57:56 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:57:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:57:56 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:57:56 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:57:56 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8617 elements
13:57:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8617 elements
13:57:56 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 04:00:00 (before)
2025-12-18 05:00:00 (after)
13:57:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:57:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:57:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:57:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:57:59 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:57:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:57:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:57:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:57:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:57:59 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:57:59 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 05:00:00)
13:57:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 04:00:00) in space (linearNDFast)
13:57:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:59 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 05:00:00) in space (linearNDFast)
13:57:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 295 elements, expanding data 1
13:57:59 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:57:59 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 04:00:00, weight 0.20) and
after (2025-12-18 05:00:00, weight 0.80) in time
13:57:59 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:57:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.655517165311664 degrees.
13:57:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.655517165311664 degrees.
13:57:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.655517165311664 degrees.
13:57:59 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.655517165311664 degrees.
13:57:59 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:57:59 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:57:59 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:57:59 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:57:59 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:57:59 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:57:59 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.299985 (min) -0.0197348 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.232661 (min) 0.300451 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 281.449 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -1.01416 (min) -0.800597 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.8981 (min) -9.89811 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: y_wind: -0.39592 (min) 2.90475 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.47344 (min) 3.62463 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6832 (min) 34.8458 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.709731 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.253838 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.265279 (min) 0 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.134606 (min) 0 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:57:59 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:57:59 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.442006, mean: 4.803818, max: 7.048187
13:57:59 DEBUG opendrift:699: 11 elements hit land, moving them to the coastline.
13:57:59 DEBUG opendrift:1691: 11 elements scheduled for deactivation (stranded)
13:57:59 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:57:59 DEBUG opendrift:767: No elements hit seafloor.
13:57:59 DEBUG opendrift:1711: Removed 11 elements.
13:57:59 DEBUG opendrift:1714: Removed 11 values from environment.
13:57:59 DEBUG opendrift:1719: remove items from profile for z
13:57:59 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:57:59 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:57:59 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:57:59 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:57:59 DEBUG opendrift:1723: Removed 11 values from environment_profiles.
13:57:59 DEBUG opendrift:2167: Calling OpenBerg.update()
13:57:59 DEBUG opendrift.models.openberg:551: Melting is disabled
13:57:59 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:57:59 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 5784
13:57:59 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 6
13:58:04 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9092717957153043 m/s
13:58:04 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:58:04 DEBUG opendrift:2110: ======================================================================
13:58:04 INFO opendrift:2111: 2025-12-18 05:48:02.868659 - step 41 of 48 - 8606 active elements (1394 deactivated)
13:58:04 DEBUG opendrift:2117: 0 elements scheduled.
13:58:04 DEBUG opendrift:2119: ======================================================================
13:58:04 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.02558023594985
13:58:04 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.700948747322528
13:58:04 DEBUG opendrift:2128: z = 0.0
13:58:04 DEBUG opendrift:2131: ---------------------------------
13:58:04 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:04 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:58:04 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:04 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:58:04 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:04 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8606 elements
13:58:04 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8606 elements
13:58:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:58:04 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:58:04 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:58:04 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:04 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:04 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:58:04 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:04 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:58:04 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:04 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8606 elements
13:58:04 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8606 elements
13:58:04 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 05:00:00 (before)
2025-12-18 06:00:00 (after)
13:58:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:58:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:58:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:58:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:58:07 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:58:07 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:58:07 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:58:07 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:58:07 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:58:07 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:58:07 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 06:00:00)
13:58:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 05:00:00) in space (linearNDFast)
13:58:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 06:00:00) in space (linearNDFast)
13:58:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 1
13:58:07 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 05:00:00, weight 0.20) and
after (2025-12-18 06:00:00, weight 0.80) in time
13:58:07 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:58:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.67407381755 degrees.
13:58:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.67407381755 degrees.
13:58:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.67407381755 degrees.
13:58:07 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.67407381755 degrees.
13:58:07 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:07 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:58:07 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:58:07 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:58:07 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:58:07 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:58:07 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.458776 (min) -0.0570635 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.228504 (min) 0.237949 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 277.975 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.893112 (min) -0.657871 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.7284 (min) -10.0617 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: y_wind: -0.994157 (min) 2.74219 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.27312 (min) 3.57999 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6852 (min) 34.8378 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0437484 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.00894807 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.288924 (min) 0 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.127133 (min) 0 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:58:07 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:58:07 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.595612, mean: 4.776084, max: 6.890595
13:58:07 DEBUG opendrift:699: 8 elements hit land, moving them to the coastline.
13:58:07 DEBUG opendrift:1691: 8 elements scheduled for deactivation (stranded)
13:58:07 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:58:07 DEBUG opendrift:767: No elements hit seafloor.
13:58:08 DEBUG opendrift:1711: Removed 8 elements.
13:58:08 DEBUG opendrift:1714: Removed 8 values from environment.
13:58:08 DEBUG opendrift:1719: remove items from profile for z
13:58:08 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:58:08 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:58:08 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:58:08 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:58:08 DEBUG opendrift:1723: Removed 8 values from environment_profiles.
13:58:08 DEBUG opendrift:2167: Calling OpenBerg.update()
13:58:08 DEBUG opendrift.models.openberg:551: Melting is disabled
13:58:08 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:58:08 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 6046
13:58:08 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 11
13:58:12 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9422693294208414 m/s
13:58:12 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:58:12 DEBUG opendrift:2110: ======================================================================
13:58:12 INFO opendrift:2111: 2025-12-18 06:48:02.868659 - step 42 of 48 - 8598 active elements (1402 deactivated)
13:58:12 DEBUG opendrift:2117: 0 elements scheduled.
13:58:12 DEBUG opendrift:2119: ======================================================================
13:58:12 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.03866056445833
13:58:12 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.68987616032589
13:58:12 DEBUG opendrift:2128: z = 0.0
13:58:12 DEBUG opendrift:2131: ---------------------------------
13:58:12 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:12 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:58:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:12 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:58:12 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:12 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8598 elements
13:58:12 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8598 elements
13:58:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:58:12 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:58:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:58:12 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:12 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:12 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:58:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:12 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:58:12 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:12 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8598 elements
13:58:12 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8598 elements
13:58:12 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 06:00:00 (before)
2025-12-18 07:00:00 (after)
13:58:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:58:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:58:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:58:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:58:15 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:58:15 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:58:15 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:58:15 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:58:15 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:58:15 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:58:15 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 07:00:00)
13:58:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 06:00:00) in space (linearNDFast)
13:58:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:15 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 07:00:00) in space (linearNDFast)
13:58:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 317 elements, expanding data 1
13:58:15 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:15 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 06:00:00, weight 0.20) and
after (2025-12-18 07:00:00, weight 0.80) in time
13:58:15 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:58:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.663213674800765 degrees.
13:58:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.663213674800765 degrees.
13:58:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.663213674800765 degrees.
13:58:15 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.663213674800765 degrees.
13:58:15 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:15 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:58:15 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:58:15 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:58:15 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:58:15 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:58:15 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.649099 (min) -0.0547502 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.27441 (min) 0.219665 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 274.613 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.769819 (min) -0.447179 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: x_wind: -16.4556 (min) -10.5315 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: y_wind: -1.17071 (min) 1.81129 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.27828 (min) 3.53954 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6879 (min) 34.8313 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0426437 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0151086 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.288409 (min) 0 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.138129 (min) 0 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:58:15 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:58:15 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.751255, mean: 4.742630, max: 6.667283
13:58:15 DEBUG opendrift:699: 9 elements hit land, moving them to the coastline.
13:58:15 DEBUG opendrift:1691: 9 elements scheduled for deactivation (stranded)
13:58:15 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:58:15 DEBUG opendrift:767: No elements hit seafloor.
13:58:15 DEBUG opendrift:1711: Removed 9 elements.
13:58:15 DEBUG opendrift:1714: Removed 9 values from environment.
13:58:15 DEBUG opendrift:1719: remove items from profile for z
13:58:15 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:58:15 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:58:15 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:58:15 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:58:15 DEBUG opendrift:1723: Removed 9 values from environment_profiles.
13:58:15 DEBUG opendrift:2167: Calling OpenBerg.update()
13:58:15 DEBUG opendrift.models.openberg:551: Melting is disabled
13:58:15 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:58:15 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 6240
13:58:15 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 32
13:58:22 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9076012830771443 m/s
13:58:22 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:58:22 DEBUG opendrift:2110: ======================================================================
13:58:22 INFO opendrift:2111: 2025-12-18 07:48:02.868659 - step 43 of 48 - 8589 active elements (1411 deactivated)
13:58:22 DEBUG opendrift:2117: 0 elements scheduled.
13:58:22 DEBUG opendrift:2119: ======================================================================
13:58:22 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.07432160579015
13:58:22 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.678145568583734
13:58:22 DEBUG opendrift:2128: z = 0.0
13:58:22 DEBUG opendrift:2131: ---------------------------------
13:58:22 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:22 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:58:22 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:22 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:58:22 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:22 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8589 elements
13:58:22 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8589 elements
13:58:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:58:22 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:58:22 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:58:22 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:22 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:22 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:58:22 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:22 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:58:22 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:22 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8589 elements
13:58:22 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8589 elements
13:58:22 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 07:00:00 (before)
2025-12-18 08:00:00 (after)
13:58:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:58:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:58:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:58:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.3030497382046 and -35.24329203448953 degrees.
13:58:25 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:58:25 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:58:25 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:58:25 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:58:25 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:58:25 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:58:25 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 100x116x7) for time after (2025-12-18 08:00:00)
13:58:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 07:00:00) in space (linearNDFast)
13:58:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 08:00:00) in space (linearNDFast)
13:58:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
13:58:25 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:58:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 07:00:00, weight 0.20) and
after (2025-12-18 08:00:00, weight 0.80) in time
13:58:25 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:58:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6518396560499 degrees.
13:58:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6518396560499 degrees.
13:58:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6518396560499 degrees.
13:58:25 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6518396560499 degrees.
13:58:25 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:25 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:58:25 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:58:25 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:58:25 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:58:25 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:58:25 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.720244 (min) -0.0499024 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.335668 (min) 0.209517 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 268.557 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.60685 (min) -0.255024 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: x_wind: -15.954 (min) -10.6917 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: y_wind: -1.77444 (min) 1.15064 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.38466 (min) 3.51229 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6883 (min) 34.8274 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0415332 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0166664 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.302005 (min) 0 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.137463 (min) 0 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:58:25 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:58:25 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.833644, mean: 4.572575, max: 6.280696
13:58:25 DEBUG opendrift:699: 4 elements hit land, moving them to the coastline.
13:58:25 DEBUG opendrift:1691: 4 elements scheduled for deactivation (stranded)
13:58:25 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:58:25 DEBUG opendrift:767: No elements hit seafloor.
13:58:25 DEBUG opendrift:1711: Removed 4 elements.
13:58:25 DEBUG opendrift:1714: Removed 4 values from environment.
13:58:25 DEBUG opendrift:1719: remove items from profile for z
13:58:25 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:58:25 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:58:25 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:58:25 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:58:25 DEBUG opendrift:1723: Removed 4 values from environment_profiles.
13:58:25 DEBUG opendrift:2167: Calling OpenBerg.update()
13:58:25 DEBUG opendrift.models.openberg:551: Melting is disabled
13:58:25 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:58:25 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 6444
13:58:25 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 35
13:58:30 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9558084323041391 m/s
13:58:30 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:58:30 DEBUG opendrift:2110: ======================================================================
13:58:30 INFO opendrift:2111: 2025-12-18 08:48:02.868659 - step 44 of 48 - 8585 active elements (1415 deactivated)
13:58:30 DEBUG opendrift:2117: 0 elements scheduled.
13:58:30 DEBUG opendrift:2119: ======================================================================
13:58:30 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.03866056445833
13:58:30 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.67578107871029
13:58:30 DEBUG opendrift:2128: z = 0.0
13:58:30 DEBUG opendrift:2131: ---------------------------------
13:58:30 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:30 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:58:30 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:30 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:58:30 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:30 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8585 elements
13:58:30 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8585 elements
13:58:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:58:30 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:58:30 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:58:30 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:30 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:30 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:58:30 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:30 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:58:30 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:30 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8585 elements
13:58:30 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8585 elements
13:58:30 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 08:00:00 (before)
2025-12-18 09:00:00 (after)
13:58:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:58:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:58:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:58:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:58:33 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:58:33 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:58:33 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:58:33 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:58:33 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:58:33 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:58:33 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 09:00:00)
13:58:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 08:00:00) in space (linearNDFast)
13:58:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 09:00:00) in space (linearNDFast)
13:58:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:33 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 08:00:00, weight 0.20) and
after (2025-12-18 09:00:00, weight 0.80) in time
13:58:33 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:58:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.64949733373023 degrees.
13:58:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.64949733373023 degrees.
13:58:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.64949733373023 degrees.
13:58:33 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.64949733373023 degrees.
13:58:33 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:33 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:58:33 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:58:33 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:58:33 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:58:33 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:58:33 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.662956 (min) -0.0389012 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.366682 (min) 0.47 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 257.816 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.428094 (min) -0.0299641 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: x_wind: -15.5982 (min) -10.2465 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: y_wind: -3.1933 (min) 1.21331 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.34265 (min) 3.50847 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6887 (min) 34.8278 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0405036 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0174393 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.296348 (min) 0 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.135191 (min) 0 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:58:33 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:58:33 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 2.661808, mean: 4.389704, max: 6.021348
13:58:33 DEBUG opendrift:699: 6 elements hit land, moving them to the coastline.
13:58:33 DEBUG opendrift:1691: 6 elements scheduled for deactivation (stranded)
13:58:33 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:58:33 DEBUG opendrift:767: No elements hit seafloor.
13:58:33 DEBUG opendrift:1711: Removed 6 elements.
13:58:33 DEBUG opendrift:1714: Removed 6 values from environment.
13:58:33 DEBUG opendrift:1719: remove items from profile for z
13:58:33 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:58:33 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:58:33 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:58:33 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:58:33 DEBUG opendrift:1723: Removed 6 values from environment_profiles.
13:58:33 DEBUG opendrift:2167: Calling OpenBerg.update()
13:58:33 DEBUG opendrift.models.openberg:551: Melting is disabled
13:58:33 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:58:33 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 6671
13:58:33 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 30
13:58:39 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.8936782062153169 m/s
13:58:39 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:58:39 DEBUG opendrift:2110: ======================================================================
13:58:39 INFO opendrift:2111: 2025-12-18 09:48:02.868659 - step 45 of 48 - 8579 active elements (1421 deactivated)
13:58:39 DEBUG opendrift:2117: 0 elements scheduled.
13:58:39 DEBUG opendrift:2119: ======================================================================
13:58:39 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.03866056445833
13:58:39 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.702580500016253
13:58:39 DEBUG opendrift:2128: z = 0.0
13:58:39 DEBUG opendrift:2131: ---------------------------------
13:58:39 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:39 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:58:39 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:39 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:58:39 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:39 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8579 elements
13:58:39 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8579 elements
13:58:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:58:39 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:58:39 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:58:39 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:39 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:39 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:58:39 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:39 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:58:39 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:39 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8579 elements
13:58:39 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8579 elements
13:58:39 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 09:00:00 (before)
2025-12-18 10:00:00 (after)
13:58:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:58:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:58:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:58:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:58:42 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:58:42 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:58:42 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:58:42 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:58:42 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:58:42 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:58:42 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 10:00:00)
13:58:42 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 09:00:00) in space (linearNDFast)
13:58:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:42 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 10:00:00) in space (linearNDFast)
13:58:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
13:58:42 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:42 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 09:00:00, weight 0.20) and
after (2025-12-18 10:00:00, weight 0.80) in time
13:58:42 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:58:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6752820747723 degrees.
13:58:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6752820747723 degrees.
13:58:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6752820747723 degrees.
13:58:42 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6752820747723 degrees.
13:58:42 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:42 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:58:42 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:58:42 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:58:42 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:58:42 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:58:42 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.621214 (min) -0.0263902 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.360424 (min) 0.647514 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 244.726 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.284702 (min) -0.00596231 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: x_wind: -15.5888 (min) -8.29348 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: y_wind: -4.39169 (min) 1.08535 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.36757 (min) 3.53578 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6874 (min) 34.8338 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0396388 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0245207 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.29159 (min) 0 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.151671 (min) 0 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:58:42 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:58:42 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 1.853065, mean: 3.871445, max: 6.005731
13:58:42 DEBUG opendrift:699: 3 elements hit land, moving them to the coastline.
13:58:42 DEBUG opendrift:1691: 3 elements scheduled for deactivation (stranded)
13:58:42 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:58:42 DEBUG opendrift:767: No elements hit seafloor.
13:58:42 DEBUG opendrift:1711: Removed 3 elements.
13:58:42 DEBUG opendrift:1714: Removed 3 values from environment.
13:58:42 DEBUG opendrift:1719: remove items from profile for z
13:58:42 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:58:42 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:58:42 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:58:42 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:58:42 DEBUG opendrift:1723: Removed 3 values from environment_profiles.
13:58:42 DEBUG opendrift:2167: Calling OpenBerg.update()
13:58:42 DEBUG opendrift.models.openberg:551: Melting is disabled
13:58:42 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:58:42 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 6918
13:58:42 DEBUG opendrift.models.openberg:529: Degrounding condition: Icebergs degrounded = 1
13:58:47 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.8833297880604997 m/s
13:58:47 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:58:47 DEBUG opendrift:2110: ======================================================================
13:58:47 INFO opendrift:2111: 2025-12-18 10:48:02.868659 - step 46 of 48 - 8576 active elements (1424 deactivated)
13:58:47 DEBUG opendrift:2117: 0 elements scheduled.
13:58:47 DEBUG opendrift:2119: ======================================================================
13:58:47 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.03866056445833
13:58:47 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.66147356210653
13:58:47 DEBUG opendrift:2128: z = 0.0
13:58:47 DEBUG opendrift:2131: ---------------------------------
13:58:47 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:47 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:58:47 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:47 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:58:47 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:47 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8576 elements
13:58:47 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8576 elements
13:58:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:58:47 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:58:47 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:58:47 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:47 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:47 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:58:47 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:47 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:58:47 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:47 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8576 elements
13:58:47 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8576 elements
13:58:47 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 10:00:00 (before)
2025-12-18 11:00:00 (after)
13:58:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:58:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:58:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:58:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:58:50 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:58:50 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:58:50 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:58:50 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:58:50 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:58:50 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:58:50 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 11:00:00)
13:58:50 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 10:00:00) in space (linearNDFast)
13:58:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:50 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 11:00:00) in space (linearNDFast)
13:58:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 1
13:58:50 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:50 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 10:00:00, weight 0.20) and
after (2025-12-18 11:00:00, weight 0.80) in time
13:58:50 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:58:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6351303319672 degrees.
13:58:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6351303319672 degrees.
13:58:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6351303319672 degrees.
13:58:50 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.6351303319672 degrees.
13:58:50 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:50 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:58:50 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:58:50 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:58:50 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:58:50 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:58:50 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.482588 (min) 0.00984468 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.327381 (min) 0.668731 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 238.637 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.316072 (min) -0.136833 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: x_wind: -15.3849 (min) -7.48799 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: y_wind: -6.32578 (min) 0.584664 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.31329 (min) 3.59267 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6887 (min) 34.8447 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0389775 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0273326 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.267736 (min) 0 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.181072 (min) 0 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:58:50 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:58:50 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 1.718842, mean: 3.556102, max: 5.830789
13:58:50 DEBUG opendrift:699: 2 elements hit land, moving them to the coastline.
13:58:50 DEBUG opendrift:1691: 2 elements scheduled for deactivation (stranded)
13:58:50 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:58:50 DEBUG opendrift:767: No elements hit seafloor.
13:58:50 DEBUG opendrift:1711: Removed 2 elements.
13:58:50 DEBUG opendrift:1714: Removed 2 values from environment.
13:58:50 DEBUG opendrift:1719: remove items from profile for z
13:58:50 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:58:50 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:58:50 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:58:50 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:58:50 DEBUG opendrift:1723: Removed 2 values from environment_profiles.
13:58:50 DEBUG opendrift:2167: Calling OpenBerg.update()
13:58:50 DEBUG opendrift.models.openberg:551: Melting is disabled
13:58:50 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:58:50 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 7130
13:58:53 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.9385178154041826 m/s
13:58:53 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:58:53 DEBUG opendrift:2110: ======================================================================
13:58:53 INFO opendrift:2111: 2025-12-18 11:48:02.868659 - step 47 of 48 - 8574 active elements (1426 deactivated)
13:58:53 DEBUG opendrift:2117: 0 elements scheduled.
13:58:53 DEBUG opendrift:2119: ======================================================================
13:58:53 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.03866056445833
13:58:53 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.69962876036021
13:58:53 DEBUG opendrift:2128: z = 0.0
13:58:53 DEBUG opendrift:2131: ---------------------------------
13:58:53 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:53 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:58:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:53 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:58:53 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:53 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8574 elements
13:58:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8574 elements
13:58:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:58:53 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:58:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:58:53 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:53 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:58:53 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:58:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:58:53 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:58:53 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:58:53 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8574 elements
13:58:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8574 elements
13:58:53 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 11:00:00 (before)
2025-12-18 12:00:00 (after)
13:58:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:58:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:58:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:58:56 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:58:57 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:58:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:58:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:58:57 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:58:57 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:58:57 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:58:57 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 12:00:00)
13:58:57 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 11:00:00) in space (linearNDFast)
13:58:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:57 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 12:00:00) in space (linearNDFast)
13:58:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:58:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:58:57 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 11:00:00, weight 0.20) and
after (2025-12-18 12:00:00, weight 0.80) in time
13:58:57 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:58:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.67237937323275 degrees.
13:58:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.67237937323275 degrees.
13:58:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.67237937323275 degrees.
13:58:57 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.67237937323275 degrees.
13:58:57 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:58:57 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:58:57 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:58:57 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:58:57 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:58:57 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:58:57 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.283217 (min) 0.289409 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.350218 (min) 0.5626 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 230.641 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.623548 (min) -0.12812 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: x_wind: -15.0902 (min) -5.44516 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: y_wind: -8.51019 (min) -0.00931672 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.3343 (min) 3.6631 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6858 (min) 34.8574 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0383394 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0292469 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.26572 (min) 0.0020031 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.207226 (min) 0 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:58:57 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:58:57 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 1.821802, mean: 3.645882, max: 5.604919
13:58:57 DEBUG opendrift:699: 1 elements hit land, moving them to the coastline.
13:58:57 DEBUG opendrift:1691: 1 elements scheduled for deactivation (stranded)
13:58:57 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:58:57 DEBUG opendrift:767: No elements hit seafloor.
13:58:57 DEBUG opendrift:1711: Removed 1 elements.
13:58:57 DEBUG opendrift:1714: Removed 1 values from environment.
13:58:57 DEBUG opendrift:1719: remove items from profile for z
13:58:57 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:58:57 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:58:57 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:58:57 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:58:57 DEBUG opendrift:1723: Removed 1 values from environment_profiles.
13:58:57 DEBUG opendrift:2167: Calling OpenBerg.update()
13:58:57 DEBUG opendrift.models.openberg:551: Melting is disabled
13:58:57 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:58:57 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 7310
13:59:01 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.871496366534208 m/s
13:59:01 DEBUG opendrift:909: to be seeded: 0, already seeded 10000
13:59:01 DEBUG opendrift:2110: ======================================================================
13:59:01 INFO opendrift:2111: 2025-12-18 12:48:02.868659 - step 48 of 48 - 8573 active elements (1427 deactivated)
13:59:01 DEBUG opendrift:2117: 0 elements scheduled.
13:59:01 DEBUG opendrift:2119: ======================================================================
13:59:01 DEBUG opendrift:2130: 74.93548250064012 <- latitude -> 78.03866056445833
13:59:01 DEBUG opendrift:2130: 16.821500316873404 <- longitude -> 18.695939383727016
13:59:01 DEBUG opendrift:2128: z = 0.0
13:59:01 DEBUG opendrift:2131: ---------------------------------
13:59:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:59:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:59:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:59:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:59:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:59:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8573 elements
13:59:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8573 elements
13:59:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:59:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:59:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:59:01 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:59:01 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:59:01 DEBUG opendrift.models.basemodel.environment:597: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'sea_ice_area_fraction', 'sea_ice_thickness', 'sea_ice_x_velocity', 'sea_ice_y_velocity', 'sea_water_salinity', 'sea_water_temperature', 'sea_surface_height', 'x_sea_water_velocity', 'y_sea_water_velocity']
13:59:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:59:01 DEBUG opendrift.models.basemodel.environment:602: Calling reader https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be
13:59:01 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:59:01 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8573 elements
13:59:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from https://thredds.met.no/thredds/dodsC/fou-hi/barents_eps_zdepth_be covering 8573 elements
13:59:01 DEBUG opendrift.readers.basereader.structured:220: Reader time:
2025-12-18 12:00:00 (before)
2025-12-18 13:00:00 (after)
13:59:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:59:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:59:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:582: Rotating vector from east/north to xy orientation: ['x_sea_water_velocity', 'y_sea_water_velocity']
13:59:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between -49.23144241962123 and -35.318137823547495 degrees.
13:59:04 DEBUG opendrift.readers.basereader.variables:639: Checking sea_floor_depth_below_sea_level for invalid values
13:59:04 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:59:04 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:59:04 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:59:04 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:59:04 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'sea_water_temperature', 'y_sea_water_velocity', 'sea_water_salinity']
13:59:04 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 99x115x7) for time after (2025-12-18 13:00:00)
13:59:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2025-12-18 12:00:00) in space (linearNDFast)
13:59:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:59:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2025-12-18 13:00:00) in space (linearNDFast)
13:59:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:59:04 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:59:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2025-12-18 12:00:00, weight 0.20) and
after (2025-12-18 13:00:00, weight 0.80) in time
13:59:04 DEBUG opendrift.readers.basereader.structured:368: Interpolating profiles in time
13:59:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.668746630219985 degrees.
13:59:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.668746630219985 degrees.
13:59:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.668746630219985 degrees.
13:59:04 DEBUG opendrift.readers.basereader.variables:100: Rotating vectors between 40.84077830141279 and 42.668746630219985 degrees.
13:59:04 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:59:04 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:59:04 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:59:04 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 2 for sea_water_temperature for 0 profiles
13:59:04 DEBUG opendrift.models.basemodel.environment:806: Using fallback value 35 for sea_water_salinity for 0 profiles
13:59:04 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:59:04 DEBUG opendrift.models.basemodel.environment:894: x_sea_water_velocity: -0.238497 (min) 0.418583 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: y_sea_water_velocity: -0.29112 (min) 0.352258 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_floor_depth_below_sea_level: 10 (min) 226.48 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_height: -0.923048 (min) -0.23253 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_x_slope: 0 (min) 0 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_y_slope: 0 (min) 0 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: x_wind: -14.4704 (min) -2.83033 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: y_wind: -8.56276 (min) 0.063383 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_from_direction: 0 (min) 0 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_water_temperature: -1.32891 (min) 3.72164 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_water_salinity: 33.6833 (min) 34.8676 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_area_fraction: 0 (min) 0.0374341 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_thickness: 0 (min) 0.0303413 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_x_velocity: -0.261876 (min) 0.00159175 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: sea_ice_y_velocity: -0.223986 (min) 0 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 0 (max)
13:59:04 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:59:04 DEBUG opendrift.models.physics_methods:822: Calculating Hs from wind, min: 1.203925, mean: 4.102304, max: 5.826488
13:59:04 DEBUG opendrift:696: No elements hit coastline.
13:59:04 DEBUG opendrift:767: No elements hit seafloor.
13:59:04 DEBUG opendrift:1707: No elements to deactivate
13:59:04 DEBUG opendrift:2167: Calling OpenBerg.update()
13:59:04 DEBUG opendrift.models.openberg:551: Melting is disabled
13:59:04 DEBUG opendrift.models.openberg:466: Advection with surface currents
13:59:04 DEBUG opendrift.models.openberg:520: Grounding condition: Icebergs grounded = 7488
13:59:10 DEBUG opendrift:1669: Moving elements according to horizontal diffusivity of 100.0, with speeds between 0.0 and 0.8324724095775258 m/s
13:59:10 DEBUG opendrift:2205: Cleaning up
13:59:10 DEBUG opendrift.models.basemodel.environment:596: ----------------------------------------
13:59:10 DEBUG opendrift.models.basemodel.environment:597: Variable group ['land_binary_mask']
13:59:10 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:59:10 DEBUG opendrift.models.basemodel.environment:602: Calling reader global_landmask
13:59:10 DEBUG opendrift.models.basemodel.environment:603: ----------------------------------------
13:59:10 DEBUG opendrift.models.basemodel.environment:620: Data needed for 8573 elements
13:59:10 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 8573 elements
13:59:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:59:10 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:59:10 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:59:10 DEBUG opendrift.models.basemodel.environment:756: Obtained data for all elements.
13:59:10 DEBUG opendrift.models.basemodel.environment:769: ---------------------------------------
13:59:10 DEBUG opendrift.models.basemodel.environment:770: Finished processing all variable groups
13:59:10 DEBUG opendrift.models.basemodel.environment:892: ------------ SUMMARY -------------
13:59:10 DEBUG opendrift.models.basemodel.environment:894: land_binary_mask: 0 (min) 1 (max)
13:59:10 DEBUG opendrift.models.basemodel.environment:896: ---------------------------------
13:59:10 DEBUG opendrift:699: 4 elements hit land, moving them to the coastline.
13:59:10 DEBUG opendrift:1691: 4 elements scheduled for deactivation (stranded)
13:59:10 DEBUG opendrift:1693: (z: 0.000000 to 0.000000)
13:59:10 DEBUG opendrift:2292: Updating minval and maxval
13:59:10 DEBUG opendrift:2372: Writing to file
13:59:10 DEBUG opendrift:1711: Removed 4 elements.
13:59:10 DEBUG opendrift:1714: Removed 4 values from environment.
13:59:10 DEBUG opendrift:1719: remove items from profile for z
13:59:10 DEBUG opendrift:1719: remove items from profile for sea_water_salinity
13:59:10 DEBUG opendrift:1719: remove items from profile for sea_water_temperature
13:59:10 DEBUG opendrift:1719: remove items from profile for x_sea_water_velocity
13:59:10 DEBUG opendrift:1719: remove items from profile for y_sea_water_velocity
13:59:10 DEBUG opendrift:1723: Removed 4 values from environment_profiles.
13:59:10 DEBUG opendrift:164: Changed mode from Mode.Run to Mode.Result
13:59:10 DEBUG opendrift:2439: Setting up map: corners=None, fast=False, lscale=None
13:59:12 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('i' level 1) with Cartopy shapereader...
13:59:14 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('i' level 5) with Cartopy shapereader...
13:59:14 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('i' level 6) with Cartopy shapereader...
13:59:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:14 DEBUG opendrift:3101: Saving animation..
13:59:15 INFO opendrift:4660: Saving animation to /root/project/docs/source/gallery/animations/example_openberg_0.gif...
13:59:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
13:59:44 DEBUG opendrift:4698: MPLBACKEND = agg
13:59:44 DEBUG opendrift:4699: DISPLAY = None
13:59:44 DEBUG opendrift:4700: Time to save animation: 0:00:29.597864
13:59:44 INFO opendrift:3094: Time to make animation: 0:00:33.882306
o.plot(contourlines=np.arange(0, 500, 25))

13:59:44 DEBUG opendrift:2439: Setting up map: corners=None, fast=False, lscale=None
13:59:46 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (14.842369079589844, 20.681713104248047, 73.76651763916016, 79.04419708251952)..
(<GeoAxes: title={'center': 'OpenDrift - OpenBerg\n2025-12-16 13:48 to 2025-12-18 13:48 UTC (49 steps)'}>, <Figure size 286.073x1100 with 1 Axes>)
Plotting the speed of icebergs
iceberg_speed = np.sqrt(o.result.iceb_x_velocity**2 + o.result.iceb_y_velocity**2)
iceberg_speed.plot.line(x='time', add_legend=False, color='gray')
plt.ylabel('Iceberg speed [m/s]')
plt.show()

Total running time of the script: (12 minutes 28.065 seconds)