Sediment drift from Glomma river outlet

from datetime import timedelta, datetime
from opendrift.models.sedimentdrift import SedimentDrift

o = SedimentDrift(loglevel=0)  # 0 for debug output
14:06:20 DEBUG   opendrift.models.basemodel:625: Adding 18 config items from basemodel
14:06:20 DEBUG   opendrift.models.basemodel:625: Adding 6 config items from basemodel
14:06:20 DEBUG   opendrift.models.basemodel:625: Adding 26 config items from basemodel
14:06:21 INFO    opendrift.models.basemodel:539: OpenDriftSimulation initialised (version 1.10.7 / v1.10.6-119-g1da5bec)
14:06:21 DEBUG   opendrift.models.basemodel:625: Adding 15 config items from oceandrift
14:06:21 DEBUG   opendrift.models.basemodel:637:   Overwriting config item seed:z
14:06:21 DEBUG   opendrift.models.basemodel:625: Adding 1 config items from sedimentdrift

Source of sediments at Glomma river outlet

lat=59.169194
lon=10.962920
o.seed_elements(lon=lon, lat=lat, number=10000,
                time=[datetime.utcnow(), datetime.utcnow()+timedelta(hours=48)],
                terminal_velocity=-.001)  # 1 mm/s settling speed

if False:  # Using constant south-westwards current and wind
    o.set_config('environment:fallback:x_sea_water_velocity', -.05)
    o.set_config('environment:fallback:y_sea_water_velocity', -.1)
    o.set_config('environment:fallback:y_wind', -6)
    o.set_config('environment:fallback:x_wind', -2)
    o.set_config('environment:fallback:sea_floor_depth_below_sea_level', 100)  # 100m depth
else:  # Using live data from Thredds
    o.add_readers_from_list([
        'https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be'])
14:06:21 DEBUG   opendrift.readers.reader_lazy:32: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:21 DEBUG   opendrift.models.basemodel:952: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be

Adding some diffusion

o.set_config('drift:current_uncertainty', .2)
o.set_config('drift:wind_uncertainty', 2)
o.set_config('vertical_mixing:diffusivitymodel', 'windspeed_Large1994')
#o.set_config('vertical_mixing:diffusivitymodel', 'environment')

o.run(time_step=600, time_step_output=1800, duration=timedelta(hours=36))
14:06:21 DEBUG   opendrift.models.basemodel:2545:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.10.7
  Platform: Linux, 5.15.0-1039-aws
  68.56807327270508 GB memory
  36 processors (x86_64)
  NumPy version 1.25.2
  SciPy version 1.11.2
  Matplotlib version 3.7.2
  NetCDF4 version 1.6.1
  Xarray version 2023.8.0
  Python version 3.11.4 | packaged by conda-forge | (main, Jun 10 2023, 18:08:17) [GCC 12.2.0]
------------------------------------------------------

14:06:21 DEBUG   opendrift.models.basemodel:2562: No output file is specified, neglecting export_buffer_length
14:06:21 INFO    opendrift.models.basemodel:2591: Fallback values will be used for the following variables which have no readers:
14:06:21 INFO    opendrift.models.basemodel:2594:       x_sea_water_velocity: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       y_sea_water_velocity: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       upward_sea_water_velocity: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       x_wind: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       y_wind: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       ocean_vertical_diffusivity: 0.020000
14:06:21 INFO    opendrift.models.basemodel:2594:       ocean_mixed_layer_thickness: 50.000000
14:06:21 INFO    opendrift.models.basemodel:2594:       sea_floor_depth_below_sea_level: 10000.000000
14:06:21 DEBUG   opendrift.models.basemodel:2718: Preparing readers for simulation coverage ([8.684760182679899, 58.0016257002547, 13.241080195127719, 60.33676083538983]) and time (2023-09-01 14:06:21.121579 to 2023-09-03 02:06:21.121579)
14:06:21 DEBUG   opendrift.models.basemodel:2722:       Preparing LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:21 INFO    opendrift.models.basemodel:2753: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1 m/s. Adding a customised landmask may be faster...
14:06:21 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:06:27 DEBUG   opendrift.models.basemodel:952: Added reader global_landmask
14:06:27 INFO    opendrift.models.basemodel:1701: Using existing reader for land_binary_mask
14:06:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:27 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 10000 elements
14:06:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:27 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:27 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:27 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 0 (max)
14:06:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:27 DEBUG   opendrift.models.basemodel:1527:               0 active elements
14:06:27 INFO    opendrift.models.basemodel:1713: All points are in ocean
14:06:27 DEBUG   opendrift.models.basemodel:1658: to be seeded: 10000, already seeded 0
14:06:27 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:27 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:27 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:06:21.121579 - step 1 of 216 - 35 active elements (0 deactivated)
14:06:27 DEBUG   opendrift.models.basemodel:2888: 9965 elements scheduled.
14:06:27 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:27 DEBUG   opendrift.models.basemodel:1205: Variables not covered by any reader: ['ocean_mixed_layer_thickness', 'x_sea_water_velocity', 'sea_surface_wave_stokes_drift_y_velocity', 'x_wind', 'upward_sea_water_velocity', 'sea_surface_wave_period_at_variance_spectral_density_maximum', 'sea_surface_wave_stokes_drift_x_velocity', 'sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'sea_floor_depth_below_sea_level', 'y_wind', 'y_sea_water_velocity', 'ocean_vertical_diffusivity']
14:06:27 DEBUG   opendrift.readers.reader_lazy:51: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:27 INFO    opendrift.readers.reader_netCDF_CF_generic:92: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG   opendrift.readers.reader_netCDF_CF_generic:109: Finding coordinate variables.
14:06:30 DEBUG   opendrift.readers.reader_netCDF_CF_generic:122: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': 70.0, 'latitude_of_projection_origin': 90.0, 'standard_parallel': 60.0, 'false_easting': 3192800.0, 'false_northing': 1784000.0, 'semi_major_axis': 6378137.0, 'semi_minor_axis': 6356752.3142, 'proj4': '+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs'}
/opt/conda/envs/opendrift/lib/python3.11/site-packages/pyproj/crs/crs.py:1286: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj = self._crs.to_proj4(version=version)
14:06:30 DEBUG   opendrift.readers.reader_netCDF_CF_generic:310: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
14:06:30 DEBUG   opendrift.readers.basereader.variables:593: Setting buffer size 25 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00
14:06:30 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:06:30 DEBUG   opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
14:06:30 DEBUG   opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
14:06:30 DEBUG   opendrift.readers.basereader.structured:119: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation
14:06:30 DEBUG   opendrift.readers.basereader:188: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG   opendrift.readers.reader_lazy:58: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG   opendrift.readers.basereader.variables:593: Setting buffer size 7 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 1 m/s and time span of 1:00:00
14:06:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:30 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 35 elements
14:06:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:30 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:30 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 35 elements
14:06:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:31 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:31 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:31 DEBUG   opendrift.readers.basereader.structured:253: Fetched env-block (size 14x14x2) for time before (2023-09-01 14:00:00)
14:06:32 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:32 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:32 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 14x14x2) for time after (2023-09-01 15:00:00)
14:06:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
/root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast
  data[mask] = np.finfo(np.float64).min
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:32 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.89) and
                      after (2023-09-01 15:00:00, weight 0.11) in time
14:06:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.037089417119375 and -59.037089417119375 degrees.
14:06:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.037089417119375 and -59.037089417119375 degrees.
14:06:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:32 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:32 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:32 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: 0.209423 (min) 1.17397 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.815059 (min) -0.0796469 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 0.000168217 (min) 0.000168217 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     x_wind: -0.350769 (min) 6.5135 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.30199 (min) 1.78405 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 0 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59209 (min) 6.59209 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1527:               35 active elements
14:06:32 DEBUG   opendrift.models.basemodel:1536:               latitude =  59.169193
14:06:32 DEBUG   opendrift.models.basemodel:1541:               longitude = 10.96292
14:06:32 DEBUG   opendrift.models.basemodel:1546:               z = 0.0
14:06:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:32 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:32 DEBUG   opendrift.models.physics_methods:1050:    min: 0.541418, mean: 3.354604, max: 6.133345
14:06:32 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.541418, mean: 3.354604, max: 6.133345
14:06:32 DEBUG   opendrift.models.basemodel:811: No elements hit coastline.
14:06:32 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:32 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:32 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:32 DEBUG   opendrift.models.oceandrift:376: No vertical advection for elements at surface
14:06:32 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 35 elements above 0.100m with wind-sheared ocean current (0.012673 m/s - 0.143559 m/s)
14:06:32 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:32 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:32 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.046551662178354256
14:06:32 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:32 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:32 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:32 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:32 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:32 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:32 DEBUG   opendrift.models.basemodel:2945: 35 active elements (0 deactivated)
14:06:32 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9965, already seeded 35
14:06:32 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 70 elements
14:06:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:32 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.33284 (max)
14:06:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1527:               70 active elements
14:06:32 DEBUG   opendrift.models.basemodel:1538:               59.16441253821837 <- latitude  -> 59.169193267822266
14:06:32 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.975955555445914
14:06:32 DEBUG   opendrift.models.basemodel:1548:               -6.582090129852295   <- z ->   0.0
14:06:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:32 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:32 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:16:21.121579 - step 2 of 216 - 70 active elements (0 deactivated)
14:06:32 DEBUG   opendrift.models.basemodel:2888: 9930 elements scheduled.
14:06:32 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 70 elements
14:06:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:32 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:32 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 70 elements
14:06:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:33 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:33 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:33 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:33 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:33 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:33 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:33 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 14x15x4) for time after (2023-09-01 15:00:00)
14:06:33 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:33 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:33 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.73) and
                      after (2023-09-01 15:00:00, weight 0.27) in time
14:06:33 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.02405499543675 degrees.
14:06:33 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.02405499543675 degrees.
14:06:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:33 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:33 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:33 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:33 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:33 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.295117 (min) 1.2015 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.979665 (min) 0.177337 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 7.85623e-05 (min) 0.000168513 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.40453 (min) 6.74957 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.70004 (min) 2.73056 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 0 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.33284 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1527:               70 active elements
14:06:33 DEBUG   opendrift.models.basemodel:1538:               59.16441253821837 <- latitude  -> 59.169193267822266
14:06:33 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.975955555445914
14:06:33 DEBUG   opendrift.models.basemodel:1548:               -6.582090129852295   <- z ->   0.0
14:06:33 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:33 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:33 DEBUG   opendrift.models.physics_methods:1050:    min: 0.198726, mean: 3.243954, max: 7.226293
14:06:33 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.198726, mean: 3.243954, max: 7.226293
14:06:33 DEBUG   opendrift.models.basemodel:811: No elements hit coastline.
14:06:33 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:33 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:33 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:33 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 70 elements above 0.100m with wind-sheared ocean current (0.004651 m/s - 0.169141 m/s)
14:06:33 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:33 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:33 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06461909795339583
14:06:33 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:33 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:33 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:33 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:33 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:33 DEBUG   opendrift.models.oceandrift:582: 2 elements penetrated seafloor, lifting up
14:06:33 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:33 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:33 DEBUG   opendrift.models.basemodel:2945: 70 active elements (0 deactivated)
14:06:33 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9930, already seeded 70
14:06:33 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 105 elements
14:06:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:33 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:33 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:33 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:33 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:33 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:33 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.73746 (max)
14:06:33 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1527:               105 active elements
14:06:33 DEBUG   opendrift.models.basemodel:1538:               59.160926142067076 <- latitude  -> 59.169193267822266
14:06:33 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.984739294850716
14:06:33 DEBUG   opendrift.models.basemodel:1548:               -6.9035303497314455   <- z ->   0.0
14:06:33 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:33 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:33 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:26:21.121579 - step 3 of 216 - 105 active elements (0 deactivated)
14:06:33 DEBUG   opendrift.models.basemodel:2888: 9895 elements scheduled.
14:06:33 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 105 elements
14:06:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:33 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:33 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 105 elements
14:06:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:33 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:34 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:34 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:34 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:34 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:34 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:34 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:34 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 15x16x4) for time after (2023-09-01 15:00:00)
14:06:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:34 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
14:06:34 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.56) and
                      after (2023-09-01 15:00:00, weight 0.44) in time
14:06:34 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.01527126135302 degrees.
14:06:34 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.01527126135302 degrees.
14:06:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:34 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:34 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:34 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.545091 (min) 1.03971 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02631 (min) 0.380296 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 6.12511e-05 (min) 0.000168795 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.33785 (min) 8.06094 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.10279 (min) 3.10942 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.73746 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1527:               105 active elements
14:06:34 DEBUG   opendrift.models.basemodel:1538:               59.160926142067076 <- latitude  -> 59.169193267822266
14:06:34 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.984739294850716
14:06:34 DEBUG   opendrift.models.basemodel:1548:               -6.9035303497314455   <- z ->   0.0
14:06:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:34 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:34 DEBUG   opendrift.models.physics_methods:1050:    min: 0.007656, mean: 3.346421, max: 6.891480
14:06:34 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.007656, mean: 3.346421, max: 6.891480
14:06:34 DEBUG   opendrift.models.basemodel:813: 9 elements hit coastline, moving back to water
14:06:34 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:34 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:34 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:34 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 105 elements above 0.100m with wind-sheared ocean current (0.001363 m/s - 0.154904 m/s)
14:06:34 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:34 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:34 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05877024818118094
14:06:34 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:34 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:34 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:34 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:34 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:582: 4 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:34 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:34 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:34 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
14:06:34 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:34 DEBUG   opendrift.models.basemodel:2945: 105 active elements (0 deactivated)
14:06:34 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9895, already seeded 105
14:06:34 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 139 elements
14:06:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:34 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.96482 (max)
14:06:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1527:               139 active elements
14:06:34 DEBUG   opendrift.models.basemodel:1538:               59.15887493786758 <- latitude  -> 59.1693306645268
14:06:34 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.986033197554201
14:06:34 DEBUG   opendrift.models.basemodel:1548:               -7.639473190307617   <- z ->   0.0
14:06:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:34 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:34 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:36:21.121579 - step 4 of 216 - 139 active elements (0 deactivated)
14:06:34 DEBUG   opendrift.models.basemodel:2888: 9861 elements scheduled.
14:06:34 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 139 elements
14:06:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:34 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:34 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 139 elements
14:06:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:35 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:35 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 16x16x4) for time after (2023-09-01 15:00:00)
14:06:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
14:06:35 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.39) and
                      after (2023-09-01 15:00:00, weight 0.61) in time
14:06:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.013977346586906 degrees.
14:06:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.013977346586906 degrees.
14:06:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:35 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:35 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:35 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.413164 (min) 1.11938 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.958255 (min) 0.178987 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 5.2724e-05 (min) 0.000169078 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.01398 (min) 7.33348 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.50778 (min) 2.83401 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.96482 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1527:               139 active elements
14:06:35 DEBUG   opendrift.models.basemodel:1538:               59.15887493786758 <- latitude  -> 59.1693306645268
14:06:35 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.986033197554201
14:06:35 DEBUG   opendrift.models.basemodel:1548:               -7.639473190307617   <- z ->   0.0
14:06:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:35 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:35 DEBUG   opendrift.models.physics_methods:1050:    min: 0.619212, mean: 3.425353, max: 6.861080
14:06:35 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.619212, mean: 3.425353, max: 6.861080
14:06:35 DEBUG   opendrift.models.basemodel:813: 14 elements hit coastline, moving back to water
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:35 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:35 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 139 elements above 0.100m with wind-sheared ocean current (0.015334 m/s - 0.154370 m/s)
14:06:35 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:35 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:35 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0582529281080532
14:06:35 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:35 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:35 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:35 DEBUG   opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 5 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 5 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 4 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 4 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:35 DEBUG   opendrift.models.basemodel:2945: 139 active elements (0 deactivated)
14:06:35 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9861, already seeded 139
14:06:35 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 174 elements
14:06:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 8.2154 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1527:               174 active elements
14:06:35 DEBUG   opendrift.models.basemodel:1538:               59.156373636924926 <- latitude  -> 59.169193267822266
14:06:35 DEBUG   opendrift.models.basemodel:1543:               10.960655209240642 <- longitude -> 10.990065116941548
14:06:35 DEBUG   opendrift.models.basemodel:1548:               -7.663139572143555   <- z ->   0.0
14:06:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:35 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:46:21.121579 - step 5 of 216 - 174 active elements (0 deactivated)
14:06:35 DEBUG   opendrift.models.basemodel:2888: 9826 elements scheduled.
14:06:35 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 174 elements
14:06:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 174 elements
14:06:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:35 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:35 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-09-01 15:00:00)
14:06:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
14:06:35 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.23) and
                      after (2023-09-01 15:00:00, weight 0.77) in time
14:06:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.039355339970925 and -59.00994543944508 degrees.
14:06:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.039355339970925 and -59.00994543944508 degrees.
14:06:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:35 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:35 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:35 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.388533 (min) 1.13393 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.11 (min) 0.444272 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 3.8678e-05 (min) 0.00016936 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.69205 (min) 7.93451 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.08579 (min) 3.47143 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 8.2154 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1527:               174 active elements
14:06:35 DEBUG   opendrift.models.basemodel:1538:               59.156373636924926 <- latitude  -> 59.169193267822266
14:06:35 DEBUG   opendrift.models.basemodel:1543:               10.960655209240642 <- longitude -> 10.990065116941548
14:06:35 DEBUG   opendrift.models.basemodel:1548:               -7.658063888549805   <- z ->   0.0
14:06:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:35 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:35 DEBUG   opendrift.models.physics_methods:1050:    min: 0.519261, mean: 3.322174, max: 7.436176
14:06:35 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.519261, mean: 3.322174, max: 7.436176
14:06:35 DEBUG   opendrift.models.basemodel:813: 11 elements hit coastline, moving back to water
14:06:35 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:35 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:35 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:35 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 174 elements above 0.100m with wind-sheared ocean current (0.010359 m/s - 0.155586 m/s)
14:06:35 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:35 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:35 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0684270087199974
14:06:35 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:35 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:35 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:35 DEBUG   opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
14:06:35 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:35 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:35 DEBUG   opendrift.models.basemodel:2945: 174 active elements (0 deactivated)
14:06:35 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9826, already seeded 174
14:06:35 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 209 elements
14:06:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:35 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.1889 (max)
14:06:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1527:               209 active elements
14:06:35 DEBUG   opendrift.models.basemodel:1538:               59.15207334004717 <- latitude  -> 59.16938797447331
14:06:35 DEBUG   opendrift.models.basemodel:1543:               10.960417568334005 <- longitude -> 10.992724264113562
14:06:35 DEBUG   opendrift.models.basemodel:1548:               -7.738651752471924   <- z ->   0.0
14:06:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:35 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:35 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:56:21.121579 - step 6 of 216 - 209 active elements (0 deactivated)
14:06:35 DEBUG   opendrift.models.basemodel:2888: 9791 elements scheduled.
14:06:35 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 209 elements
14:06:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:35 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:35 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 209 elements
14:06:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
14:06:36 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:36 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:36 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:36 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:36 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:36 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:36 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-09-01 15:00:00)
14:06:36 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
14:06:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:36 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:36 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.06) and
                      after (2023-09-01 15:00:00, weight 0.94) in time
14:06:36 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.039592981393895 and -59.00728629134782 degrees.
14:06:36 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.039592981393895 and -59.00728629134782 degrees.
14:06:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:36 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:36 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:36 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:36 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:36 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.590206 (min) 1.20562 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.976856 (min) 0.274168 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -1.13441e-05 (min) 0.000203662 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.52282 (min) 8.49267 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.87961 (min) 2.59595 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.1889 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1527:               209 active elements
14:06:36 DEBUG   opendrift.models.basemodel:1538:               59.15207334004717 <- latitude  -> 59.16938797447331
14:06:36 DEBUG   opendrift.models.basemodel:1543:               10.960417568334005 <- longitude -> 10.992724264113562
14:06:36 DEBUG   opendrift.models.basemodel:1548:               -7.716254234313965   <- z ->   0.0
14:06:36 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:36 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:36 DEBUG   opendrift.models.physics_methods:1050:    min: 0.293840, mean: 3.249236, max: 8.422784
14:06:36 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.293840, mean: 3.249236, max: 8.422784
14:06:36 DEBUG   opendrift.models.basemodel:813: 16 elements hit coastline, moving back to water
14:06:36 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:36 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:36 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:36 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 209 elements above 0.100m with wind-sheared ocean current (0.012100 m/s - 0.197146 m/s)
14:06:36 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:36 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:36 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08778773143632888
14:06:36 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:36 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:36 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:36 DEBUG   opendrift.models.oceandrift:582: 9 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:36 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:36 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:36 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:36 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:36 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:36 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:36 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:36 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:36 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:36 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:36 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:36 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:36 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:36 DEBUG   opendrift.models.basemodel:2945: 209 active elements (0 deactivated)
14:06:36 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9791, already seeded 209
14:06:36 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 244 elements
14:06:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:36 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:36 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:36 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:36 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:36 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:36 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.98324 (max)
14:06:36 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1527:               244 active elements
14:06:36 DEBUG   opendrift.models.basemodel:1538:               59.148397376837565 <- latitude  -> 59.169193267822266
14:06:36 DEBUG   opendrift.models.basemodel:1543:               10.959344753250036 <- longitude -> 10.999852511145564
14:06:36 DEBUG   opendrift.models.basemodel:1548:               -8.024125328063965   <- z ->   0.0
14:06:36 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:36 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:36 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:06:21.121579 - step 7 of 216 - 244 active elements (0 deactivated)
14:06:36 DEBUG   opendrift.models.basemodel:2888: 9756 elements scheduled.
14:06:36 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 244 elements
14:06:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:36 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:36 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 244 elements
14:06:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:36 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:37 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:37 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:37 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:37 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:37 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:37 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:37 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
14:06:37 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:37 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:37 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.89) and
                      after (2023-09-01 16:00:00, weight 0.11) in time
14:06:37 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.040665792525004 and -59.00015804852999 degrees.
14:06:37 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.040665792525004 and -59.00015804852999 degrees.
14:06:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:37 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:37 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:37 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:37 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:37 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.575684 (min) 1.10292 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02638 (min) 0.329657 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.21579e-06 (min) 0.000202226 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.42773 (min) 8.21935 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.73977 (min) 3.77027 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.98324 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1527:               244 active elements
14:06:37 DEBUG   opendrift.models.basemodel:1538:               59.148397376837565 <- latitude  -> 59.169193267822266
14:06:37 DEBUG   opendrift.models.basemodel:1543:               10.959344753250036 <- longitude -> 10.999852511145564
14:06:37 DEBUG   opendrift.models.basemodel:1548:               -8.024125328063965   <- z ->   0.0
14:06:37 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:37 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:37 DEBUG   opendrift.models.physics_methods:1050:    min: 0.029428, mean: 3.128323, max: 8.107981
14:06:37 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029428, mean: 3.128323, max: 8.107981
14:06:37 DEBUG   opendrift.models.basemodel:813: 27 elements hit coastline, moving back to water
14:06:37 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:37 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:37 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:37 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 244 elements above 0.100m with wind-sheared ocean current (0.009605 m/s - 0.189778 m/s)
14:06:37 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:37 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:37 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08134849924524307
14:06:37 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:37 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:37 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:37 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:37 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:37 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:37 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:37 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:37 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:37 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:37 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:37 DEBUG   opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:37 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:37 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:582: 15 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:37 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:37 DEBUG   opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
14:06:37 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:37 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:37 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:37 DEBUG   opendrift.models.basemodel:2945: 244 active elements (0 deactivated)
14:06:37 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9756, already seeded 244
14:06:37 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 278 elements
14:06:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:37 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:37 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:37 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:37 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:37 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:37 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.98766 (max)
14:06:37 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1527:               278 active elements
14:06:37 DEBUG   opendrift.models.basemodel:1538:               59.14832143409943 <- latitude  -> 59.169395612211666
14:06:37 DEBUG   opendrift.models.basemodel:1543:               10.957936579872966 <- longitude -> 10.998164834762282
14:06:37 DEBUG   opendrift.models.basemodel:1548:               -8.253931357501758   <- z ->   0.0
14:06:37 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:37 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:37 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:16:21.121579 - step 8 of 216 - 278 active elements (0 deactivated)
14:06:37 DEBUG   opendrift.models.basemodel:2888: 9722 elements scheduled.
14:06:37 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 278 elements
14:06:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:37 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:37 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 278 elements
14:06:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:37 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:38 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:38 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:38 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:38 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:38 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:38 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:38 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
14:06:38 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:38 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
14:06:38 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.73) and
                      after (2023-09-01 16:00:00, weight 0.27) in time
14:06:38 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.042073978451484 and -59.0018457155171 degrees.
14:06:38 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.042073978451484 and -59.0018457155171 degrees.
14:06:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:38 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:38 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:38 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:38 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:38 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.545918 (min) 1.14451 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.995596 (min) 0.459322 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000116386 (min) 0.000256131 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.52739 (min) 9.42773 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.11211 (min) 3.84113 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.98766 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1527:               278 active elements
14:06:38 DEBUG   opendrift.models.basemodel:1538:               59.14832143409943 <- latitude  -> 59.169395612211666
14:06:38 DEBUG   opendrift.models.basemodel:1543:               10.957936579872966 <- longitude -> 10.998164834762282
14:06:38 DEBUG   opendrift.models.basemodel:1548:               -8.253931357501758   <- z ->   0.0
14:06:38 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:38 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:38 DEBUG   opendrift.models.physics_methods:1050:    min: 0.498946, mean: 3.192805, max: 8.191476
14:06:38 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.498946, mean: 3.192805, max: 8.191476
14:06:38 DEBUG   opendrift.models.basemodel:813: 24 elements hit coastline, moving back to water
14:06:38 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:38 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:38 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:38 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 278 elements above 0.100m with wind-sheared ocean current (0.006888 m/s - 0.147012 m/s)
14:06:38 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:38 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:38 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0830324951687622
14:06:38 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:38 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:38 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:38 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 15 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 16 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 15 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:38 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:38 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:38 DEBUG   opendrift.models.basemodel:2945: 278 active elements (0 deactivated)
14:06:38 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9722, already seeded 278
14:06:38 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 313 elements
14:06:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:38 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:38 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:38 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:38 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:38 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:38 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.56388 (min) 9.88011 (max)
14:06:38 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1527:               313 active elements
14:06:38 DEBUG   opendrift.models.basemodel:1538:               59.14869001141264 <- latitude  -> 59.17008289222119
14:06:38 DEBUG   opendrift.models.basemodel:1543:               10.956570547950063 <- longitude -> 10.997814480657802
14:06:38 DEBUG   opendrift.models.basemodel:1548:               -8.378004302978516   <- z ->   0.0
14:06:38 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:38 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:38 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:26:21.121579 - step 9 of 216 - 313 active elements (0 deactivated)
14:06:38 DEBUG   opendrift.models.basemodel:2888: 9687 elements scheduled.
14:06:38 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 313 elements
14:06:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:38 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:38 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 313 elements
14:06:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:38 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:39 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:39 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
14:06:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
14:06:39 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.56) and
                      after (2023-09-01 16:00:00, weight 0.44) in time
14:06:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.043440002977654 and -59.00219607871939 degrees.
14:06:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.043440002977654 and -59.00219607871939 degrees.
14:06:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:39 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:39 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:39 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.61792 (min) 1.19176 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.962184 (min) 0.469613 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000131751 (min) 0.000368963 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.66965 (min) 8.61127 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.70816 (min) 4.65392 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.56388 (min) 9.88011 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1527:               313 active elements
14:06:39 DEBUG   opendrift.models.basemodel:1538:               59.14869001141264 <- latitude  -> 59.17008289222119
14:06:39 DEBUG   opendrift.models.basemodel:1543:               10.956570547950063 <- longitude -> 10.997814480657802
14:06:39 DEBUG   opendrift.models.basemodel:1548:               -8.145859718322754   <- z ->   0.0
14:06:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:39 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:39 DEBUG   opendrift.models.physics_methods:1050:    min: 0.173002, mean: 3.369443, max: 7.766444
14:06:39 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.173002, mean: 3.369443, max: 7.766444
14:06:39 DEBUG   opendrift.models.basemodel:813: 28 elements hit coastline, moving back to water
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:39 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:39 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:39 DEBUG   opendrift.models.physics_methods:828: Advecting 38 of 313 elements above 0.100m with wind-sheared ocean current (0.004049 m/s - 0.181784 m/s)
14:06:39 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:39 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:39 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07463981958492279
14:06:39 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:39 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:39 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:39 DEBUG   opendrift.models.oceandrift:582: 35 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 23 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:39 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:39 DEBUG   opendrift.models.basemodel:2945: 313 active elements (0 deactivated)
14:06:39 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9687, already seeded 313
14:06:39 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 348 elements
14:06:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 10.2217 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1527:               348 active elements
14:06:39 DEBUG   opendrift.models.basemodel:1538:               59.14739690826961 <- latitude  -> 59.169681308393706
14:06:39 DEBUG   opendrift.models.basemodel:1543:               10.956374807134088 <- longitude -> 10.999402547315455
14:06:39 DEBUG   opendrift.models.basemodel:1548:               -8.436469137741499   <- z ->   0.0
14:06:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:39 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:39 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:36:21.121579 - step 10 of 216 - 348 active elements (0 deactivated)
14:06:39 DEBUG   opendrift.models.basemodel:2888: 9652 elements scheduled.
14:06:39 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 348 elements
14:06:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 348 elements
14:06:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:39 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:39 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x17x4) for time after (2023-09-01 16:00:00)
14:06:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
14:06:39 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.39) and
                      after (2023-09-01 16:00:00, weight 0.61) in time
14:06:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.043635761174635 and -59.000608001320245 degrees.
14:06:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.043635761174635 and -59.000608001320245 degrees.
14:06:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:39 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:39 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:39 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.612989 (min) 1.09195 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.08319 (min) 0.320839 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.27851e-05 (min) 0.000287937 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.11389 (min) 10.3445 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.46343 (min) 5.28276 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 10.2217 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1527:               348 active elements
14:06:39 DEBUG   opendrift.models.basemodel:1538:               59.14739690826961 <- latitude  -> 59.169681308393706
14:06:39 DEBUG   opendrift.models.basemodel:1543:               10.956374807134088 <- longitude -> 10.999402547315455
14:06:39 DEBUG   opendrift.models.basemodel:1548:               -8.436469137741499   <- z ->   0.0
14:06:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:39 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:39 DEBUG   opendrift.models.physics_methods:1050:    min: 0.182488, mean: 3.681840, max: 8.842782
14:06:39 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.182488, mean: 3.681840, max: 8.842782
14:06:39 DEBUG   opendrift.models.basemodel:813: 28 elements hit coastline, moving back to water
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:39 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:39 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:39 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 348 elements above 0.100m with wind-sheared ocean current (0.022403 m/s - 0.198594 m/s)
14:06:39 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:39 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:39 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09676058904750823
14:06:39 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:39 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:39 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:39 DEBUG   opendrift.models.oceandrift:582: 36 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 16 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:582: 24 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 23 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:39 DEBUG   opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
14:06:39 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:39 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:39 DEBUG   opendrift.models.basemodel:2945: 348 active elements (0 deactivated)
14:06:39 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9652, already seeded 348
14:06:39 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 382 elements
14:06:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:39 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.37859 (min) 10.4457 (max)
14:06:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1527:               382 active elements
14:06:39 DEBUG   opendrift.models.basemodel:1538:               59.146281833162945 <- latitude  -> 59.16984423800563
14:06:39 DEBUG   opendrift.models.basemodel:1543:               10.954955193129686 <- longitude -> 10.998670847328421
14:06:39 DEBUG   opendrift.models.basemodel:1548:               -8.692142486572266   <- z ->   0.0
14:06:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:39 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:39 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:46:21.121579 - step 11 of 216 - 382 active elements (0 deactivated)
14:06:39 DEBUG   opendrift.models.basemodel:2888: 9618 elements scheduled.
14:06:39 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 382 elements
14:06:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:39 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:39 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 382 elements
14:06:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:40 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:40 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:40 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
14:06:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:40 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:40 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.23) and
                      after (2023-09-01 16:00:00, weight 0.77) in time
14:06:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04505535239997 and -59.001339695547536 degrees.
14:06:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04505535239997 and -59.001339695547536 degrees.
14:06:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:40 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:40 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:40 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.628244 (min) 1.39168 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.880974 (min) 0.382596 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -2.85405e-05 (min) 0.000425473 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.8265 (min) 8.80585 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.15021 (min) 5.33181 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.37859 (min) 10.4457 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1527:               382 active elements
14:06:40 DEBUG   opendrift.models.basemodel:1538:               59.146281833162945 <- latitude  -> 59.16984423800563
14:06:40 DEBUG   opendrift.models.basemodel:1543:               10.954955193129686 <- longitude -> 10.998670847328421
14:06:40 DEBUG   opendrift.models.basemodel:1548:               -8.61673355102539   <- z ->   0.0
14:06:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:40 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:40 DEBUG   opendrift.models.physics_methods:1050:    min: 0.175402, mean: 3.590255, max: 7.766889
14:06:40 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.175402, mean: 3.590255, max: 7.766889
14:06:40 DEBUG   opendrift.models.basemodel:813: 34 elements hit coastline, moving back to water
14:06:40 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:40 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:40 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:40 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 382 elements above 0.100m with wind-sheared ocean current (0.004106 m/s - 0.168220 m/s)
14:06:40 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:40 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:40 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.074648373612957
14:06:40 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:40 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:40 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:40 DEBUG   opendrift.models.oceandrift:582: 30 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:40 DEBUG   opendrift.models.oceandrift:582: 23 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:40 DEBUG   opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:40 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:40 DEBUG   opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:40 DEBUG   opendrift.models.oceandrift:582: 24 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:40 DEBUG   opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:40 DEBUG   opendrift.models.oceandrift:582: 26 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:40 DEBUG   opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
14:06:40 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:40 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:40 DEBUG   opendrift.models.basemodel:2945: 382 active elements (0 deactivated)
14:06:40 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9618, already seeded 382
14:06:40 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 417 elements
14:06:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:40 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 10.4333 (max)
14:06:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1527:               417 active elements
14:06:40 DEBUG   opendrift.models.basemodel:1538:               59.14619363679434 <- latitude  -> 59.16951898852412
14:06:40 DEBUG   opendrift.models.basemodel:1543:               10.95258622662583 <- longitude -> 10.997045570822449
14:06:40 DEBUG   opendrift.models.basemodel:1548:               -10.445683479309082   <- z ->   0.0
14:06:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:40 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:40 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:56:21.121579 - step 12 of 216 - 417 active elements (0 deactivated)
14:06:40 DEBUG   opendrift.models.basemodel:2888: 9583 elements scheduled.
14:06:40 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 417 elements
14:06:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:40 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:40 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 417 elements
14:06:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
14:06:41 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:41 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:41 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:41 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:41 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:41 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:41 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 16:00:00)
14:06:41 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
14:06:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:41 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 230 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
14:06:41 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.06) and
                      after (2023-09-01 16:00:00, weight 0.94) in time
14:06:41 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -59.00296497176889 degrees.
14:06:41 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -59.00296497176889 degrees.
14:06:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:41 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:41 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:41 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:41 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:41 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.559727 (min) 1.34041 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.972048 (min) 0.369194 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -2.00076e-06 (min) 0.000339297 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.99459 (min) 11.0179 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.898 (min) 5.54832 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 10.4333 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1527:               417 active elements
14:06:41 DEBUG   opendrift.models.basemodel:1538:               59.14619363679434 <- latitude  -> 59.16951898852412
14:06:41 DEBUG   opendrift.models.basemodel:1543:               10.95258622662583 <- longitude -> 10.997045570822449
14:06:41 DEBUG   opendrift.models.basemodel:1548:               -10.433300018310547   <- z ->   0.0
14:06:41 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:41 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:41 DEBUG   opendrift.models.physics_methods:1050:    min: 0.319033, mean: 3.905024, max: 9.417080
14:06:41 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.319033, mean: 3.905024, max: 9.417080
14:06:41 DEBUG   opendrift.models.basemodel:813: 39 elements hit coastline, moving back to water
14:06:41 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:41 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:41 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:41 DEBUG   opendrift.models.physics_methods:828: Advecting 37 of 417 elements above 0.100m with wind-sheared ocean current (0.014109 m/s - 0.142732 m/s)
14:06:41 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:41 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:41 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10973646694810867
14:06:41 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:41 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:41 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:41 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 34 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 32 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 27 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:41 DEBUG   opendrift.models.oceandrift:582: 27 elements penetrated seafloor, lifting up
14:06:41 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:41 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:41 DEBUG   opendrift.models.basemodel:2945: 417 active elements (0 deactivated)
14:06:41 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9583, already seeded 417
14:06:41 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 452 elements
14:06:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:41 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:41 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:41 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:41 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:41 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:41 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.54797 (min) 10.4333 (max)
14:06:41 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1527:               452 active elements
14:06:41 DEBUG   opendrift.models.basemodel:1538:               59.14564998142515 <- latitude  -> 59.17031245227833
14:06:41 DEBUG   opendrift.models.basemodel:1543:               10.946920992621898 <- longitude -> 10.997945058633775
14:06:41 DEBUG   opendrift.models.basemodel:1548:               -10.423300018310547   <- z ->   0.0
14:06:41 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:41 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:41 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:06:21.121579 - step 13 of 216 - 452 active elements (0 deactivated)
14:06:41 DEBUG   opendrift.models.basemodel:2888: 9548 elements scheduled.
14:06:41 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 452 elements
14:06:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:41 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:41 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 452 elements
14:06:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:41 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:42 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:42 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:42 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:42 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:42 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:42 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:42 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 17:00:00)
14:06:42 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:42 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
14:06:42 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.89) and
                      after (2023-09-01 17:00:00, weight 0.11) in time
14:06:42 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05308955674391 and -59.00206549823316 degrees.
14:06:42 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05308955674391 and -59.00206549823316 degrees.
14:06:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:42 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:42 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:42 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:42 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:42 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.521946 (min) 1.12013 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.863237 (min) 0.440207 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.63127e-05 (min) 0.000297636 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.21448 (min) 10.2505 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.91734 (min) 5.84544 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.54797 (min) 10.4333 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1527:               452 active elements
14:06:42 DEBUG   opendrift.models.basemodel:1538:               59.14564998142515 <- latitude  -> 59.17031245227833
14:06:42 DEBUG   opendrift.models.basemodel:1543:               10.946920992621898 <- longitude -> 10.997945058633775
14:06:42 DEBUG   opendrift.models.basemodel:1548:               -10.423300018310547   <- z ->   0.0
14:06:42 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:42 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:42 DEBUG   opendrift.models.physics_methods:1050:    min: 0.171492, mean: 4.128481, max: 8.760392
14:06:42 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.171492, mean: 4.128481, max: 8.760392
14:06:42 DEBUG   opendrift.models.basemodel:813: 48 elements hit coastline, moving back to water
14:06:42 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:42 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:42 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:42 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 452 elements above 0.100m with wind-sheared ocean current (0.008442 m/s - 0.156862 m/s)
14:06:42 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:42 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:42 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09496599104221344
14:06:42 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:42 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:42 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:42 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:42 DEBUG   opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:42 DEBUG   opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:42 DEBUG   opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:42 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:42 DEBUG   opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:42 DEBUG   opendrift.models.oceandrift:582: 36 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:582: 34 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:42 DEBUG   opendrift.models.oceandrift:582: 44 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:42 DEBUG   opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:42 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:42 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:42 DEBUG   opendrift.models.basemodel:2945: 452 active elements (0 deactivated)
14:06:42 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9548, already seeded 452
14:06:42 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 487 elements
14:06:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:42 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:42 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:42 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:42 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:42 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:42 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.56173 (min) 10.5375 (max)
14:06:42 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1527:               487 active elements
14:06:42 DEBUG   opendrift.models.basemodel:1538:               59.144897077608924 <- latitude  -> 59.169899207970914
14:06:42 DEBUG   opendrift.models.basemodel:1543:               10.951438938207707 <- longitude -> 10.999737735270449
14:06:42 DEBUG   opendrift.models.basemodel:1548:               -10.211332218661333   <- z ->   0.0
14:06:42 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:42 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:42 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:16:21.121579 - step 14 of 216 - 487 active elements (0 deactivated)
14:06:42 DEBUG   opendrift.models.basemodel:2888: 9513 elements scheduled.
14:06:42 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 487 elements
14:06:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:42 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:42 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 487 elements
14:06:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:42 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:43 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:43 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:43 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:43 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:43 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:43 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:43 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 17:00:00)
14:06:43 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:43 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 268 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 1
14:06:43 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.73) and
                      after (2023-09-01 17:00:00, weight 0.27) in time
14:06:43 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04857161733372 and -59.00027281513057 degrees.
14:06:43 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04857161733372 and -59.00027281513057 degrees.
14:06:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:43 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:43 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:43 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:43 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:43 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.492286 (min) 1.13146 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.9448 (min) 0.459505 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.91054e-05 (min) 0.000331746 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.18252 (min) 11.0822 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.13908 (min) 6.76083 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.56173 (min) 10.5375 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1527:               487 active elements
14:06:43 DEBUG   opendrift.models.basemodel:1538:               59.144897077608924 <- latitude  -> 59.169899207970914
14:06:43 DEBUG   opendrift.models.basemodel:1543:               10.951438938207707 <- longitude -> 10.999737735270449
14:06:43 DEBUG   opendrift.models.basemodel:1548:               -10.211332218661333   <- z ->   0.0
14:06:43 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:43 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:43 DEBUG   opendrift.models.physics_methods:1050:    min: 0.357869, mean: 4.211514, max: 9.533669
14:06:43 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.357869, mean: 4.211514, max: 9.533669
14:06:43 DEBUG   opendrift.models.basemodel:813: 39 elements hit coastline, moving back to water
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:43 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:43 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 487 elements above 0.100m with wind-sheared ocean current (0.040367 m/s - 0.202311 m/s)
14:06:43 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:43 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:43 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1124704013982582
14:06:43 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:43 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:43 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:43 DEBUG   opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 35 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 32 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 46 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 39 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:43 DEBUG   opendrift.models.oceandrift:582: 36 elements penetrated seafloor, lifting up
14:06:43 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:43 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:43 DEBUG   opendrift.models.basemodel:2945: 487 active elements (0 deactivated)
14:06:43 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9513, already seeded 487
14:06:43 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 521 elements
14:06:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:43 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:43 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:43 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:43 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:43 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:43 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.586 (min) 10.9521 (max)
14:06:43 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1527:               521 active elements
14:06:43 DEBUG   opendrift.models.basemodel:1538:               59.142910574372 <- latitude  -> 59.17001172448077
14:06:43 DEBUG   opendrift.models.basemodel:1543:               10.95258622662583 <- longitude -> 11.000194587275002
14:06:43 DEBUG   opendrift.models.basemodel:1548:               -10.520138534814501   <- z ->   0.0
14:06:43 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:06:43 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:43 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:26:21.121579 - step 15 of 216 - 521 active elements (0 deactivated)
14:06:43 DEBUG   opendrift.models.basemodel:2888: 9479 elements scheduled.
14:06:43 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 521 elements
14:06:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:43 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:43 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 521 elements
14:06:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:43 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:44 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:44 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:44 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:44 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:44 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:44 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:44 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 17:00:00)
14:06:44 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:44 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
14:06:44 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.56) and
                      after (2023-09-01 17:00:00, weight 0.44) in time
14:06:44 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -58.99981595827792 degrees.
14:06:44 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -58.99981595827792 degrees.
14:06:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:44 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:44 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:44 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:44 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:44 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.637573 (min) 1.1638 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.87822 (min) 0.509859 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000100545 (min) 0.00029944 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.82564 (min) 11.0875 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.6986 (min) 6.52684 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.586 (min) 10.9521 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1527:               521 active elements
14:06:44 DEBUG   opendrift.models.basemodel:1538:               59.142910574372 <- latitude  -> 59.17001172448077
14:06:44 DEBUG   opendrift.models.basemodel:1543:               10.95258622662583 <- longitude -> 11.000194587275002
14:06:44 DEBUG   opendrift.models.basemodel:1548:               -10.520138534814501   <- z ->   0.0
14:06:44 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:44 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:44 DEBUG   opendrift.models.physics_methods:1050:    min: 0.277496, mean: 4.141616, max: 9.752912
14:06:44 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.277496, mean: 4.141616, max: 9.752912
14:06:44 DEBUG   opendrift.models.basemodel:813: 48 elements hit coastline, moving back to water
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:44 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:44 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:44 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 521 elements above 0.100m with wind-sheared ocean current (0.017089 m/s - 0.177293 m/s)
14:06:44 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:44 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:44 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11770258872945785
14:06:44 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:44 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:44 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:44 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 31 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:44 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
14:06:44 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:44 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:44 DEBUG   opendrift.models.basemodel:2945: 521 active elements (0 deactivated)
14:06:44 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9479, already seeded 521
14:06:44 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 556 elements
14:06:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:44 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:44 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:44 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:44 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:44 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:44 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.38104 (min) 10.8145 (max)
14:06:44 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1527:               556 active elements
14:06:44 DEBUG   opendrift.models.basemodel:1538:               59.14358693473479 <- latitude  -> 59.169193267822266
14:06:44 DEBUG   opendrift.models.basemodel:1543:               10.952586226625833 <- longitude -> 11.00513211401608
14:06:44 DEBUG   opendrift.models.basemodel:1548:               -9.46933533864721   <- z ->   0.0
14:06:44 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:06:44 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:44 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:36:21.121579 - step 16 of 216 - 556 active elements (0 deactivated)
14:06:44 DEBUG   opendrift.models.basemodel:2888: 9444 elements scheduled.
14:06:44 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 556 elements
14:06:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:44 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:44 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 556 elements
14:06:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:44 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:45 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:45 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:45 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:45 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:45 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:45 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:45 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 17:00:00)
14:06:45 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:45 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
14:06:45 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.39) and
                      after (2023-09-01 17:00:00, weight 0.61) in time
14:06:45 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -58.994878433731934 degrees.
14:06:45 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04742432403159 and -58.994878433731934 degrees.
14:06:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:45 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:45 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:45 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:45 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:45 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.524796 (min) 1.135 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0495 (min) 0.478093 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.4207e-05 (min) 0.000352832 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.81655 (min) 9.13625 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.40572 (min) 8.25121 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.38104 (min) 10.8145 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1527:               556 active elements
14:06:45 DEBUG   opendrift.models.basemodel:1538:               59.14358693473479 <- latitude  -> 59.169193267822266
14:06:45 DEBUG   opendrift.models.basemodel:1543:               10.952586226625833 <- longitude -> 11.00513211401608
14:06:45 DEBUG   opendrift.models.basemodel:1548:               -9.46933533864721   <- z ->   0.0
14:06:45 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:45 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:45 DEBUG   opendrift.models.physics_methods:1050:    min: 0.175330, mean: 4.017693, max: 8.204573
14:06:45 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.175330, mean: 4.017693, max: 8.204573
14:06:45 DEBUG   opendrift.models.basemodel:813: 42 elements hit coastline, moving back to water
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:45 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:45 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:45 DEBUG   opendrift.models.physics_methods:828: Advecting 37 of 556 elements above 0.100m with wind-sheared ocean current (0.009133 m/s - 0.173789 m/s)
14:06:45 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:45 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:45 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0832981996990013
14:06:45 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:45 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:45 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:45 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 44 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:45 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
14:06:45 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:45 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:45 DEBUG   opendrift.models.basemodel:2945: 556 active elements (0 deactivated)
14:06:45 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9444, already seeded 556
14:06:45 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 591 elements
14:06:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:45 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:45 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:45 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:45 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:45 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:45 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 11.0416 (max)
14:06:45 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1527:               591 active elements
14:06:45 DEBUG   opendrift.models.basemodel:1538:               59.142392393488436 <- latitude  -> 59.169650743819766
14:06:45 DEBUG   opendrift.models.basemodel:1543:               10.951268185913218 <- longitude -> 11.00474671376016
14:06:45 DEBUG   opendrift.models.basemodel:1548:               -9.74244104291133   <- z ->   0.0
14:06:45 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:06:45 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:45 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:46:21.121579 - step 17 of 216 - 591 active elements (0 deactivated)
14:06:45 DEBUG   opendrift.models.basemodel:2888: 9409 elements scheduled.
14:06:45 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 591 elements
14:06:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:45 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:45 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 591 elements
14:06:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:45 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:46 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:46 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 17:00:00)
14:06:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
14:06:46 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.23) and
                      after (2023-09-01 17:00:00, weight 0.77) in time
14:06:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04874236379355 and -58.99526383108535 degrees.
14:06:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04874236379355 and -58.99526383108535 degrees.
14:06:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:46 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:46 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:46 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.626365 (min) 1.20157 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.902996 (min) 0.595549 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000113764 (min) 0.000271444 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.87953 (min) 9.95491 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.49375 (min) 6.42084 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 11.0416 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1527:               591 active elements
14:06:46 DEBUG   opendrift.models.basemodel:1538:               59.142392393488436 <- latitude  -> 59.169650743819766
14:06:46 DEBUG   opendrift.models.basemodel:1543:               10.951268185913218 <- longitude -> 11.00474671376016
14:06:46 DEBUG   opendrift.models.basemodel:1548:               -9.74244104291133   <- z ->   0.0
14:06:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:46 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:46 DEBUG   opendrift.models.physics_methods:1050:    min: 0.469084, mean: 3.986324, max: 8.520491
14:06:46 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.469084, mean: 3.986324, max: 8.520491
14:06:46 DEBUG   opendrift.models.basemodel:813: 48 elements hit coastline, moving back to water
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:46 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:46 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:46 DEBUG   opendrift.models.physics_methods:828: Advecting 37 of 591 elements above 0.100m with wind-sheared ocean current (0.013831 m/s - 0.155075 m/s)
14:06:46 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:46 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:46 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08983618721683502
14:06:46 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:46 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:46 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:46 DEBUG   opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:46 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:46 DEBUG   opendrift.models.basemodel:2945: 591 active elements (0 deactivated)
14:06:46 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9409, already seeded 591
14:06:46 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 625 elements
14:06:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.93993 (min) 11.3752 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1527:               625 active elements
14:06:46 DEBUG   opendrift.models.basemodel:1538:               59.14048419731914 <- latitude  -> 59.1710929167073
14:06:46 DEBUG   opendrift.models.basemodel:1543:               10.952825334021503 <- longitude -> 11.008656708280903
14:06:46 DEBUG   opendrift.models.basemodel:1548:               -9.676827663323397   <- z ->   0.0
14:06:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:06:46 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:46 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:56:21.121579 - step 18 of 216 - 625 active elements (0 deactivated)
14:06:46 DEBUG   opendrift.models.basemodel:2888: 9375 elements scheduled.
14:06:46 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 625 elements
14:06:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 625 elements
14:06:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:46 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:46 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 17:00:00)
14:06:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
14:06:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
14:06:46 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.06) and
                      after (2023-09-01 17:00:00, weight 0.94) in time
14:06:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0471852224596 and -58.991353840994115 degrees.
14:06:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0471852224596 and -58.991353840994115 degrees.
14:06:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:46 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:46 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:46 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.597386 (min) 1.27404 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.15051 (min) 0.379282 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.97708e-05 (min) 0.000442375 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.05513 (min) 10.3549 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.77212 (min) 6.40346 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.93993 (min) 11.3752 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1527:               625 active elements
14:06:46 DEBUG   opendrift.models.basemodel:1538:               59.14048419731914 <- latitude  -> 59.1710929167073
14:06:46 DEBUG   opendrift.models.basemodel:1543:               10.952825334021503 <- longitude -> 11.008656708280903
14:06:46 DEBUG   opendrift.models.basemodel:1548:               -9.676827663323397   <- z ->   0.0
14:06:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:46 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:46 DEBUG   opendrift.models.physics_methods:1050:    min: 0.224370, mean: 4.043081, max: 8.956312
14:06:46 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.224370, mean: 4.043081, max: 8.956312
14:06:46 DEBUG   opendrift.models.basemodel:813: 57 elements hit coastline, moving back to water
14:06:46 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:46 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:46 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:46 DEBUG   opendrift.models.physics_methods:828: Advecting 34 of 625 elements above 0.100m with wind-sheared ocean current (0.023127 m/s - 0.172881 m/s)
14:06:46 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:46 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:46 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09926099588401793
14:06:46 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:46 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:46 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:46 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 44 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:46 DEBUG   opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
14:06:46 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:46 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:46 DEBUG   opendrift.models.basemodel:2945: 625 active elements (0 deactivated)
14:06:46 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9375, already seeded 625
14:06:46 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 660 elements
14:06:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:46 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.18986 (min) 11.4032 (max)
14:06:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1527:               660 active elements
14:06:46 DEBUG   opendrift.models.basemodel:1538:               59.14058867601652 <- latitude  -> 59.17015758534209
14:06:46 DEBUG   opendrift.models.basemodel:1543:               10.952331055986264 <- longitude -> 11.007311390761146
14:06:46 DEBUG   opendrift.models.basemodel:1548:               -10.946149029295343   <- z ->   0.0
14:06:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:06:46 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:46 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:06:21.121579 - step 19 of 216 - 660 active elements (0 deactivated)
14:06:46 DEBUG   opendrift.models.basemodel:2888: 9340 elements scheduled.
14:06:46 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 660 elements
14:06:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:46 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:46 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 660 elements
14:06:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:47 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:47 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:47 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:47 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:47 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:47 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:47 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:47 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:47 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
14:06:47 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.89) and
                      after (2023-09-01 18:00:00, weight 0.11) in time
14:06:47 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0476794955894 and -58.99269915964418 degrees.
14:06:47 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0476794955894 and -58.99269915964418 degrees.
14:06:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:47 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:47 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:47 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:47 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:47 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.578782 (min) 1.20207 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.803585 (min) 0.57157 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.68876e-05 (min) 0.000414398 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.93149 (min) 9.67248 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.68268 (min) 7.12987 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.18986 (min) 11.4032 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1527:               660 active elements
14:06:47 DEBUG   opendrift.models.basemodel:1538:               59.14058867601652 <- latitude  -> 59.17015758534209
14:06:47 DEBUG   opendrift.models.basemodel:1543:               10.952331055986264 <- longitude -> 11.007311390761146
14:06:47 DEBUG   opendrift.models.basemodel:1548:               -10.946149029295343   <- z ->   0.0
14:06:47 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:47 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:47 DEBUG   opendrift.models.physics_methods:1050:    min: 0.207864, mean: 4.021178, max: 8.551816
14:06:47 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.207864, mean: 4.021178, max: 8.551816
14:06:47 DEBUG   opendrift.models.basemodel:813: 59 elements hit coastline, moving back to water
14:06:47 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:47 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:47 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:47 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 660 elements above 0.100m with wind-sheared ocean current (0.018762 m/s - 0.176453 m/s)
14:06:47 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:47 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:47 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09049794589336395
14:06:47 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:47 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:47 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:47 DEBUG   opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 35 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 46 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:47 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:47 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:47 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:47 DEBUG   opendrift.models.basemodel:2945: 660 active elements (0 deactivated)
14:06:47 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9340, already seeded 660
14:06:47 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 695 elements
14:06:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:47 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:47 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:47 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:47 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:47 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:47 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.06279 (min) 11.8513 (max)
14:06:47 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1527:               695 active elements
14:06:47 DEBUG   opendrift.models.basemodel:1538:               59.14000029627871 <- latitude  -> 59.171412206385845
14:06:47 DEBUG   opendrift.models.basemodel:1543:               10.950971622952935 <- longitude -> 11.013533455516265
14:06:47 DEBUG   opendrift.models.basemodel:1548:               -11.393195381164551   <- z ->   0.0
14:06:47 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:06:47 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:47 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:16:21.121579 - step 20 of 216 - 695 active elements (0 deactivated)
14:06:47 DEBUG   opendrift.models.basemodel:2888: 9305 elements scheduled.
14:06:47 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 695 elements
14:06:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:47 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:47 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 695 elements
14:06:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:47 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:48 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:48 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:48 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:48 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
14:06:48 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.73) and
                      after (2023-09-01 18:00:00, weight 0.27) in time
14:06:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.049038930288766 and -58.986477092371736 degrees.
14:06:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.049038930288766 and -58.986477092371736 degrees.
14:06:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:48 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:48 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:48 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.548279 (min) 1.18972 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.945422 (min) 0.553437 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.32577e-05 (min) 0.000415835 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.46569 (min) 9.0522 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.81294 (min) 7.45038 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.06279 (min) 11.8513 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1527:               695 active elements
14:06:48 DEBUG   opendrift.models.basemodel:1538:               59.14000029627871 <- latitude  -> 59.171412206385845
14:06:48 DEBUG   opendrift.models.basemodel:1543:               10.950971622952935 <- longitude -> 11.013533455516265
14:06:48 DEBUG   opendrift.models.basemodel:1548:               -11.215774536132812   <- z ->   0.0
14:06:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:48 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:48 DEBUG   opendrift.models.physics_methods:1050:    min: 0.578740, mean: 4.117812, max: 8.113481
14:06:48 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.578740, mean: 4.117812, max: 8.113481
14:06:48 DEBUG   opendrift.models.basemodel:813: 54 elements hit coastline, moving back to water
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:48 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:48 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:48 DEBUG   opendrift.models.physics_methods:828: Advecting 37 of 695 elements above 0.100m with wind-sheared ocean current (0.013546 m/s - 0.149122 m/s)
14:06:48 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:48 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:48 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08145890711791992
14:06:48 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:48 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:48 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:48 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 54 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:48 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:48 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:48 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:48 DEBUG   opendrift.models.basemodel:2945: 695 active elements (0 deactivated)
14:06:48 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9305, already seeded 695
14:06:48 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 730 elements
14:06:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:48 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:48 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.4795 (min) 11.6236 (max)
14:06:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1527:               730 active elements
14:06:48 DEBUG   opendrift.models.basemodel:1538:               59.14075823524607 <- latitude  -> 59.17166718940605
14:06:48 DEBUG   opendrift.models.basemodel:1543:               10.949954482386348 <- longitude -> 11.014012605503904
14:06:48 DEBUG   opendrift.models.basemodel:1548:               -11.040049047984713   <- z ->   0.0
14:06:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:06:48 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:48 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:26:21.121579 - step 21 of 216 - 730 active elements (0 deactivated)
14:06:48 DEBUG   opendrift.models.basemodel:2888: 9270 elements scheduled.
14:06:48 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 730 elements
14:06:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:48 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:48 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 730 elements
14:06:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:48 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:49 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:49 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:49 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:49 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:49 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:49 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:49 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:49 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:49 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 367 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
14:06:49 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.56) and
                      after (2023-09-01 18:00:00, weight 0.44) in time
14:06:49 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.050056081976386 and -58.98599794692612 degrees.
14:06:49 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.050056081976386 and -58.98599794692612 degrees.
14:06:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:49 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:49 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:49 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:49 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:49 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.593597 (min) 1.39779 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.923117 (min) 0.547001 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.28087e-05 (min) 0.000283687 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.22395 (min) 10.9405 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.02579 (min) 7.04361 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.4795 (min) 11.6236 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1527:               730 active elements
14:06:49 DEBUG   opendrift.models.basemodel:1538:               59.14075823524607 <- latitude  -> 59.17166718940605
14:06:49 DEBUG   opendrift.models.basemodel:1543:               10.949954482386348 <- longitude -> 11.014012605503904
14:06:49 DEBUG   opendrift.models.basemodel:1548:               -11.040049047984713   <- z ->   0.0
14:06:49 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:49 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:49 DEBUG   opendrift.models.physics_methods:1050:    min: 0.280735, mean: 4.253438, max: 9.734223
14:06:49 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.280735, mean: 4.253438, max: 9.734223
14:06:49 DEBUG   opendrift.models.basemodel:813: 56 elements hit coastline, moving back to water
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:49 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:49 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:49 DEBUG   opendrift.models.physics_methods:828: Advecting 37 of 730 elements above 0.100m with wind-sheared ocean current (0.004482 m/s - 0.148056 m/s)
14:06:49 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:49 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:49 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11725195299871444
14:06:49 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:49 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:49 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:49 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 53 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:49 DEBUG   opendrift.models.oceandrift:582: 54 elements penetrated seafloor, lifting up
14:06:49 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:49 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:49 DEBUG   opendrift.models.basemodel:2945: 730 active elements (0 deactivated)
14:06:49 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9270, already seeded 730
14:06:49 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 764 elements
14:06:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:49 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:49 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:49 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:49 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:49 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:49 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.66112 (min) 12.0051 (max)
14:06:49 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1527:               764 active elements
14:06:49 DEBUG   opendrift.models.basemodel:1538:               59.13812313447127 <- latitude  -> 59.17075061579153
14:06:49 DEBUG   opendrift.models.basemodel:1543:               10.949424931785725 <- longitude -> 11.014893891654625
14:06:49 DEBUG   opendrift.models.basemodel:1548:               -10.223201360948252   <- z ->   0.0
14:06:49 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:06:49 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:49 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:36:21.121579 - step 22 of 216 - 764 active elements (0 deactivated)
14:06:49 DEBUG   opendrift.models.basemodel:2888: 9236 elements scheduled.
14:06:49 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 764 elements
14:06:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:49 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:49 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 764 elements
14:06:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:49 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:50 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:50 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:50 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:50 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:50 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:50 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:50 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:50 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
14:06:50 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.39) and
                      after (2023-09-01 18:00:00, weight 0.61) in time
14:06:50 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05058563331095 and -58.98511665824165 degrees.
14:06:50 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05058563331095 and -58.98511665824165 degrees.
14:06:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:50 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:50 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:50 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.571713 (min) 1.05043 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.998137 (min) 0.639796 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.16458e-05 (min) 0.000329458 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.25618 (min) 11.1047 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.48087 (min) 7.11925 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.66112 (min) 12.0051 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1527:               764 active elements
14:06:50 DEBUG   opendrift.models.basemodel:1538:               59.13812313447127 <- latitude  -> 59.17075061579153
14:06:50 DEBUG   opendrift.models.basemodel:1543:               10.949424931785725 <- longitude -> 11.014893891654625
14:06:50 DEBUG   opendrift.models.basemodel:1548:               -10.223201360948252   <- z ->   0.0
14:06:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:50 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:50 DEBUG   opendrift.models.physics_methods:1050:    min: 0.123653, mean: 4.178487, max: 9.488784
14:06:50 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.123653, mean: 4.178487, max: 9.488784
14:06:50 DEBUG   opendrift.models.basemodel:813: 65 elements hit coastline, moving back to water
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:50 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:50 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:50 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 764 elements above 0.100m with wind-sheared ocean current (0.023623 m/s - 0.171422 m/s)
14:06:50 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:50 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:50 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1114139039006996
14:06:50 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:50 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:50 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:50 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 57 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 53 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 56 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:50 DEBUG   opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
14:06:50 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:50 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:50 DEBUG   opendrift.models.basemodel:2945: 764 active elements (0 deactivated)
14:06:50 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9236, already seeded 764
14:06:50 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 799 elements
14:06:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:50 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.83258 (min) 12.166 (max)
14:06:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1527:               799 active elements
14:06:50 DEBUG   opendrift.models.basemodel:1538:               59.13824602635891 <- latitude  -> 59.17044857809972
14:06:50 DEBUG   opendrift.models.basemodel:1543:               10.949988797047487 <- longitude -> 11.015352172560867
14:06:50 DEBUG   opendrift.models.basemodel:1548:               -10.150604476928711   <- z ->   0.0
14:06:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:06:50 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:50 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:46:21.121579 - step 23 of 216 - 799 active elements (0 deactivated)
14:06:50 DEBUG   opendrift.models.basemodel:2888: 9201 elements scheduled.
14:06:50 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 799 elements
14:06:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:50 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:50 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 799 elements
14:06:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:51 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:51 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:51 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:51 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 1
14:06:51 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.23) and
                      after (2023-09-01 18:00:00, weight 0.77) in time
14:06:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0500217607714 and -58.98465837165131 degrees.
14:06:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0500217607714 and -58.98465837165131 degrees.
14:06:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:51 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:51 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:51 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.724215 (min) 1.15217 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.947853 (min) 0.520679 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.41001e-05 (min) 0.000246065 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.90254 (min) 10.7537 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.46771 (min) 6.80946 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.83258 (min) 12.166 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1527:               799 active elements
14:06:51 DEBUG   opendrift.models.basemodel:1538:               59.13824602635891 <- latitude  -> 59.17044857809972
14:06:51 DEBUG   opendrift.models.basemodel:1543:               10.949988797047487 <- longitude -> 11.015352172560867
14:06:51 DEBUG   opendrift.models.basemodel:1548:               -10.150604476928711   <- z ->   0.0
14:06:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:51 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:51 DEBUG   opendrift.models.physics_methods:1050:    min: 0.096256, mean: 4.306099, max: 9.837042
14:06:51 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.096256, mean: 4.306099, max: 9.837042
14:06:51 DEBUG   opendrift.models.basemodel:813: 56 elements hit coastline, moving back to water
14:06:51 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:51 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:51 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:51 DEBUG   opendrift.models.physics_methods:828: Advecting 37 of 799 elements above 0.100m with wind-sheared ocean current (0.026094 m/s - 0.158752 m/s)
14:06:51 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:51 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:51 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11974195199306487
14:06:51 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:51 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:51 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:51 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 53 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:51 DEBUG   opendrift.models.oceandrift:582: 57 elements penetrated seafloor, lifting up
14:06:51 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:51 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:51 DEBUG   opendrift.models.basemodel:2945: 799 active elements (0 deactivated)
14:06:51 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9201, already seeded 799
14:06:51 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 834 elements
14:06:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:51 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:51 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.96229 (min) 12.4938 (max)
14:06:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1527:               834 active elements
14:06:51 DEBUG   opendrift.models.basemodel:1538:               59.137213145107125 <- latitude  -> 59.16933971664699
14:06:51 DEBUG   opendrift.models.basemodel:1543:               10.949996076369974 <- longitude -> 11.01605702880652
14:06:51 DEBUG   opendrift.models.basemodel:1548:               -10.543629517442069   <- z ->   0.0
14:06:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:06:51 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:51 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:56:21.121579 - step 24 of 216 - 834 active elements (0 deactivated)
14:06:51 DEBUG   opendrift.models.basemodel:2888: 9166 elements scheduled.
14:06:51 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 834 elements
14:06:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:51 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:51 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 834 elements
14:06:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:51 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:52 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:52 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
14:06:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
14:06:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 430 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
14:06:52 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.06) and
                      after (2023-09-01 18:00:00, weight 0.94) in time
14:06:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05001447849048 and -58.983953516754354 degrees.
14:06:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05001447849048 and -58.983953516754354 degrees.
14:06:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:52 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:52 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:52 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.666312 (min) 1.33956 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.15252 (min) 0.554845 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.09202e-05 (min) 0.000315642 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.79616 (min) 11.4846 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.45252 (min) 6.75144 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.96229 (min) 12.4938 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1527:               834 active elements
14:06:52 DEBUG   opendrift.models.basemodel:1538:               59.137213145107125 <- latitude  -> 59.16933971664699
14:06:52 DEBUG   opendrift.models.basemodel:1543:               10.949996076369974 <- longitude -> 11.01605702880652
14:06:52 DEBUG   opendrift.models.basemodel:1548:               -10.543629517442069   <- z ->   0.0
14:06:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:52 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:52 DEBUG   opendrift.models.physics_methods:1050:    min: 0.667098, mean: 4.406997, max: 10.097745
14:06:52 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.667098, mean: 4.406997, max: 10.097745
14:06:52 DEBUG   opendrift.models.basemodel:813: 54 elements hit coastline, moving back to water
14:06:52 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:52 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:52 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:52 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 834 elements above 0.100m with wind-sheared ocean current (0.020411 m/s - 0.185616 m/s)
14:06:52 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:52 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:52 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12617264781148907
14:06:52 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:52 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:52 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:52 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 72 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 56 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:52 DEBUG   opendrift.models.oceandrift:582: 57 elements penetrated seafloor, lifting up
14:06:52 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:52 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:52 DEBUG   opendrift.models.basemodel:2945: 834 active elements (0 deactivated)
14:06:52 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9166, already seeded 834
14:06:52 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 868 elements
14:06:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:52 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:06:52 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.07565 (min) 12.6766 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1527:               868 active elements
14:06:52 DEBUG   opendrift.models.basemodel:1538:               59.13719370898072 <- latitude  -> 59.16960275669497
14:06:52 DEBUG   opendrift.models.basemodel:1543:               10.949873511052074 <- longitude -> 11.014084479098111
14:06:52 DEBUG   opendrift.models.basemodel:1548:               -10.890111198425293   <- z ->   0.0
14:06:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:06:52 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:52 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:06:21.121579 - step 25 of 216 - 868 active elements (0 deactivated)
14:06:52 DEBUG   opendrift.models.basemodel:2888: 9132 elements scheduled.
14:06:52 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 868 elements
14:06:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 868 elements
14:06:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:52 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:52 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:52 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-09-01 19:00:00)
14:06:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
14:06:52 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.89) and
                      after (2023-09-01 19:00:00, weight 0.11) in time
14:06:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.050137047656975 and -58.98592607678872 degrees.
14:06:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.050137047656975 and -58.98592607678872 degrees.
14:06:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:52 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:52 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:52 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.754933 (min) 1.22269 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.07719 (min) 0.56121 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.05106e-05 (min) 0.000340436 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.56039 (min) 10.158 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.35955 (min) 7.69374 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.07565 (min) 12.6766 (max)
14:06:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:52 DEBUG   opendrift.models.basemodel:1527:               868 active elements
14:06:52 DEBUG   opendrift.models.basemodel:1538:               59.13719370898072 <- latitude  -> 59.16960275669497
14:06:52 DEBUG   opendrift.models.basemodel:1543:               10.949873511052074 <- longitude -> 11.014084479098111
14:06:52 DEBUG   opendrift.models.basemodel:1548:               -10.82186435699463   <- z ->   0.0
14:06:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:52 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:52 DEBUG   opendrift.models.physics_methods:1050:    min: 0.296139, mean: 4.320695, max: 9.191047
14:06:52 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.296139, mean: 4.320695, max: 9.191047
14:06:52 DEBUG   opendrift.models.basemodel:813: 56 elements hit coastline, moving back to water
14:06:52 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:53 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:53 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:53 DEBUG   opendrift.models.physics_methods:828: Advecting 34 of 868 elements above 0.100m with wind-sheared ocean current (0.006932 m/s - 0.144830 m/s)
14:06:53 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:53 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:53 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10453201620729445
14:06:53 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:53 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:53 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:53 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 56 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:53 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:53 DEBUG   opendrift.models.basemodel:2945: 868 active elements (0 deactivated)
14:06:53 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9132, already seeded 868
14:06:53 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 903 elements
14:06:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:53 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.63228 (min) 12.7425 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1527:               903 active elements
14:06:53 DEBUG   opendrift.models.basemodel:1538:               59.13586543425104 <- latitude  -> 59.169193267822266
14:06:53 DEBUG   opendrift.models.basemodel:1543:               10.94682042348086 <- longitude -> 11.01707284079702
14:06:53 DEBUG   opendrift.models.basemodel:1548:               -10.551856994628906   <- z ->   0.0
14:06:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
14:06:53 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:53 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:16:21.121579 - step 26 of 216 - 903 active elements (0 deactivated)
14:06:53 DEBUG   opendrift.models.basemodel:2888: 9097 elements scheduled.
14:06:53 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 903 elements
14:06:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:53 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:53 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 903 elements
14:06:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:53 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:53 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:53 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:53 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:53 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:53 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:53 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-09-01 19:00:00)
14:06:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:53 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 468 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
14:06:53 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.73) and
                      after (2023-09-01 19:00:00, weight 0.27) in time
14:06:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05319013156232 and -58.98293771688355 degrees.
14:06:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05319013156232 and -58.98293771688355 degrees.
14:06:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:53 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:53 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:53 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.667322 (min) 1.0706 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.13201 (min) 0.65627 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.24827e-05 (min) 0.000465089 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.55903 (min) 10.7803 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.0498 (min) 7.88895 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.63228 (min) 12.7425 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1527:               903 active elements
14:06:53 DEBUG   opendrift.models.basemodel:1538:               59.13586543425104 <- latitude  -> 59.169193267822266
14:06:53 DEBUG   opendrift.models.basemodel:1543:               10.94682042348086 <- longitude -> 11.01707284079702
14:06:53 DEBUG   opendrift.models.basemodel:1548:               -10.455546379089355   <- z ->   0.0
14:06:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:53 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:53 DEBUG   opendrift.models.physics_methods:1050:    min: 0.066528, mean: 4.263632, max: 9.601825
14:06:53 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.066528, mean: 4.263632, max: 9.601825
14:06:53 DEBUG   opendrift.models.basemodel:813: 66 elements hit coastline, moving back to water
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:53 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:53 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:53 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 903 elements above 0.100m with wind-sheared ocean current (0.030230 m/s - 0.205908 m/s)
14:06:53 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:53 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:53 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1140841995602417
14:06:53 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:53 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:53 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:53 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:53 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:06:53 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:06:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:06:53 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:53 DEBUG   opendrift.models.basemodel:2945: 903 active elements (0 deactivated)
14:06:53 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9097, already seeded 903
14:06:53 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 938 elements
14:06:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:53 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.31735 (min) 12.7358 (max)
14:06:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1527:               938 active elements
14:06:53 DEBUG   opendrift.models.basemodel:1538:               59.13472346469074 <- latitude  -> 59.170220543829224
14:06:53 DEBUG   opendrift.models.basemodel:1543:               10.948533742107982 <- longitude -> 11.016973136655219
14:06:53 DEBUG   opendrift.models.basemodel:1548:               -11.247394561767578   <- z ->   0.0
14:06:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:06:53 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:53 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:26:21.121579 - step 27 of 216 - 938 active elements (0 deactivated)
14:06:53 DEBUG   opendrift.models.basemodel:2888: 9062 elements scheduled.
14:06:53 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 938 elements
14:06:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:53 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:53 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 938 elements
14:06:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:54 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:54 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:54 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:54 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:54 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:54 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:54 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-09-01 19:00:00)
14:06:54 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:54 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 2
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
14:06:54 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.56) and
                      after (2023-09-01 19:00:00, weight 0.44) in time
14:06:54 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05147682171707 and -58.983037413722755 degrees.
14:06:54 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05147682171707 and -58.983037413722755 degrees.
14:06:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:54 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:54 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:54 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:54 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:54 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.66599 (min) 1.34804 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00327 (min) 0.653353 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.0789e-05 (min) 0.000648149 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.77913 (min) 10.3599 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.04028 (min) 7.20022 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.31735 (min) 12.7358 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1527:               938 active elements
14:06:54 DEBUG   opendrift.models.basemodel:1538:               59.13472346469074 <- latitude  -> 59.170220543829224
14:06:54 DEBUG   opendrift.models.basemodel:1543:               10.948533742107982 <- longitude -> 11.016973136655219
14:06:54 DEBUG   opendrift.models.basemodel:1548:               -11.167871475219727   <- z ->   0.0
14:06:54 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:54 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:54 DEBUG   opendrift.models.physics_methods:1050:    min: 0.274239, mean: 4.201750, max: 8.925230
14:06:54 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.274239, mean: 4.201750, max: 8.925230
14:06:54 DEBUG   opendrift.models.basemodel:813: 58 elements hit coastline, moving back to water
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:54 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:54 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:54 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 938 elements above 0.100m with wind-sheared ocean current (0.028995 m/s - 0.189669 m/s)
14:06:54 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:54 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:54 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09857326615436553
14:06:54 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:54 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:54 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:54 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:54 DEBUG   opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:54 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:54 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:54 DEBUG   opendrift.models.basemodel:2945: 938 active elements (0 deactivated)
14:06:54 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9062, already seeded 938
14:06:54 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 973 elements
14:06:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:54 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:54 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:54 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:54 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:54 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:54 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.57102 (min) 13.0073 (max)
14:06:54 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1527:               973 active elements
14:06:54 DEBUG   opendrift.models.basemodel:1538:               59.131908249917295 <- latitude  -> 59.169547870275686
14:06:54 DEBUG   opendrift.models.basemodel:1543:               10.945980039785598 <- longitude -> 11.016036237075957
14:06:54 DEBUG   opendrift.models.basemodel:1548:               -11.157871475219727   <- z ->   0.0
14:06:54 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:06:54 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:54 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:36:21.121579 - step 28 of 216 - 973 active elements (0 deactivated)
14:06:54 DEBUG   opendrift.models.basemodel:2888: 9027 elements scheduled.
14:06:54 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 973 elements
14:06:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:54 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:54 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 973 elements
14:06:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:54 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:55 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:55 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:55 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:55 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:55 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:55 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:55 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-09-01 19:00:00)
14:06:55 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:55 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 1
14:06:55 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.39) and
                      after (2023-09-01 19:00:00, weight 0.61) in time
14:06:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05403051707626 and -58.98397430885871 degrees.
14:06:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05403051707626 and -58.98397430885871 degrees.
14:06:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:55 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:55 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:55 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.746456 (min) 1.16255 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.08641 (min) 0.560925 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.30388e-05 (min) 0.000408743 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.17811 (min) 10.0631 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.8966 (min) 7.38985 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.57102 (min) 13.0073 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1527:               973 active elements
14:06:55 DEBUG   opendrift.models.basemodel:1538:               59.131908249917295 <- latitude  -> 59.169547870275686
14:06:55 DEBUG   opendrift.models.basemodel:1543:               10.945980039785598 <- longitude -> 11.016036237075957
14:06:55 DEBUG   opendrift.models.basemodel:1548:               -11.157871475219727   <- z ->   0.0
14:06:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:55 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:55 DEBUG   opendrift.models.physics_methods:1050:    min: 0.342561, mean: 4.122768, max: 8.663187
14:06:55 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.342561, mean: 4.122768, max: 8.663187
14:06:55 DEBUG   opendrift.models.basemodel:813: 66 elements hit coastline, moving back to water
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:55 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:55 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:55 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 973 elements above 0.100m with wind-sheared ocean current (0.022235 m/s - 0.189658 m/s)
14:06:55 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:55 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:55 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09287029831226348
14:06:55 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:55 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:55 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:55 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:55 DEBUG   opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:06:55 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:55 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:55 DEBUG   opendrift.models.basemodel:2945: 973 active elements (0 deactivated)
14:06:55 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9027, already seeded 973
14:06:55 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 1007 elements
14:06:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:55 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:55 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:55 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.31317 (min) 13.0141 (max)
14:06:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1527:               1007 active elements
14:06:55 DEBUG   opendrift.models.basemodel:1538:               59.131643378892484 <- latitude  -> 59.17003494542886
14:06:55 DEBUG   opendrift.models.basemodel:1543:               10.944698404689246 <- longitude -> 11.020782197131847
14:06:55 DEBUG   opendrift.models.basemodel:1548:               -11.592550506591797   <- z ->   0.0
14:06:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:06:55 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:55 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:46:21.121579 - step 29 of 216 - 1007 active elements (0 deactivated)
14:06:55 DEBUG   opendrift.models.basemodel:2888: 8993 elements scheduled.
14:06:55 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 1007 elements
14:06:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:55 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:55 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 1007 elements
14:06:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:55 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:56 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:56 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:56 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-09-01 19:00:00)
14:06:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:56 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 185 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
14:06:56 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.23) and
                      after (2023-09-01 19:00:00, weight 0.77) in time
14:06:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05531215137599 and -58.97922835999225 degrees.
14:06:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05531215137599 and -58.97922835999225 degrees.
14:06:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:56 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:56 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:56 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.657654 (min) 1.30243 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.1093 (min) 0.732723 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.6356e-05 (min) 0.000336032 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.18825 (min) 9.76545 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.73333 (min) 7.09814 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.31317 (min) 13.0141 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1527:               1007 active elements
14:06:56 DEBUG   opendrift.models.basemodel:1538:               59.131643378892484 <- latitude  -> 59.17003494542886
14:06:56 DEBUG   opendrift.models.basemodel:1543:               10.944698404689246 <- longitude -> 11.020782197131847
14:06:56 DEBUG   opendrift.models.basemodel:1548:               -11.343729404638163   <- z ->   0.0
14:06:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:56 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:56 DEBUG   opendrift.models.physics_methods:1050:    min: 0.268832, mean: 3.987441, max: 8.647289
14:06:56 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.268832, mean: 3.987441, max: 8.647289
14:06:56 DEBUG   opendrift.models.basemodel:813: 54 elements hit coastline, moving back to water
14:06:56 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:56 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:56 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:56 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 1007 elements above 0.100m with wind-sheared ocean current (0.006259 m/s - 0.171896 m/s)
14:06:56 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:56 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:56 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09252976148517608
14:06:56 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:56 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:56 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:56 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
14:06:56 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:06:56 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:06:56 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:56 DEBUG   opendrift.models.basemodel:2945: 1007 active elements (0 deactivated)
14:06:56 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8993, already seeded 1007
14:06:56 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 1042 elements
14:06:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:56 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.07731 (min) 13.1042 (max)
14:06:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1527:               1042 active elements
14:06:56 DEBUG   opendrift.models.basemodel:1538:               59.13099060540087 <- latitude  -> 59.170899022366065
14:06:56 DEBUG   opendrift.models.basemodel:1543:               10.94820680295457 <- longitude -> 11.021501504702103
14:06:56 DEBUG   opendrift.models.basemodel:1548:               -12.53642397154129   <- z ->   0.0
14:06:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
14:06:56 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:56 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:56:21.121579 - step 30 of 216 - 1042 active elements (0 deactivated)
14:06:56 DEBUG   opendrift.models.basemodel:2888: 8958 elements scheduled.
14:06:56 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 1042 elements
14:06:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:56 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:56 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 1042 elements
14:06:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
14:06:57 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:57 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:57 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:57 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:57 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:57 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:57 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 19:00:00)
14:06:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
14:06:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:57 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 545 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 1
14:06:57 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.06) and
                      after (2023-09-01 19:00:00, weight 0.94) in time
14:06:57 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.051803755763196 and -58.97850903909803 degrees.
14:06:57 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.051803755763196 and -58.97850903909803 degrees.
14:06:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:57 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:57 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:57 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.623847 (min) 1.11824 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.946133 (min) 0.560097 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.913e-05 (min) 0.000290536 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.9588 (min) 10.373 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.58306 (min) 8.64458 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.07731 (min) 13.1042 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1527:               1042 active elements
14:06:57 DEBUG   opendrift.models.basemodel:1538:               59.13099060540087 <- latitude  -> 59.170899022366065
14:06:57 DEBUG   opendrift.models.basemodel:1543:               10.94820680295457 <- longitude -> 11.021501504702103
14:06:57 DEBUG   opendrift.models.basemodel:1548:               -12.53642397154129   <- z ->   0.0
14:06:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:57 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:57 DEBUG   opendrift.models.physics_methods:1050:    min: 0.307058, mean: 3.872049, max: 9.053710
14:06:57 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.307058, mean: 3.872049, max: 9.053710
14:06:57 DEBUG   opendrift.models.basemodel:813: 58 elements hit coastline, moving back to water
14:06:57 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:57 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:57 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:57 DEBUG   opendrift.models.physics_methods:828: Advecting 38 of 1042 elements above 0.100m with wind-sheared ocean current (0.003227 m/s - 0.165225 m/s)
14:06:57 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:57 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:57 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1014315385661888
14:06:57 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:57 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:57 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:57 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 55 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:06:57 DEBUG   opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:06:57 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:57 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:57 DEBUG   opendrift.models.basemodel:2945: 1042 active elements (0 deactivated)
14:06:57 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8958, already seeded 1042
14:06:57 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 1077 elements
14:06:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:06:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:57 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.07226 (min) 13.0759 (max)
14:06:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1527:               1077 active elements
14:06:57 DEBUG   opendrift.models.basemodel:1538:               59.13080271067209 <- latitude  -> 59.17118355038497
14:06:57 DEBUG   opendrift.models.basemodel:1543:               10.947088759646618 <- longitude -> 11.023547528211603
14:06:57 DEBUG   opendrift.models.basemodel:1548:               -13.094157447814942   <- z ->   0.0
14:06:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
14:06:57 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:57 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:06:21.121579 - step 31 of 216 - 1077 active elements (0 deactivated)
14:06:57 DEBUG   opendrift.models.basemodel:2888: 8923 elements scheduled.
14:06:57 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 1077 elements
14:06:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:57 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:57 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 1077 elements
14:06:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:06:58 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:58 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:58 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:58 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:58 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:58 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:58 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:06:58 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:58 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
14:06:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 583 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 1
14:06:58 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.89) and
                      after (2023-09-01 20:00:00, weight 0.11) in time
14:06:58 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05292180289869 and -58.97646301181007 degrees.
14:06:58 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05292180289869 and -58.97646301181007 degrees.
14:06:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:58 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:58 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:58 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:58 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:58 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.63675 (min) 1.15109 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.909917 (min) 0.516995 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.16286e-05 (min) 0.000290927 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.86289 (min) 10.0104 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.10331 (min) 6.59715 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.07226 (min) 13.0759 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1527:               1077 active elements
14:06:58 DEBUG   opendrift.models.basemodel:1538:               59.13080271067209 <- latitude  -> 59.17118355038497
14:06:58 DEBUG   opendrift.models.basemodel:1543:               10.947088759646618 <- longitude -> 11.023547528211603
14:06:58 DEBUG   opendrift.models.basemodel:1548:               -12.858721961975098   <- z ->   0.0
14:06:58 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:58 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:58 DEBUG   opendrift.models.physics_methods:1050:    min: 0.203764, mean: 3.850101, max: 8.783433
14:06:58 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.203764, mean: 3.850101, max: 8.783433
14:06:58 DEBUG   opendrift.models.basemodel:813: 69 elements hit coastline, moving back to water
14:06:58 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:06:58 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:58 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:58 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1077 elements above 0.100m with wind-sheared ocean current (0.013422 m/s - 0.167524 m/s)
14:06:58 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:58 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:58 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09546616774852752
14:06:58 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:58 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:58 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:58 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:58 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:06:58 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:06:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:06:58 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:58 DEBUG   opendrift.models.basemodel:2945: 1077 active elements (0 deactivated)
14:06:58 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8923, already seeded 1077
14:06:58 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:06:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 1112 elements
14:06:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:58 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:06:58 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:58 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:58 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:58 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:58 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.09376 (min) 13.0113 (max)
14:06:58 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1527:               1112 active elements
14:06:58 DEBUG   opendrift.models.basemodel:1538:               59.12760662848937 <- latitude  -> 59.171062646554546
14:06:58 DEBUG   opendrift.models.basemodel:1543:               10.947484923950032 <- longitude -> 11.024057663601793
14:06:58 DEBUG   opendrift.models.basemodel:1548:               -12.206647808608574   <- z ->   0.0
14:06:58 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:06:58 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:58 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:16:21.121579 - step 32 of 216 - 1112 active elements (0 deactivated)
14:06:58 DEBUG   opendrift.models.basemodel:2888: 8888 elements scheduled.
14:06:58 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 1112 elements
14:06:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:58 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:58 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 1112 elements
14:06:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:58 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:06:59 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:06:59 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:06:59 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:06:59 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:06:59 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:06:59 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:06:59 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:06:59 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:59 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
14:06:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 599 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
14:06:59 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.73) and
                      after (2023-09-01 20:00:00, weight 0.27) in time
14:06:59 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05252563715043 and -58.97595287799881 degrees.
14:06:59 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05252563715043 and -58.97595287799881 degrees.
14:06:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:59 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:59 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:06:59 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:06:59 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:59 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.709724 (min) 1.39515 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01295 (min) 0.594055 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.00458e-05 (min) 0.000265485 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.36044 (min) 10.057 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.2755 (min) 7.07608 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.09376 (min) 13.0113 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1527:               1112 active elements
14:06:59 DEBUG   opendrift.models.basemodel:1538:               59.12760662848937 <- latitude  -> 59.171062646554546
14:06:59 DEBUG   opendrift.models.basemodel:1543:               10.947484923950032 <- longitude -> 11.024057663601793
14:06:59 DEBUG   opendrift.models.basemodel:1548:               -12.206647808608574   <- z ->   0.0
14:06:59 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:59 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:06:59 DEBUG   opendrift.models.physics_methods:1050:    min: 0.211166, mean: 3.799810, max: 8.816274
14:06:59 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.211166, mean: 3.799810, max: 8.816274
14:06:59 DEBUG   opendrift.models.basemodel:813: 58 elements hit coastline, moving back to water
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:06:59 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:06:59 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:06:59 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 1112 elements above 0.100m with wind-sheared ocean current (0.007253 m/s - 0.145963 m/s)
14:06:59 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:06:59 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:06:59 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09618136041028975
14:06:59 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:06:59 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:06:59 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:06:59 DEBUG   opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 101 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 102 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:06:59 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:06:59 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:06:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:06:59 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:06:59 DEBUG   opendrift.models.basemodel:2945: 1112 active elements (0 deactivated)
14:06:59 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8888, already seeded 1112
14:06:59 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:06:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:06:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 1146 elements
14:06:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:59 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:06:59 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:06:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:06:59 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:06:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:59 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:06:59 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:06:59 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.44049 (min) 13.2556 (max)
14:06:59 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1527:               1146 active elements
14:06:59 DEBUG   opendrift.models.basemodel:1538:               59.12623972203216 <- latitude  -> 59.17286291297664
14:06:59 DEBUG   opendrift.models.basemodel:1543:               10.945735007646382 <- longitude -> 11.02056192277767
14:06:59 DEBUG   opendrift.models.basemodel:1548:               -12.812218894958496   <- z ->   0.0
14:06:59 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:06:59 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:06:59 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:26:21.121579 - step 33 of 216 - 1146 active elements (0 deactivated)
14:06:59 DEBUG   opendrift.models.basemodel:2888: 8854 elements scheduled.
14:06:59 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:06:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:06:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:06:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 1146 elements
14:06:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:06:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:06:59 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:06:59 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:06:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:06:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:06:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:06:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 1146 elements
14:06:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:06:59 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:00 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:00 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:07:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:07:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 627 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 1
14:07:00 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.56) and
                      after (2023-09-01 20:00:00, weight 0.44) in time
14:07:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05427554527975 and -58.97944862855199 degrees.
14:07:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05427554527975 and -58.97944862855199 degrees.
14:07:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:00 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:00 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:00 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.675132 (min) 1.15627 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0204 (min) 0.598285 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.25425e-05 (min) 0.000330483 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.44387 (min) 10.0251 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.62364 (min) 8.08603 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.44049 (min) 13.2556 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1527:               1146 active elements
14:07:00 DEBUG   opendrift.models.basemodel:1538:               59.12623972203216 <- latitude  -> 59.17286291297664
14:07:00 DEBUG   opendrift.models.basemodel:1543:               10.945735007646382 <- longitude -> 11.02056192277767
14:07:00 DEBUG   opendrift.models.basemodel:1548:               -12.764876365661621   <- z ->   0.0
14:07:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:00 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:00 DEBUG   opendrift.models.physics_methods:1050:    min: 0.021719, mean: 3.677935, max: 9.249475
14:07:00 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.021719, mean: 3.677935, max: 9.249475
14:07:00 DEBUG   opendrift.models.basemodel:813: 68 elements hit coastline, moving back to water
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:00 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:00 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:00 DEBUG   opendrift.models.physics_methods:828: Advecting 34 of 1146 elements above 0.100m with wind-sheared ocean current (0.013619 m/s - 0.167530 m/s)
14:07:00 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:00 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:00 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10586519987686156
14:07:00 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:00 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:00 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:00 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:00 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:00 DEBUG   opendrift.models.basemodel:2945: 1146 active elements (0 deactivated)
14:07:00 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8854, already seeded 1146
14:07:00 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 1181 elements
14:07:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:07:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:07:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.12996 (min) 13.5407 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1527:               1181 active elements
14:07:00 DEBUG   opendrift.models.basemodel:1538:               59.12394149737817 <- latitude  -> 59.173359538028315
14:07:00 DEBUG   opendrift.models.basemodel:1543:               10.944212520557873 <- longitude -> 11.022094914688031
14:07:00 DEBUG   opendrift.models.basemodel:1548:               -12.945646286010742   <- z ->   0.0
14:07:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
14:07:00 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:00 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:36:21.121579 - step 34 of 216 - 1181 active elements (0 deactivated)
14:07:00 DEBUG   opendrift.models.basemodel:2888: 8819 elements scheduled.
14:07:00 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 1181 elements
14:07:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 1181 elements
14:07:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:00 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:00 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:07:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:07:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 672 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 1
14:07:00 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.39) and
                      after (2023-09-01 20:00:00, weight 0.61) in time
14:07:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05579802542906 and -58.977915628307734 degrees.
14:07:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05579802542906 and -58.977915628307734 degrees.
14:07:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:00 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:00 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:00 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.633202 (min) 1.2243 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.957862 (min) 0.585562 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -3.76268e-05 (min) 0.000414311 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.90978 (min) 9.38301 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.92774 (min) 6.5294 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.12996 (min) 13.5407 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1527:               1181 active elements
14:07:00 DEBUG   opendrift.models.basemodel:1538:               59.12394149737817 <- latitude  -> 59.173359538028315
14:07:00 DEBUG   opendrift.models.basemodel:1543:               10.944212520557873 <- longitude -> 11.022094914688031
14:07:00 DEBUG   opendrift.models.basemodel:1548:               -12.945646286010742   <- z ->   0.0
14:07:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:00 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:00 DEBUG   opendrift.models.physics_methods:1050:    min: 0.306255, mean: 3.625151, max: 8.435306
14:07:00 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.306255, mean: 3.625151, max: 8.435306
14:07:00 DEBUG   opendrift.models.basemodel:813: 79 elements hit coastline, moving back to water
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:00 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:00 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:00 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1181 elements above 0.100m with wind-sheared ocean current (0.020537 m/s - 0.185298 m/s)
14:07:00 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:00 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:00 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0880489515019226
14:07:00 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:00 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:00 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:00 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:00 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:07:00 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:00 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:00 DEBUG   opendrift.models.basemodel:2945: 1181 active elements (0 deactivated)
14:07:00 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8819, already seeded 1181
14:07:00 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 1216 elements
14:07:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:07:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:07:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:00 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.19302 (min) 13.5428 (max)
14:07:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1527:               1216 active elements
14:07:00 DEBUG   opendrift.models.basemodel:1538:               59.12406186839765 <- latitude  -> 59.17428177927694
14:07:00 DEBUG   opendrift.models.basemodel:1543:               10.945837150485676 <- longitude -> 11.019212993315536
14:07:00 DEBUG   opendrift.models.basemodel:1548:               -12.945646286010742   <- z ->   0.0
14:07:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
14:07:00 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:00 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:46:21.121579 - step 35 of 216 - 1216 active elements (0 deactivated)
14:07:00 DEBUG   opendrift.models.basemodel:2888: 8784 elements scheduled.
14:07:00 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 1216 elements
14:07:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:00 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:00 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 1216 elements
14:07:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:07:01 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:01 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:01 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
14:07:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:07:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:01 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 1
14:07:01 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.23) and
                      after (2023-09-01 20:00:00, weight 0.77) in time
14:07:01 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05417340960778 and -58.98079754366768 degrees.
14:07:01 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05417340960778 and -58.98079754366768 degrees.
14:07:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:01 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:01 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:01 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:01 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:01 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.745782 (min) 1.28601 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.933966 (min) 0.601932 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.27767e-05 (min) 0.000357876 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.91742 (min) 10.7375 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.56333 (min) 6.30804 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.19302 (min) 13.5428 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1527:               1216 active elements
14:07:01 DEBUG   opendrift.models.basemodel:1538:               59.12406186839765 <- latitude  -> 59.17428177927694
14:07:01 DEBUG   opendrift.models.basemodel:1543:               10.945837150485676 <- longitude -> 11.019212993315536
14:07:01 DEBUG   opendrift.models.basemodel:1548:               -12.945646286010742   <- z ->   0.0
14:07:01 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:01 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:01 DEBUG   opendrift.models.physics_methods:1050:    min: 0.084333, mean: 3.465716, max: 9.460913
14:07:01 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.084333, mean: 3.465716, max: 9.460913
14:07:01 DEBUG   opendrift.models.basemodel:813: 86 elements hit coastline, moving back to water
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:07:01 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:01 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:01 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1216 elements above 0.100m with wind-sheared ocean current (0.018658 m/s - 0.154538 m/s)
14:07:01 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:01 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:01 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11076039911087035
14:07:01 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:01 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:01 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:01 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:01 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:07:01 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:01 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:01 DEBUG   opendrift.models.basemodel:2945: 1216 active elements (0 deactivated)
14:07:01 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8784, already seeded 1216
14:07:01 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:07:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 1250 elements
14:07:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:07:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:07:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:01 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:01 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:01 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:01 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 13.8895 (max)
14:07:01 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1527:               1250 active elements
14:07:01 DEBUG   opendrift.models.basemodel:1538:               59.12085386802185 <- latitude  -> 59.17464837320313
14:07:01 DEBUG   opendrift.models.basemodel:1543:               10.945169944144903 <- longitude -> 11.023419967554865
14:07:01 DEBUG   opendrift.models.basemodel:1548:               -12.945646286010742   <- z ->   0.0
14:07:01 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
14:07:01 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:01 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:56:21.121579 - step 36 of 216 - 1250 active elements (0 deactivated)
14:07:01 DEBUG   opendrift.models.basemodel:2888: 8750 elements scheduled.
14:07:01 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 1250 elements
14:07:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:01 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:01 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 1250 elements
14:07:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
14:07:02 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:02 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:02 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:02 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:02 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:02 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:02 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 20:00:00)
14:07:02 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
14:07:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:02 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 1
14:07:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:02 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.06) and
                      after (2023-09-01 20:00:00, weight 0.94) in time
14:07:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05484062728558 and -58.976590578560604 degrees.
14:07:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05484062728558 and -58.976590578560604 degrees.
14:07:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:02 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:02 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:02 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:02 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:02 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.641716 (min) 1.26636 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.04598 (min) 0.675088 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.63304e-05 (min) 0.000256315 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.39387 (min) 9.69024 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.67623 (min) 7.03985 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 13.8895 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1527:               1250 active elements
14:07:02 DEBUG   opendrift.models.basemodel:1538:               59.12085386802185 <- latitude  -> 59.17464837320313
14:07:02 DEBUG   opendrift.models.basemodel:1543:               10.945169944144903 <- longitude -> 11.023419967554865
14:07:02 DEBUG   opendrift.models.basemodel:1548:               -12.945646286010742   <- z ->   0.0
14:07:02 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:02 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:02 DEBUG   opendrift.models.physics_methods:1050:    min: 0.029332, mean: 3.423457, max: 9.095803
14:07:02 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029332, mean: 3.423457, max: 9.095803
14:07:02 DEBUG   opendrift.models.basemodel:813: 87 elements hit coastline, moving back to water
14:07:02 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:07:02 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:02 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:02 DEBUG   opendrift.models.physics_methods:828: Advecting 34 of 1250 elements above 0.100m with wind-sheared ocean current (0.009298 m/s - 0.134420 m/s)
14:07:02 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:02 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:02 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1023768601823616
14:07:02 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:02 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:02 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:02 DEBUG   opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:02 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:07:02 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:02 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:02 DEBUG   opendrift.models.basemodel:2945: 1250 active elements (0 deactivated)
14:07:02 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8750, already seeded 1250
14:07:02 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 1285 elements
14:07:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:02 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:02 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:02 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:02 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:02 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.28706 (min) 13.6057 (max)
14:07:02 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1527:               1285 active elements
14:07:02 DEBUG   opendrift.models.basemodel:1538:               59.12360167915017 <- latitude  -> 59.174641635911726
14:07:02 DEBUG   opendrift.models.basemodel:1543:               10.944844698868723 <- longitude -> 11.021924999615177
14:07:02 DEBUG   opendrift.models.basemodel:1548:               -12.935646286010742   <- z ->   0.0
14:07:02 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
14:07:02 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:02 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:06:21.121579 - step 37 of 216 - 1285 active elements (0 deactivated)
14:07:02 DEBUG   opendrift.models.basemodel:2888: 8715 elements scheduled.
14:07:02 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 1285 elements
14:07:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:02 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:02 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 1285 elements
14:07:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:03 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:03 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 21:00:00)
14:07:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:03 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 309 elements, expanding data 1
14:07:03 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.89) and
                      after (2023-09-01 21:00:00, weight 0.11) in time
14:07:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05516585940044 and -58.97808553933598 degrees.
14:07:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05516585940044 and -58.97808553933598 degrees.
14:07:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:03 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:03 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:03 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.68422 (min) 1.16492 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01894 (min) 0.762873 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.3799e-05 (min) 0.00028986 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.22478 (min) 9.60937 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.35594 (min) 7.13902 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.28706 (min) 13.6057 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1527:               1285 active elements
14:07:03 DEBUG   opendrift.models.basemodel:1538:               59.12360167915017 <- latitude  -> 59.174641635911726
14:07:03 DEBUG   opendrift.models.basemodel:1543:               10.944844698868723 <- longitude -> 11.021924999615177
14:07:03 DEBUG   opendrift.models.basemodel:1548:               -12.935646286010742   <- z ->   0.0
14:07:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:03 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:03 DEBUG   opendrift.models.physics_methods:1050:    min: 0.149200, mean: 3.342694, max: 8.338646
14:07:03 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.149200, mean: 3.342694, max: 8.338646
14:07:03 DEBUG   opendrift.models.basemodel:813: 89 elements hit coastline, moving back to water
14:07:03 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:07:03 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:03 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:03 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1285 elements above 0.100m with wind-sheared ocean current (0.019312 m/s - 0.158415 m/s)
14:07:03 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:03 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:03 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08604270088966369
14:07:03 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:03 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:03 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:03 DEBUG   opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:03 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:07:03 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:03 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:03 DEBUG   opendrift.models.basemodel:2945: 1285 active elements (0 deactivated)
14:07:03 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8715, already seeded 1285
14:07:03 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 1320 elements
14:07:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:03 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.33121 (min) 13.5381 (max)
14:07:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1527:               1320 active elements
14:07:03 DEBUG   opendrift.models.basemodel:1538:               59.123682109856155 <- latitude  -> 59.17440385178371
14:07:03 DEBUG   opendrift.models.basemodel:1543:               10.944566582451257 <- longitude -> 11.019765926753566
14:07:03 DEBUG   opendrift.models.basemodel:1548:               -13.259896507263184   <- z ->   0.0
14:07:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
14:07:03 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:03 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:16:21.121579 - step 38 of 216 - 1320 active elements (0 deactivated)
14:07:03 DEBUG   opendrift.models.basemodel:2888: 8680 elements scheduled.
14:07:03 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 1320 elements
14:07:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:03 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:03 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 1320 elements
14:07:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:04 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:04 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:04 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x21x5) for time after (2023-09-01 21:00:00)
14:07:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:04 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 360 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 772 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 1
14:07:04 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.73) and
                      after (2023-09-01 21:00:00, weight 0.27) in time
14:07:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05544398180489 and -58.980244638059084 degrees.
14:07:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05544398180489 and -58.980244638059084 degrees.
14:07:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:04 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:04 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:04 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.628612 (min) 1.08563 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.99491 (min) 0.700798 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.90095e-05 (min) 0.000296316 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.67109 (min) 9.45763 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.65046 (min) 5.71845 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.33121 (min) 13.5381 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1527:               1320 active elements
14:07:04 DEBUG   opendrift.models.basemodel:1538:               59.123682109856155 <- latitude  -> 59.17440385178371
14:07:04 DEBUG   opendrift.models.basemodel:1543:               10.944566582451257 <- longitude -> 11.019765926753566
14:07:04 DEBUG   opendrift.models.basemodel:1548:               -13.224869728088379   <- z ->   0.0
14:07:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:04 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:04 DEBUG   opendrift.models.physics_methods:1050:    min: 0.064448, mean: 3.082704, max: 8.157651
14:07:04 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.064448, mean: 3.082704, max: 8.157651
14:07:04 DEBUG   opendrift.models.basemodel:813: 84 elements hit coastline, moving back to water
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
14:07:04 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:04 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:04 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 1320 elements above 0.100m with wind-sheared ocean current (0.010503 m/s - 0.136131 m/s)
14:07:04 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:04 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:04 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08234820823677062
14:07:04 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:04 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:04 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:04 DEBUG   opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 102 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:04 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
14:07:04 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:04 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:04 DEBUG   opendrift.models.basemodel:2945: 1320 active elements (0 deactivated)
14:07:04 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8680, already seeded 1320
14:07:04 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 1355 elements
14:07:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:04 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.43652 (min) 13.5234 (max)
14:07:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1527:               1355 active elements
14:07:04 DEBUG   opendrift.models.basemodel:1538:               59.12401858772739 <- latitude  -> 59.17433728048154
14:07:04 DEBUG   opendrift.models.basemodel:1543:               10.944704346566336 <- longitude -> 11.02118366618642
14:07:04 DEBUG   opendrift.models.basemodel:1548:               -13.53807544708252   <- z ->   0.0
14:07:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
14:07:04 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:04 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:26:21.121579 - step 39 of 216 - 1355 active elements (0 deactivated)
14:07:04 DEBUG   opendrift.models.basemodel:2888: 8645 elements scheduled.
14:07:04 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 1355 elements
14:07:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:04 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:04 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 1355 elements
14:07:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:05 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:05 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:05 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x21x5) for time after (2023-09-01 21:00:00)
14:07:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:05 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 351 elements, expanding data 1
14:07:05 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.56) and
                      after (2023-09-01 21:00:00, weight 0.44) in time
14:07:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055306209478054 and -58.978826880448665 degrees.
14:07:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055306209478054 and -58.978826880448665 degrees.
14:07:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:05 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:05 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:05 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.699418 (min) 1.20592 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01527 (min) 0.758294 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.83132e-05 (min) 0.000356635 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.83325 (min) 8.5464 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.82965 (min) 6.11938 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.43652 (min) 13.5234 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1527:               1355 active elements
14:07:05 DEBUG   opendrift.models.basemodel:1538:               59.12401858772739 <- latitude  -> 59.17433728048154
14:07:05 DEBUG   opendrift.models.basemodel:1543:               10.944704346566336 <- longitude -> 11.02118366618642
14:07:05 DEBUG   opendrift.models.basemodel:1548:               -13.454569816589355   <- z ->   0.0
14:07:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:05 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:05 DEBUG   opendrift.models.physics_methods:1050:    min: 0.113175, mean: 2.951375, max: 7.813320
14:07:05 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.113175, mean: 2.951375, max: 7.813320
14:07:05 DEBUG   opendrift.models.basemodel:813: 94 elements hit coastline, moving back to water
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:05 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:05 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:05 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 1355 elements above 0.100m with wind-sheared ocean current (0.009422 m/s - 0.128370 m/s)
14:07:05 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:05 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:05 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07554349217708588
14:07:05 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:05 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:05 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:05 DEBUG   opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:05 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:05 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:05 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:05 DEBUG   opendrift.models.basemodel:2945: 1355 active elements (0 deactivated)
14:07:05 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8645, already seeded 1355
14:07:05 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:07:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 1389 elements
14:07:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:05 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.06098 (min) 13.8388 (max)
14:07:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1527:               1389 active elements
14:07:05 DEBUG   opendrift.models.basemodel:1538:               59.12401858772739 <- latitude  -> 59.17424841916291
14:07:05 DEBUG   opendrift.models.basemodel:1543:               10.942939945850032 <- longitude -> 11.024541715761972
14:07:05 DEBUG   opendrift.models.basemodel:1548:               -13.44456886291504   <- z ->   0.0
14:07:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
14:07:05 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:05 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:36:21.121579 - step 40 of 216 - 1389 active elements (0 deactivated)
14:07:05 DEBUG   opendrift.models.basemodel:2888: 8611 elements scheduled.
14:07:05 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 1389 elements
14:07:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:05 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:05 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 1389 elements
14:07:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:06 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:06 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:06 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 21:00:00)
14:07:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:06 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 830 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
14:07:06 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.39) and
                      after (2023-09-01 21:00:00, weight 0.61) in time
14:07:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05707062229729 and -58.975468825606505 degrees.
14:07:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05707062229729 and -58.975468825606505 degrees.
14:07:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:06 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:06 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:06 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.595131 (min) 1.11024 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.23417 (min) 0.672866 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.58469e-05 (min) 0.000350633 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.73327 (min) 10.3396 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.96899 (min) 6.19698 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.06098 (min) 13.8388 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1527:               1389 active elements
14:07:06 DEBUG   opendrift.models.basemodel:1538:               59.12401858772739 <- latitude  -> 59.17424841916291
14:07:06 DEBUG   opendrift.models.basemodel:1543:               10.942939945850032 <- longitude -> 11.024541715761972
14:07:06 DEBUG   opendrift.models.basemodel:1548:               -13.44456886291504   <- z ->   0.0
14:07:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:06 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:06 DEBUG   opendrift.models.physics_methods:1050:    min: 0.097147, mean: 2.864712, max: 8.879381
14:07:06 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.097147, mean: 2.864712, max: 8.879381
14:07:06 DEBUG   opendrift.models.basemodel:813: 95 elements hit coastline, moving back to water
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:06 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:06 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:06 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1389 elements above 0.100m with wind-sheared ocean current (0.009249 m/s - 0.132462 m/s)
14:07:06 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:06 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:06 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09756316697605133
14:07:06 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:06 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:06 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:06 DEBUG   opendrift.models.oceandrift:582: 124 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 106 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:06 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:07:06 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:06 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:06 DEBUG   opendrift.models.basemodel:2945: 1389 active elements (0 deactivated)
14:07:06 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8611, already seeded 1389
14:07:06 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 1424 elements
14:07:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:06 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:06 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.16487 (min) 13.999 (max)
14:07:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1527:               1424 active elements
14:07:06 DEBUG   opendrift.models.basemodel:1538:               59.1235447807611 <- latitude  -> 59.17321756760377
14:07:06 DEBUG   opendrift.models.basemodel:1543:               10.944633399127166 <- longitude -> 11.024086691833576
14:07:06 DEBUG   opendrift.models.basemodel:1548:               -12.529073715209961   <- z ->   0.0
14:07:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
14:07:06 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:06 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:46:21.121579 - step 41 of 216 - 1424 active elements (0 deactivated)
14:07:06 DEBUG   opendrift.models.basemodel:2888: 8576 elements scheduled.
14:07:06 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 1424 elements
14:07:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:06 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:06 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 1424 elements
14:07:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:06 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:07 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:07 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:07 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 21:00:00)
14:07:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:07 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 431 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 2
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
14:07:07 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.23) and
                      after (2023-09-01 21:00:00, weight 0.77) in time
14:07:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055377151267926 and -58.97592386811005 degrees.
14:07:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055377151267926 and -58.97592386811005 degrees.
14:07:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:07 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:07 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:07 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.961248 (min) 1.30903 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.945053 (min) 0.74427 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.87194e-05 (min) 0.00035481 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.80462 (min) 10.7488 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.98205 (min) 5.49131 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.16487 (min) 13.999 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1527:               1424 active elements
14:07:07 DEBUG   opendrift.models.basemodel:1538:               59.1235447807611 <- latitude  -> 59.17321756760377
14:07:07 DEBUG   opendrift.models.basemodel:1543:               10.944633399127166 <- longitude -> 11.024086691833576
14:07:07 DEBUG   opendrift.models.basemodel:1548:               -12.529073715209961   <- z ->   0.0
14:07:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:07 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:07 DEBUG   opendrift.models.physics_methods:1050:    min: 0.105478, mean: 2.621294, max: 9.196570
14:07:07 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.105478, mean: 2.621294, max: 9.196570
14:07:07 DEBUG   opendrift.models.basemodel:813: 92 elements hit coastline, moving back to water
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
14:07:07 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:07 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:07 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1424 elements above 0.100m with wind-sheared ocean current (0.002706 m/s - 0.126014 m/s)
14:07:07 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:07 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:07 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10465766066654204
14:07:07 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:07 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:07 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:07 DEBUG   opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:07 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
14:07:07 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
14:07:07 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:07 DEBUG   opendrift.models.basemodel:2945: 1424 active elements (0 deactivated)
14:07:07 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8576, already seeded 1424
14:07:07 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 1459 elements
14:07:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:07 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.136 (max)
14:07:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1527:               1459 active elements
14:07:07 DEBUG   opendrift.models.basemodel:1538:               59.12215320091653 <- latitude  -> 59.17297062627884
14:07:07 DEBUG   opendrift.models.basemodel:1543:               10.944858768254349 <- longitude -> 11.023971635517519
14:07:07 DEBUG   opendrift.models.basemodel:1548:               -13.381025918129037   <- z ->   0.0
14:07:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
14:07:07 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:07 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:56:21.121579 - step 42 of 216 - 1459 active elements (0 deactivated)
14:07:07 DEBUG   opendrift.models.basemodel:2888: 8541 elements scheduled.
14:07:07 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 1459 elements
14:07:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:07 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:07 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 1459 elements
14:07:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
14:07:08 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:08 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:08 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 21:00:00)
14:07:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
14:07:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:08 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 440 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 1
14:07:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:08 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.06) and
                      after (2023-09-01 21:00:00, weight 0.94) in time
14:07:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055151783476035 and -58.976038915363795 degrees.
14:07:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055151783476035 and -58.976038915363795 degrees.
14:07:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:08 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:08 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:08 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.741665 (min) 1.07668 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00704 (min) 0.690829 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.75556e-05 (min) 0.000389528 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.74264 (min) 10.3594 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.65437 (min) 5.84289 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.136 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1527:               1459 active elements
14:07:08 DEBUG   opendrift.models.basemodel:1538:               59.12215320091653 <- latitude  -> 59.17297062627884
14:07:08 DEBUG   opendrift.models.basemodel:1543:               10.944858768254349 <- longitude -> 11.023971635517519
14:07:08 DEBUG   opendrift.models.basemodel:1548:               -13.304888725280762   <- z ->   0.0
14:07:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:08 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:08 DEBUG   opendrift.models.physics_methods:1050:    min: 0.029864, mean: 2.599521, max: 9.007621
14:07:08 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029864, mean: 2.599521, max: 9.007621
14:07:08 DEBUG   opendrift.models.basemodel:813: 111 elements hit coastline, moving back to water
14:07:08 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:07:08 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:08 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:08 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1459 elements above 0.100m with wind-sheared ocean current (0.017442 m/s - 0.107845 m/s)
14:07:08 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:08 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:08 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10040150647218704
14:07:08 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:08 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:08 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:08 DEBUG   opendrift.models.oceandrift:582: 135 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:08 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
14:07:08 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:08 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:08 DEBUG   opendrift.models.basemodel:2945: 1459 active elements (0 deactivated)
14:07:08 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8541, already seeded 1459
14:07:08 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:07:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 1493 elements
14:07:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:08 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.18878 (min) 14.2799 (max)
14:07:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1527:               1493 active elements
14:07:08 DEBUG   opendrift.models.basemodel:1538:               59.12020333963778 <- latitude  -> 59.17334955600783
14:07:08 DEBUG   opendrift.models.basemodel:1543:               10.94282500658263 <- longitude -> 11.023896050566064
14:07:08 DEBUG   opendrift.models.basemodel:1548:               -13.949725151062012   <- z ->   0.0
14:07:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
14:07:08 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:08 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:06:21.121579 - step 43 of 216 - 1493 active elements (0 deactivated)
14:07:08 DEBUG   opendrift.models.basemodel:2888: 8507 elements scheduled.
14:07:08 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 1493 elements
14:07:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:08 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:08 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 1493 elements
14:07:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:09 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:09 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:09 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:09 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:09 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:09 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:09 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
14:07:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:09 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 935 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 2
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 442 elements, expanding data 1
14:07:09 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.89) and
                      after (2023-09-01 22:00:00, weight 0.11) in time
14:07:09 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057185549422655 and -58.97611449988252 degrees.
14:07:09 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057185549422655 and -58.97611449988252 degrees.
14:07:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:09 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:09 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:09 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.644234 (min) 1.35933 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.11189 (min) 0.70689 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.84069e-05 (min) 0.00037854 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.50075 (min) 8.12921 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.4699 (min) 4.46478 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.18878 (min) 14.2799 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1527:               1493 active elements
14:07:09 DEBUG   opendrift.models.basemodel:1538:               59.12020333963778 <- latitude  -> 59.17334955600783
14:07:09 DEBUG   opendrift.models.basemodel:1543:               10.94282500658263 <- longitude -> 11.023896050566064
14:07:09 DEBUG   opendrift.models.basemodel:1548:               -13.949725151062012   <- z ->   0.0
14:07:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:09 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:09 DEBUG   opendrift.models.physics_methods:1050:    min: 0.055435, mean: 2.430211, max: 7.300918
14:07:09 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.055435, mean: 2.430211, max: 7.300918
14:07:09 DEBUG   opendrift.models.basemodel:813: 112 elements hit coastline, moving back to water
14:07:09 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:07:09 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:09 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:09 DEBUG   opendrift.models.physics_methods:828: Advecting 34 of 1493 elements above 0.100m with wind-sheared ocean current (0.007260 m/s - 0.115614 m/s)
14:07:09 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:09 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:09 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06596054433734894
14:07:09 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:09 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:09 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:09 DEBUG   opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:09 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:07:09 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:09 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:09 DEBUG   opendrift.models.basemodel:2945: 1493 active elements (0 deactivated)
14:07:09 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8507, already seeded 1493
14:07:09 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 1528 elements
14:07:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:09 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.11896 (min) 14.2556 (max)
14:07:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1527:               1528 active elements
14:07:09 DEBUG   opendrift.models.basemodel:1538:               59.12050328434708 <- latitude  -> 59.173431027621056
14:07:09 DEBUG   opendrift.models.basemodel:1543:               10.942794442891497 <- longitude -> 11.02445144772096
14:07:09 DEBUG   opendrift.models.basemodel:1548:               -13.949725151062012   <- z ->   0.0
14:07:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
14:07:09 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:09 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:16:21.121579 - step 44 of 216 - 1528 active elements (0 deactivated)
14:07:09 DEBUG   opendrift.models.basemodel:2888: 8472 elements scheduled.
14:07:09 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 1528 elements
14:07:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:09 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:09 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 1528 elements
14:07:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:10 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:10 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:10 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:10 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:10 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:10 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:10 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
14:07:10 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:10 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 499 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 456 elements, expanding data 1
14:07:10 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.73) and
                      after (2023-09-01 22:00:00, weight 0.27) in time
14:07:10 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057216117108915 and -58.97555911333478 degrees.
14:07:10 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057216117108915 and -58.97555911333478 degrees.
14:07:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:10 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:10 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:10 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:10 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:10 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.665184 (min) 1.18606 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02103 (min) 0.72361 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.57026e-05 (min) 0.000332069 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.53757 (min) 9.00762 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.38341 (min) 5.81479 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.11896 (min) 14.2556 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1527:               1528 active elements
14:07:10 DEBUG   opendrift.models.basemodel:1538:               59.12050328434708 <- latitude  -> 59.173431027621056
14:07:10 DEBUG   opendrift.models.basemodel:1543:               10.942794442891497 <- longitude -> 11.02445144772096
14:07:10 DEBUG   opendrift.models.basemodel:1548:               -13.949725151062012   <- z ->   0.0
14:07:10 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:10 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:10 DEBUG   opendrift.models.physics_methods:1050:    min: 0.051533, mean: 2.242433, max: 7.715954
14:07:10 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.051533, mean: 2.242433, max: 7.715954
14:07:10 DEBUG   opendrift.models.basemodel:813: 121 elements hit coastline, moving back to water
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
14:07:10 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:10 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:10 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1528 elements above 0.100m with wind-sheared ocean current (0.004441 m/s - 0.142664 m/s)
14:07:10 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:10 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:10 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07367254792674065
14:07:10 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:10 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:10 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:10 DEBUG   opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:10 DEBUG   opendrift.models.oceandrift:582: 72 elements penetrated seafloor, lifting up
14:07:10 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:10 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:10 DEBUG   opendrift.models.basemodel:2945: 1528 active elements (0 deactivated)
14:07:10 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8472, already seeded 1528
14:07:10 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 1563 elements
14:07:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:10 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:10 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:10 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:10 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:10 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:10 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.4656 (max)
14:07:10 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1527:               1563 active elements
14:07:10 DEBUG   opendrift.models.basemodel:1538:               59.11799321830439 <- latitude  -> 59.17489608045607
14:07:10 DEBUG   opendrift.models.basemodel:1543:               10.943323986070954 <- longitude -> 11.024607126374907
14:07:10 DEBUG   opendrift.models.basemodel:1548:               -13.939725151062012   <- z ->   0.0
14:07:10 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
14:07:10 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:10 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:26:21.121579 - step 45 of 216 - 1563 active elements (0 deactivated)
14:07:10 DEBUG   opendrift.models.basemodel:2888: 8437 elements scheduled.
14:07:10 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 1563 elements
14:07:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:10 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:10 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 1563 elements
14:07:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:10 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:11 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:11 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:11 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:11 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:11 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:11 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:11 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
14:07:11 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:11 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:11 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.56) and
                      after (2023-09-01 22:00:00, weight 0.44) in time
14:07:11 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056686568271715 and -58.97540343453195 degrees.
14:07:11 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056686568271715 and -58.97540343453195 degrees.
14:07:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:11 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:11 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:11 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:11 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:11 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.652314 (min) 1.31229 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.13652 (min) 0.890972 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.99377e-05 (min) 0.000492968 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.38657 (min) 7.56703 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.83741 (min) 5.92725 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.4656 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1527:               1563 active elements
14:07:11 DEBUG   opendrift.models.basemodel:1538:               59.11799321830439 <- latitude  -> 59.17489608045607
14:07:11 DEBUG   opendrift.models.basemodel:1543:               10.943323986070954 <- longitude -> 11.024607126374907
14:07:11 DEBUG   opendrift.models.basemodel:1548:               -13.939725151062012   <- z ->   0.0
14:07:11 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:11 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:11 DEBUG   opendrift.models.physics_methods:1050:    min: 0.014745, mean: 2.223159, max: 6.887453
14:07:11 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.014745, mean: 2.223159, max: 6.887453
14:07:11 DEBUG   opendrift.models.basemodel:813: 113 elements hit coastline, moving back to water
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:11 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:11 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:11 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1563 elements above 0.100m with wind-sheared ocean current (0.011686 m/s - 0.103610 m/s)
14:07:11 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:11 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:11 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.058701590850906364
14:07:11 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:11 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:11 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:11 DEBUG   opendrift.models.oceandrift:582: 142 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:11 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:11 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:11 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:11 DEBUG   opendrift.models.basemodel:2945: 1563 active elements (0 deactivated)
14:07:11 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8437, already seeded 1563
14:07:11 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 1598 elements
14:07:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:11 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:11 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:11 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:11 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:11 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:11 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.56 (max)
14:07:11 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1527:               1598 active elements
14:07:11 DEBUG   opendrift.models.basemodel:1538:               59.11638796640737 <- latitude  -> 59.1746729292698
14:07:11 DEBUG   opendrift.models.basemodel:1543:               10.942817074775714 <- longitude -> 11.024141800902857
14:07:11 DEBUG   opendrift.models.basemodel:1548:               -13.044710159301758   <- z ->   0.0
14:07:11 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
14:07:11 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:11 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:36:21.121579 - step 46 of 216 - 1598 active elements (0 deactivated)
14:07:11 DEBUG   opendrift.models.basemodel:2888: 8402 elements scheduled.
14:07:11 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 1598 elements
14:07:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:11 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:11 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 1598 elements
14:07:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:11 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:12 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:12 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 22:00:00)
14:07:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 531 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:12 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.39) and
                      after (2023-09-01 22:00:00, weight 0.61) in time
14:07:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05719350130077 and -58.97586875384107 degrees.
14:07:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05719350130077 and -58.97586875384107 degrees.
14:07:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:12 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:12 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:12 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.718284 (min) 1.31475 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03237 (min) 0.68611 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000112346 (min) 0.000468975 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.2717 (min) 7.61332 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.63641 (min) 6.69065 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.56 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1527:               1598 active elements
14:07:12 DEBUG   opendrift.models.basemodel:1538:               59.11638796640737 <- latitude  -> 59.1746729292698
14:07:12 DEBUG   opendrift.models.basemodel:1543:               10.942817074775714 <- longitude -> 11.024141800902857
14:07:12 DEBUG   opendrift.models.basemodel:1548:               -13.044710159301758   <- z ->   0.0
14:07:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:12 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:12 DEBUG   opendrift.models.physics_methods:1050:    min: 0.121077, mean: 2.192785, max: 6.593874
14:07:12 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.121077, mean: 2.192785, max: 6.593874
14:07:12 DEBUG   opendrift.models.basemodel:813: 125 elements hit coastline, moving back to water
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
14:07:12 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:12 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:12 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1598 elements above 0.100m with wind-sheared ocean current (0.015543 m/s - 0.122241 m/s)
14:07:12 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:12 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:12 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05380424207528114
14:07:12 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:12 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:12 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:12 DEBUG   opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:12 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:12 DEBUG   opendrift.models.basemodel:2945: 1598 active elements (0 deactivated)
14:07:12 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8402, already seeded 1598
14:07:12 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:07:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 1632 elements
14:07:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.6525 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1527:               1632 active elements
14:07:12 DEBUG   opendrift.models.basemodel:1538:               59.11496068249856 <- latitude  -> 59.17557207769045
14:07:12 DEBUG   opendrift.models.basemodel:1543:               10.943266547319487 <- longitude -> 11.026885140837498
14:07:12 DEBUG   opendrift.models.basemodel:1548:               -13.890298843383789   <- z ->   0.0
14:07:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:07:12 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:12 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:46:21.121579 - step 47 of 216 - 1632 active elements (0 deactivated)
14:07:12 DEBUG   opendrift.models.basemodel:2888: 8368 elements scheduled.
14:07:12 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 1632 elements
14:07:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 1632 elements
14:07:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:12 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:12 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 22:00:00)
14:07:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 601 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1057 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 559 elements, expanding data 1
14:07:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:12 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.23) and
                      after (2023-09-01 22:00:00, weight 0.77) in time
14:07:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05674402200603 and -58.97312541715773 degrees.
14:07:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05674402200603 and -58.97312541715773 degrees.
14:07:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:12 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:12 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:12 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.659605 (min) 1.30384 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0729 (min) 0.684323 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000152525 (min) 0.000455732 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.748 (min) 8.14593 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.03028 (min) 6.82734 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.6525 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1527:               1632 active elements
14:07:12 DEBUG   opendrift.models.basemodel:1538:               59.11496068249856 <- latitude  -> 59.17557207769045
14:07:12 DEBUG   opendrift.models.basemodel:1543:               10.943266547319487 <- longitude -> 11.026885140837498
14:07:12 DEBUG   opendrift.models.basemodel:1548:               -13.833662986755371   <- z ->   0.0
14:07:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:12 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:12 DEBUG   opendrift.models.physics_methods:1050:    min: 0.010456, mean: 2.124527, max: 7.099046
14:07:12 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.010456, mean: 2.124527, max: 7.099046
14:07:12 DEBUG   opendrift.models.basemodel:813: 120 elements hit coastline, moving back to water
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:07:12 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:12 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:12 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1632 elements above 0.100m with wind-sheared ocean current (0.001403 m/s - 0.111664 m/s)
14:07:12 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:12 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:12 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06236353582437514
14:07:12 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:12 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:12 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:12 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:12 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:12 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:12 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:12 DEBUG   opendrift.models.basemodel:2945: 1632 active elements (0 deactivated)
14:07:12 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8368, already seeded 1632
14:07:12 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 1667 elements
14:07:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:12 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.6923 (max)
14:07:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1527:               1667 active elements
14:07:12 DEBUG   opendrift.models.basemodel:1538:               59.1141606129532 <- latitude  -> 59.17493722799149
14:07:12 DEBUG   opendrift.models.basemodel:1543:               10.943705041397147 <- longitude -> 11.024384690532765
14:07:12 DEBUG   opendrift.models.basemodel:1548:               -13.833662986755371   <- z ->   0.0
14:07:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
14:07:12 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:12 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:56:21.121579 - step 48 of 216 - 1667 active elements (0 deactivated)
14:07:12 DEBUG   opendrift.models.basemodel:2888: 8333 elements scheduled.
14:07:12 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 1667 elements
14:07:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:12 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:12 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 1667 elements
14:07:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
14:07:13 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:13 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:13 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:13 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:13 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:13 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:13 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
14:07:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
14:07:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:13 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 609 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1078 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 176 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
14:07:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:13 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.06) and
                      after (2023-09-01 22:00:00, weight 0.94) in time
14:07:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05630551694698 and -58.97562586209148 degrees.
14:07:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05630551694698 and -58.97562586209148 degrees.
14:07:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:13 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:13 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:13 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.717269 (min) 1.40322 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.966987 (min) 0.634292 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000145768 (min) 0.000498256 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.45839 (min) 7.04314 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.35111 (min) 6.43924 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.6923 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1527:               1667 active elements
14:07:13 DEBUG   opendrift.models.basemodel:1538:               59.1141606129532 <- latitude  -> 59.17493722799149
14:07:13 DEBUG   opendrift.models.basemodel:1543:               10.943705041397147 <- longitude -> 11.024384690532765
14:07:13 DEBUG   opendrift.models.basemodel:1548:               -13.833662986755371   <- z ->   0.0
14:07:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:13 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:13 DEBUG   opendrift.models.physics_methods:1050:    min: 0.026636, mean: 2.201324, max: 6.565767
14:07:13 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.026636, mean: 2.201324, max: 6.565767
14:07:13 DEBUG   opendrift.models.basemodel:813: 127 elements hit coastline, moving back to water
14:07:13 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:07:13 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:13 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:13 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1667 elements above 0.100m with wind-sheared ocean current (0.012292 m/s - 0.097831 m/s)
14:07:13 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:13 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:13 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05334656626470565
14:07:13 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:13 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:13 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:13 DEBUG   opendrift.models.oceandrift:582: 152 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 131 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:13 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
14:07:13 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:13 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:13 DEBUG   opendrift.models.basemodel:2945: 1667 active elements (0 deactivated)
14:07:13 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8333, already seeded 1667
14:07:13 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 1702 elements
14:07:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:13 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.7779 (max)
14:07:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1527:               1702 active elements
14:07:13 DEBUG   opendrift.models.basemodel:1538:               59.11212180795806 <- latitude  -> 59.17535596159249
14:07:13 DEBUG   opendrift.models.basemodel:1543:               10.942915237629547 <- longitude -> 11.023904793617659
14:07:13 DEBUG   opendrift.models.basemodel:1548:               -13.823662986755371   <- z ->   0.0
14:07:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:836: Lifting 129 elements to seafloor.
14:07:13 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:13 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:06:21.121579 - step 49 of 216 - 1702 active elements (0 deactivated)
14:07:13 DEBUG   opendrift.models.basemodel:2888: 8298 elements scheduled.
14:07:13 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 1702 elements
14:07:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:13 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:13 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 1702 elements
14:07:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:15 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 23:00:00)
14:07:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 642 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1109 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 174 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 604 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:15 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.89) and
                      after (2023-09-01 23:00:00, weight 0.11) in time
14:07:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05709532189268 and -58.97610575875984 degrees.
14:07:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05709532189268 and -58.97610575875984 degrees.
14:07:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:15 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:15 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:15 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.705213 (min) 1.21785 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.934557 (min) 0.608737 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000162351 (min) 0.000430675 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.0223 (min) 6.59044 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.91503 (min) 7.24341 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.7779 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1527:               1702 active elements
14:07:15 DEBUG   opendrift.models.basemodel:1538:               59.11212180795806 <- latitude  -> 59.17535596159249
14:07:15 DEBUG   opendrift.models.basemodel:1543:               10.942915237629547 <- longitude -> 11.023904793617659
14:07:15 DEBUG   opendrift.models.basemodel:1548:               -13.823662986755371   <- z ->   0.0
14:07:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:15 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:15 DEBUG   opendrift.models.physics_methods:1050:    min: 0.084932, mean: 2.179508, max: 6.376571
14:07:15 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.084932, mean: 2.179508, max: 6.376571
14:07:15 DEBUG   opendrift.models.basemodel:813: 131 elements hit coastline, moving back to water
14:07:15 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:07:15 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:15 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:15 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 1702 elements above 0.100m with wind-sheared ocean current (0.000937 m/s - 0.125209 m/s)
14:07:15 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:15 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:15 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.050316683631019585
14:07:15 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:15 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:15 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:15 DEBUG   opendrift.models.oceandrift:582: 157 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:15 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:15 DEBUG   opendrift.models.basemodel:2945: 1702 active elements (0 deactivated)
14:07:15 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8298, already seeded 1702
14:07:15 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:07:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 1736 elements
14:07:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.953 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1527:               1736 active elements
14:07:15 DEBUG   opendrift.models.basemodel:1538:               59.109001715646244 <- latitude  -> 59.17628815161673
14:07:15 DEBUG   opendrift.models.basemodel:1543:               10.943548664400156 <- longitude -> 11.023953157828808
14:07:15 DEBUG   opendrift.models.basemodel:1548:               -13.823662986755371   <- z ->   0.0
14:07:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 118 elements to seafloor.
14:07:15 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:15 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:16:21.121579 - step 50 of 216 - 1736 active elements (0 deactivated)
14:07:15 DEBUG   opendrift.models.basemodel:2888: 8264 elements scheduled.
14:07:15 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 1736 elements
14:07:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 1736 elements
14:07:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:15 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 23:00:00)
14:07:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 678 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1153 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 1
14:07:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:15 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.73) and
                      after (2023-09-01 23:00:00, weight 0.27) in time
14:07:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05646189661221 and -58.976057388076796 degrees.
14:07:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05646189661221 and -58.976057388076796 degrees.
14:07:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:15 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:15 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:15 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.720329 (min) 1.19766 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.17854 (min) 0.635115 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000180242 (min) 0.000403493 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.82079 (min) 6.32428 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.79444 (min) 6.74369 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.953 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1527:               1736 active elements
14:07:15 DEBUG   opendrift.models.basemodel:1538:               59.109001715646244 <- latitude  -> 59.17628815161673
14:07:15 DEBUG   opendrift.models.basemodel:1543:               10.943548664400156 <- longitude -> 11.023953157828808
14:07:15 DEBUG   opendrift.models.basemodel:1548:               -13.823662986755371   <- z ->   0.0
14:07:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:15 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:15 DEBUG   opendrift.models.physics_methods:1050:    min: 0.008764, mean: 2.244901, max: 7.896359
14:07:15 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.008764, mean: 2.244901, max: 7.896359
14:07:15 DEBUG   opendrift.models.basemodel:813: 144 elements hit coastline, moving back to water
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
14:07:15 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:15 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:15 DEBUG   opendrift.models.physics_methods:828: Advecting 34 of 1736 elements above 0.100m with wind-sheared ocean current (0.005115 m/s - 0.101068 m/s)
14:07:15 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:15 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:15 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07715766110189437
14:07:15 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:15 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:15 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:15 DEBUG   opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 133 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:15 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
14:07:15 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:15 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:15 DEBUG   opendrift.models.basemodel:2945: 1736 active elements (0 deactivated)
14:07:15 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8264, already seeded 1736
14:07:15 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 1771 elements
14:07:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:15 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9795 (max)
14:07:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1527:               1771 active elements
14:07:15 DEBUG   opendrift.models.basemodel:1538:               59.108100523005064 <- latitude  -> 59.176919987354225
14:07:15 DEBUG   opendrift.models.basemodel:1543:               10.943802061264085 <- longitude -> 11.025147915327342
14:07:15 DEBUG   opendrift.models.basemodel:1548:               -13.024991989135742   <- z ->   0.0
14:07:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:836: Lifting 132 elements to seafloor.
14:07:15 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:15 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:26:21.121579 - step 51 of 216 - 1771 active elements (0 deactivated)
14:07:15 DEBUG   opendrift.models.basemodel:2888: 8229 elements scheduled.
14:07:15 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 1771 elements
14:07:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:15 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:15 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 1771 elements
14:07:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:16 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:16 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:16 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-01 23:00:00)
14:07:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:16 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 705 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1167 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 192 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 659 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:16 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.56) and
                      after (2023-09-01 23:00:00, weight 0.44) in time
14:07:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05620849206137 and -58.974862626723784 degrees.
14:07:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05620849206137 and -58.974862626723784 degrees.
14:07:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:16 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:16 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:16 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.684138 (min) 1.22289 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.889174 (min) 0.719006 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000134056 (min) 0.000492557 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.29626 (min) 5.62292 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.20882 (min) 6.09361 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9795 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1527:               1771 active elements
14:07:16 DEBUG   opendrift.models.basemodel:1538:               59.108100523005064 <- latitude  -> 59.176919987354225
14:07:16 DEBUG   opendrift.models.basemodel:1543:               10.943802061264085 <- longitude -> 11.025147915327342
14:07:16 DEBUG   opendrift.models.basemodel:1548:               -13.024991989135742   <- z ->   0.0
14:07:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:16 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:16 DEBUG   opendrift.models.physics_methods:1050:    min: 0.069396, mean: 2.204936, max: 8.321819
14:07:16 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.069396, mean: 2.204936, max: 8.321819
14:07:16 DEBUG   opendrift.models.basemodel:813: 141 elements hit coastline, moving back to water
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
14:07:16 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:16 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:16 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1771 elements above 0.100m with wind-sheared ocean current (0.008225 m/s - 0.124408 m/s)
14:07:16 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:16 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:16 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08569581695611954
14:07:16 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:16 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:16 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:16 DEBUG   opendrift.models.oceandrift:582: 169 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 130 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:16 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:16 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:16 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:16 DEBUG   opendrift.models.basemodel:2945: 1771 active elements (0 deactivated)
14:07:16 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8229, already seeded 1771
14:07:16 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 1806 elements
14:07:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:07:16 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9391 (max)
14:07:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1527:               1806 active elements
14:07:16 DEBUG   opendrift.models.basemodel:1538:               59.108512329699494 <- latitude  -> 59.1769807449501
14:07:16 DEBUG   opendrift.models.basemodel:1543:               10.944620065649822 <- longitude -> 11.024254066679285
14:07:16 DEBUG   opendrift.models.basemodel:1548:               -13.014991989135742   <- z ->   0.0
14:07:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:836: Lifting 126 elements to seafloor.
14:07:16 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:16 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:36:21.121579 - step 52 of 216 - 1806 active elements (0 deactivated)
14:07:16 DEBUG   opendrift.models.basemodel:2888: 8194 elements scheduled.
14:07:16 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 1806 elements
14:07:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:16 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:16 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 1806 elements
14:07:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:17 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:17 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:17 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-01 23:00:00)
14:07:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:17 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 720 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 1
14:07:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:17 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.39) and
                      after (2023-09-01 23:00:00, weight 0.61) in time
14:07:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05539049357974 and -58.975756493778555 degrees.
14:07:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05539049357974 and -58.975756493778555 degrees.
14:07:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:17 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:17 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:17 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.711742 (min) 1.13549 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.36095 (min) 0.861178 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000131438 (min) 0.000508977 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.83175 (min) 7.10588 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.98401 (min) 5.65413 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9391 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1527:               1806 active elements
14:07:17 DEBUG   opendrift.models.basemodel:1538:               59.108512329699494 <- latitude  -> 59.1769807449501
14:07:17 DEBUG   opendrift.models.basemodel:1543:               10.944620065649822 <- longitude -> 11.024254066679285
14:07:17 DEBUG   opendrift.models.basemodel:1548:               -13.014991989135742   <- z ->   0.0
14:07:17 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:17 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:17 DEBUG   opendrift.models.physics_methods:1050:    min: 0.088402, mean: 2.280559, max: 7.046146
14:07:17 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.088402, mean: 2.280559, max: 7.046146
14:07:17 DEBUG   opendrift.models.basemodel:813: 184 elements hit coastline, moving back to water
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
14:07:17 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:17 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:17 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1806 elements above 0.100m with wind-sheared ocean current (0.010882 m/s - 0.114728 m/s)
14:07:17 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:17 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:17 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.061437648359613406
14:07:17 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:17 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:17 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:17 DEBUG   opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 128 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:17 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
14:07:17 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:17 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:17 DEBUG   opendrift.models.basemodel:2945: 1806 active elements (0 deactivated)
14:07:17 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8194, already seeded 1806
14:07:17 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 1841 elements
14:07:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:17 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9367 (max)
14:07:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1527:               1841 active elements
14:07:17 DEBUG   opendrift.models.basemodel:1538:               59.10747422784597 <- latitude  -> 59.177967586384625
14:07:17 DEBUG   opendrift.models.basemodel:1543:               10.943832828736017 <- longitude -> 11.024805818218354
14:07:17 DEBUG   opendrift.models.basemodel:1548:               -13.128026666541198   <- z ->   0.0
14:07:17 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:836: Lifting 133 elements to seafloor.
14:07:17 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:17 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:46:21.121579 - step 53 of 216 - 1841 active elements (0 deactivated)
14:07:17 DEBUG   opendrift.models.basemodel:2888: 8159 elements scheduled.
14:07:17 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 1841 elements
14:07:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:17 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:17 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 1841 elements
14:07:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:18 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:18 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-01 23:00:00)
14:07:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:18 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 746 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1260 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
14:07:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:18 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.23) and
                      after (2023-09-01 23:00:00, weight 0.77) in time
14:07:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05617773676772 and -58.97520472989006 degrees.
14:07:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05617773676772 and -58.97520472989006 degrees.
14:07:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:18 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:18 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:18 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.628679 (min) 1.17463 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.923974 (min) 0.724064 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000120956 (min) 0.000749739 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.66973 (min) 6.03738 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.47149 (min) 5.67858 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9367 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1527:               1841 active elements
14:07:18 DEBUG   opendrift.models.basemodel:1538:               59.10747422784597 <- latitude  -> 59.177967586384625
14:07:18 DEBUG   opendrift.models.basemodel:1543:               10.943832828736017 <- longitude -> 11.024805818218354
14:07:18 DEBUG   opendrift.models.basemodel:1548:               -13.128026666541198   <- z ->   0.0
14:07:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:18 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:18 DEBUG   opendrift.models.physics_methods:1050:    min: 0.043784, mean: 2.328238, max: 7.186990
14:07:18 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.043784, mean: 2.328238, max: 7.186990
14:07:18 DEBUG   opendrift.models.basemodel:813: 162 elements hit coastline, moving back to water
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
14:07:18 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:18 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:18 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1841 elements above 0.100m with wind-sheared ocean current (0.010600 m/s - 0.138241 m/s)
14:07:18 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:18 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:18 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06391812669427871
14:07:18 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:18 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:18 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:18 DEBUG   opendrift.models.oceandrift:582: 176 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 123 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:18 DEBUG   opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
14:07:18 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:18 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:18 DEBUG   opendrift.models.basemodel:2945: 1841 active elements (0 deactivated)
14:07:18 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8159, already seeded 1841
14:07:18 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:07:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 1875 elements
14:07:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:18 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.972 (max)
14:07:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1527:               1875 active elements
14:07:18 DEBUG   opendrift.models.basemodel:1538:               59.10519446449114 <- latitude  -> 59.18000708276578
14:07:18 DEBUG   opendrift.models.basemodel:1543:               10.94258369853095 <- longitude -> 11.027167932265584
14:07:18 DEBUG   opendrift.models.basemodel:1548:               -13.279479254877963   <- z ->   0.0
14:07:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:836: Lifting 126 elements to seafloor.
14:07:18 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:18 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:56:21.121579 - step 54 of 216 - 1875 active elements (0 deactivated)
14:07:18 DEBUG   opendrift.models.basemodel:2888: 8125 elements scheduled.
14:07:18 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 1875 elements
14:07:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:18 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:18 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 1875 elements
14:07:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
14:07:19 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:19 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:19 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-01 23:00:00)
14:07:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
14:07:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:19 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 742 elements, expanding data 1
14:07:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:19 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.06) and
                      after (2023-09-01 23:00:00, weight 0.94) in time
14:07:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057426848069085 and -58.97284261624829 degrees.
14:07:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057426848069085 and -58.97284261624829 degrees.
14:07:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:19 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:19 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:19 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.767519 (min) 1.24203 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.912936 (min) 0.756341 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000148816 (min) 0.000454051 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.73342 (min) 5.26991 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.87628 (min) 6.79835 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.972 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1527:               1875 active elements
14:07:19 DEBUG   opendrift.models.basemodel:1538:               59.10519446449114 <- latitude  -> 59.18000708276578
14:07:19 DEBUG   opendrift.models.basemodel:1543:               10.94258369853095 <- longitude -> 11.027167932265584
14:07:19 DEBUG   opendrift.models.basemodel:1548:               -13.279479254877963   <- z ->   0.0
14:07:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:19 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:19 DEBUG   opendrift.models.physics_methods:1050:    min: 0.064377, mean: 2.402334, max: 7.426918
14:07:19 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.064377, mean: 2.402334, max: 7.426918
14:07:19 DEBUG   opendrift.models.basemodel:813: 168 elements hit coastline, moving back to water
14:07:19 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:07:19 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:19 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:19 DEBUG   opendrift.models.physics_methods:828: Advecting 34 of 1875 elements above 0.100m with wind-sheared ocean current (0.006536 m/s - 0.108911 m/s)
14:07:19 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:19 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:19 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06825674913414001
14:07:19 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:19 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:19 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:19 DEBUG   opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:19 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
14:07:19 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:19 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:19 DEBUG   opendrift.models.basemodel:2945: 1875 active elements (0 deactivated)
14:07:19 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8125, already seeded 1875
14:07:19 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 1910 elements
14:07:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:19 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.01518 (min) 15.0435 (max)
14:07:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1527:               1910 active elements
14:07:19 DEBUG   opendrift.models.basemodel:1538:               59.104841953374354 <- latitude  -> 59.18011704088889
14:07:19 DEBUG   opendrift.models.basemodel:1543:               10.94405426366724 <- longitude -> 11.025188046129314
14:07:19 DEBUG   opendrift.models.basemodel:1548:               -13.280652330094496   <- z ->   0.0
14:07:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:836: Lifting 139 elements to seafloor.
14:07:19 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:19 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:06:21.121579 - step 55 of 216 - 1910 active elements (0 deactivated)
14:07:19 DEBUG   opendrift.models.basemodel:2888: 8090 elements scheduled.
14:07:19 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 1910 elements
14:07:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:19 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:19 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 1910 elements
14:07:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:20 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:20 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:20 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-02 00:00:00)
14:07:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:20 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
14:07:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1343 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 1
14:07:20 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.89) and
                      after (2023-09-02 00:00:00, weight 0.11) in time
14:07:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055956293246 and -58.97482250320678 degrees.
14:07:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055956293246 and -58.97482250320678 degrees.
14:07:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:20 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:20 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:20 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.647244 (min) 1.15407 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03287 (min) 0.762082 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000147146 (min) 0.000410039 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.47373 (min) 5.5799 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.48054 (min) 6.3171 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.01518 (min) 15.0435 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1527:               1910 active elements
14:07:20 DEBUG   opendrift.models.basemodel:1538:               59.104841953374354 <- latitude  -> 59.18011704088889
14:07:20 DEBUG   opendrift.models.basemodel:1543:               10.94405426366724 <- longitude -> 11.025188046129314
14:07:20 DEBUG   opendrift.models.basemodel:1548:               -13.280652330094496   <- z ->   0.0
14:07:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:20 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:20 DEBUG   opendrift.models.physics_methods:1050:    min: 0.069509, mean: 2.432903, max: 7.247873
14:07:20 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.069509, mean: 2.432903, max: 7.247873
14:07:20 DEBUG   opendrift.models.basemodel:813: 180 elements hit coastline, moving back to water
14:07:20 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
14:07:20 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:20 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:20 DEBUG   opendrift.models.physics_methods:828: Advecting 35 of 1910 elements above 0.100m with wind-sheared ocean current (0.011428 m/s - 0.110483 m/s)
14:07:20 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:20 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:20 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06500559612925529
14:07:20 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:20 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:20 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:20 DEBUG   opendrift.models.oceandrift:582: 199 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 158 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 96 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:20 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
14:07:20 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
14:07:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
14:07:20 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:20 DEBUG   opendrift.models.basemodel:2945: 1910 active elements (0 deactivated)
14:07:20 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8090, already seeded 1910
14:07:20 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 1945 elements
14:07:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:20 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1728 (max)
14:07:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1527:               1945 active elements
14:07:20 DEBUG   opendrift.models.basemodel:1538:               59.10275522043577 <- latitude  -> 59.18001630044418
14:07:20 DEBUG   opendrift.models.basemodel:1543:               10.942958806672607 <- longitude -> 11.026002581076336
14:07:20 DEBUG   opendrift.models.basemodel:1548:               -13.505836486816406   <- z ->   0.0
14:07:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:836: Lifting 139 elements to seafloor.
14:07:20 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:20 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:16:21.121579 - step 56 of 216 - 1945 active elements (0 deactivated)
14:07:20 DEBUG   opendrift.models.basemodel:2888: 8055 elements scheduled.
14:07:20 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 1945 elements
14:07:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:20 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:20 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 1945 elements
14:07:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:21 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:21 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:21 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-09-02 00:00:00)
14:07:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:21 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
14:07:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 801 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1354 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 758 elements, expanding data 1
14:07:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
14:07:21 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.73) and
                      after (2023-09-02 00:00:00, weight 0.27) in time
14:07:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0570517620394 and -58.9740079620734 degrees.
14:07:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0570517620394 and -58.9740079620734 degrees.
14:07:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:21 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:21 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:21 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.645899 (min) 1.07299 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.985014 (min) 0.718979 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000125252 (min) 0.000573704 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.47931 (min) 5.67547 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.69486 (min) 7.08704 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1728 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1527:               1945 active elements
14:07:21 DEBUG   opendrift.models.basemodel:1538:               59.10275522043577 <- latitude  -> 59.18001630044418
14:07:21 DEBUG   opendrift.models.basemodel:1543:               10.942958806672607 <- longitude -> 11.026002581076336
14:07:21 DEBUG   opendrift.models.basemodel:1548:               -13.505836486816406   <- z ->   0.0
14:07:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:21 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:21 DEBUG   opendrift.models.physics_methods:1050:    min: 0.020195, mean: 2.437901, max: 7.196733
14:07:21 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.020195, mean: 2.437901, max: 7.196733
14:07:21 DEBUG   opendrift.models.basemodel:813: 185 elements hit coastline, moving back to water
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
14:07:21 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:21 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:21 DEBUG   opendrift.models.physics_methods:828: Advecting 36 of 1945 elements above 0.100m with wind-sheared ocean current (0.001394 m/s - 0.121279 m/s)
14:07:21 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:21 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:21 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06409154659183502
14:07:21 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:21 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:21 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:21 DEBUG   opendrift.models.oceandrift:582: 167 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 159 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 142 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 130 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 124 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 128 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:21 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
14:07:21 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
14:07:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
14:07:21 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:21 DEBUG   opendrift.models.basemodel:2945: 1945 active elements (0 deactivated)
14:07:21 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8055, already seeded 1945
14:07:21 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
14:07:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 1979 elements
14:07:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:21 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0303 (max)
14:07:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1527:               1979 active elements
14:07:21 DEBUG   opendrift.models.basemodel:1538:               59.102717720927004 <- latitude  -> 59.180603454146144
14:07:21 DEBUG   opendrift.models.basemodel:1543:               10.944092650913188 <- longitude -> 11.024662069655822
14:07:21 DEBUG   opendrift.models.basemodel:1548:               -13.74526607141615   <- z ->   0.0
14:07:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:836: Lifting 132 elements to seafloor.
14:07:21 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:21 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:26:21.121579 - step 57 of 216 - 1979 active elements (0 deactivated)
14:07:21 DEBUG   opendrift.models.basemodel:2888: 8021 elements scheduled.
14:07:21 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 1979 elements
14:07:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:21 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:21 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 1979 elements
14:07:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:22 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:22 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
14:07:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
14:07:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 839 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1393 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 791 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
14:07:22 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.56) and
                      after (2023-09-02 00:00:00, weight 0.44) in time
14:07:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0559179152511 and -58.975348472384844 degrees.
14:07:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0559179152511 and -58.975348472384844 degrees.
14:07:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:22 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:22 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:22 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.744149 (min) 1.25153 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.10707 (min) 0.792067 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000159488 (min) 0.00062284 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.38935 (min) 5.86109 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.14231 (min) 5.43342 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0303 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1527:               1979 active elements
14:07:22 DEBUG   opendrift.models.basemodel:1538:               59.102717720927004 <- latitude  -> 59.180603454146144
14:07:22 DEBUG   opendrift.models.basemodel:1543:               10.944092650913188 <- longitude -> 11.024662069655822
14:07:22 DEBUG   opendrift.models.basemodel:1548:               -13.74526607141615   <- z ->   0.0
14:07:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:22 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:22 DEBUG   opendrift.models.physics_methods:1050:    min: 0.015362, mean: 2.404828, max: 6.519214
14:07:22 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.015362, mean: 2.404828, max: 6.519214
14:07:22 DEBUG   opendrift.models.basemodel:813: 183 elements hit coastline, moving back to water
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
14:07:22 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:22 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:22 DEBUG   opendrift.models.physics_methods:828: Advecting 34 of 1979 elements above 0.100m with wind-sheared ocean current (0.018078 m/s - 0.102726 m/s)
14:07:22 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:22 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:22 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.052592827510671604
14:07:22 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:22 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:22 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:22 DEBUG   opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 150 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 131 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:22 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:22 DEBUG   opendrift.models.basemodel:2945: 1979 active elements (0 deactivated)
14:07:22 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8021, already seeded 1979
14:07:22 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 2014 elements
14:07:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9543 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1527:               2014 active elements
14:07:22 DEBUG   opendrift.models.basemodel:1538:               59.103695279662254 <- latitude  -> 59.17927602871028
14:07:22 DEBUG   opendrift.models.basemodel:1543:               10.94271101799386 <- longitude -> 11.024592268442222
14:07:22 DEBUG   opendrift.models.basemodel:1548:               -13.518789520263672   <- z ->   0.0
14:07:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 155 elements to seafloor.
14:07:22 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:22 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:36:21.121579 - step 58 of 216 - 2014 active elements (0 deactivated)
14:07:22 DEBUG   opendrift.models.basemodel:2888: 7986 elements scheduled.
14:07:22 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 2014 elements
14:07:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 2014 elements
14:07:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:22 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:22 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 00:00:00)
14:07:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
14:07:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1433 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 1
14:07:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
14:07:22 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.39) and
                      after (2023-09-02 00:00:00, weight 0.61) in time
14:07:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057299547393 and -58.97541827634632 degrees.
14:07:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057299547393 and -58.97541827634632 degrees.
14:07:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:22 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:22 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:22 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.766765 (min) 1.16364 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.911588 (min) 0.786864 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000136816 (min) 0.000429586 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.2326 (min) 5.85437 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.68194 (min) 6.14931 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9543 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1527:               2014 active elements
14:07:22 DEBUG   opendrift.models.basemodel:1538:               59.103695279662254 <- latitude  -> 59.17927602871028
14:07:22 DEBUG   opendrift.models.basemodel:1543:               10.94271101799386 <- longitude -> 11.024592268442222
14:07:22 DEBUG   opendrift.models.basemodel:1548:               -13.241070747375488   <- z ->   0.0
14:07:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:22 DEBUG   opendrift.models.physics_methods:1040: Calculating wave period Tm02 from wind
14:07:22 DEBUG   opendrift.models.physics_methods:1050:    min: 0.029438, mean: 2.405999, max: 7.175778
14:07:22 DEBUG   opendrift.models.physics_methods:990: Calculating wave period from wind, min: 0.029438, mean: 2.405999, max: 7.175778
14:07:22 DEBUG   opendrift.models.basemodel:813: 185 elements hit coastline, moving back to water
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
14:07:22 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
14:07:22 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
14:07:22 DEBUG   opendrift.models.physics_methods:828: Advecting 37 of 2014 elements above 0.100m with wind-sheared ocean current (0.005221 m/s - 0.138816 m/s)
14:07:22 DEBUG   opendrift.models.physics_methods:846: No Stokes drift velocity available
14:07:22 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
14:07:22 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06371888140042305
14:07:22 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
14:07:22 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
14:07:22 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
14:07:22 DEBUG   opendrift.models.oceandrift:582: 176 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 156 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 128 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
14:07:22 DEBUG   opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
14:07:22 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
14:07:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
14:07:22 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
14:07:22 DEBUG   opendrift.models.basemodel:2945: 2014 active elements (0 deactivated)
14:07:22 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7986, already seeded 2014
14:07:22 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
14:07:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
14:07:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 2049 elements
14:07:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:22 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
14:07:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.8382 (max)
14:07:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1527:               2049 active elements
14:07:22 DEBUG   opendrift.models.basemodel:1538:               59.10370557380145 <- latitude  -> 59.180516989430814
14:07:22 DEBUG   opendrift.models.basemodel:1543:               10.941071294580855 <- longitude -> 11.024174160146938
14:07:22 DEBUG   opendrift.models.basemodel:1548:               -14.03549503326416   <- z ->   0.0
14:07:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:836: Lifting 150 elements to seafloor.
14:07:22 DEBUG   opendrift.models.basemodel:2881: ======================================================================
14:07:22 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:46:21.121579 - step 59 of 216 - 2049 active elements (0 deactivated)
14:07:22 DEBUG   opendrift.models.basemodel:2888: 7951 elements scheduled.
14:07:22 DEBUG   opendrift.models.basemodel:2890: ======================================================================
14:07:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
14:07:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
14:07:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 2049 elements
14:07:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
14:07:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:07:22 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
14:07:22 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
14:07:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:07:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
14:07:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 2049 elements
14:07:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:07:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
14:07:23 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
14:07:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
14:07:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
14:07:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
14:07:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
14:07:23 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:07:23 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
14:07:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
14:07:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:23 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
14:07:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 916 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1481 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 1
14:07:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
14:07:23 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.23) and
                      after (2023-09-02 00:00:00, weight 0.77) in time
14:07:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05893926131517 and -58.97583639162541 degrees.
14:07:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05893926131517 and -58.97583639162541 degrees.
14:07:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
14:07:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
14:07:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
14:07:23 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
14:07:23 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
14:07:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
14:07:23 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.676768 (min) 1.41255 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.997706 (min) 0.81619 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000114863 (min) 0.000499027 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.77422 (min) 5.55449 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.58914 (min) 5.69589 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:07:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.8382 (max)
14:07:23 DEBUG   opendrift.mode