Biodegradation of oil at depth

import numpy as np
from datetime import datetime, timedelta
from opendrift.readers import reader_netCDF_CF_generic
from opendrift.models.openoil import OpenOil

o = OpenOil(loglevel=0)  # Set loglevel to 0 for debug information
time = datetime.now()
15:21:17 DEBUG   opendrift.config:168: Adding 18 config items from __init__
15:21:17 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
15:21:17 DEBUG   opendrift.config:168: Adding 6 config items from __init__
15:21:17 INFO    opendrift:569: OpenDriftSimulation initialised (version 1.14.3 / v1.14.3-21-g8f1ec61)
15:21:17 DEBUG   opendrift.config:168: Adding 19 config items from oceandrift
15:21:17 DEBUG   opendrift.config:178:   Overwriting config item seed:z
15:21:17 DEBUG   opendrift.config:168: Adding 15 config items from openoil

Current from HYCOM and wind from NCEP GFS

o.add_readers_from_list([
    'https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd',
    'https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd'])
o.set_config('environment:constant:ocean_mixed_layer_thickness', 20)
o.set_config('drift', {'current_uncertainty': 0, 'wind_uncertainty': 0, 'horizontal_diffusivity': 20})
15:21:17 DEBUG   opendrift.readers.reader_lazy:37: Delaying initialisation of LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:17 DEBUG   opendrift.readers.reader_lazy:37: Delaying initialisation of LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:17 DEBUG   opendrift.models.basemodel.environment:313: Added reader LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:17 DEBUG   opendrift.models.basemodel.environment:313: Added reader LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:17 INFO    opendrift.config:68: set_config('drift:current_uncertainty', 0)
15:21:17 INFO    opendrift.config:68: set_config('drift:wind_uncertainty', 0)
15:21:17 INFO    opendrift.config:68: set_config('drift:horizontal_diffusivity', 20)

Configuration

o.set_config('drift:vertical_mixing', True)
o.set_config('drift:vertical_mixing', True)
o.set_config('processes:biodegradation', True)
o.set_config('processes:dispersion', False)
o.set_config('biodegradation:method', 'half_time')

Fast decay for droplets, and slow decay for slick

kwargs = {'biodegradation_half_time_slick': 3, # days
          'biodegradation_half_time_droplet': 1, # days
          'oil_type': 'GENERIC MEDIUM CRUDE', 'm3_per_hour': .5, 'diameter': 8e-5}  # small droplets

Seed oil at surface and at 150m depth

time = datetime.today() - timedelta(days=5)
lon = 23.5
lat = 35.0
o.seed_elements(lon=lon, lat=lat, z=0, radius=100, number=3000, time=time, **kwargs)
o.seed_elements(lon=lon, lat=lat, z=-150, radius=100, number=3000, time=time, **kwargs)
15:21:17 INFO    opendrift.models.openoil.openoil:1630: Droplet diameter is provided, and will be kept constant during simulation
15:21:17 INFO    opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE
15:21:17 DEBUG   opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE
15:21:17 INFO    opendrift.models.openoil.openoil:1717: Using density 877.5726099999999 and viscosity 4.5431401718650355e-05 of oiltype GENERIC MEDIUM CRUDE
15:21:17 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
15:21:17 DEBUG   opendrift.models.basemodel.environment:313: Added reader constant_reader
15:21:17 INFO    opendrift.models.basemodel.environment:206: Adding a global landmask from GSHHG
15:21:17 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
15:21:22 DEBUG   opendrift.models.basemodel.environment:313: Added reader global_landmask
15:21:22 INFO    opendrift.models.basemodel.environment:229: Fallback values will be used for the following variables which have no readers:
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_surface_height: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    upward_sea_water_velocity: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_significant_height: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_ice_area_fraction: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_ice_x_velocity: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_ice_y_velocity: 0.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_water_temperature: 10.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_water_salinity: 34.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    sea_floor_depth_below_sea_level: 10000.000000
15:21:22 INFO    opendrift.models.basemodel.environment:232:    ocean_vertical_diffusivity: 0.020000
15:21:22 DEBUG   opendrift:157: Changed mode from Mode.Config to Mode.Ready
15:21:22 INFO    opendrift.models.openoil.openoil:1630: Droplet diameter is provided, and will be kept constant during simulation
15:21:22 INFO    opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE
15:21:22 DEBUG   opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE
15:21:22 INFO    opendrift.models.openoil.openoil:1717: Using density 877.5726099999999 and viscosity 4.5431401718650355e-05 of oiltype GENERIC MEDIUM CRUDE

Running model

o.run(duration=timedelta(days=5), time_step=3600)
15:21:22 DEBUG   opendrift:157: Changed mode from Mode.Ready to Mode.Run
15:21:22 DEBUG   opendrift:1751:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.14.3
  Platform: Linux, 6.8.0-1031-aws
  4.0 GB memory
  36 processors (x86_64)
  NumPy version 2.3.3
  SciPy version 1.16.2
  Matplotlib version 3.10.6
  NetCDF4 version 1.7.2
  Xarray version 2025.9.0
  ADIOS (adios_db) version 1.2.5
  Copernicusmarine version 2.2.2
  Python version 3.13.7 | packaged by conda-forge | (main, Sep  3 2025, 14:30:35) [GCC 14.3.0]
------------------------------------------------------

15:21:22 DEBUG   opendrift:1764: No output file is specified, neglecting export_buffer_length
15:21:22 INFO    opendrift:1779: Skipping environment variable upward_sea_water_velocity because of condition ['drift:vertical_advection', 'is', False]
15:21:22 INFO    opendrift:1790: Storing previous values of element property lon because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
15:21:22 INFO    opendrift:1790: Storing previous values of element property lat because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
15:21:22 DEBUG   opendrift:1913: Finalizing environment and preparing readers for simulation coverage ([17.32011687 29.93716835 29.68006624 40.06288506]) and time (2025-09-27 15:21:17.242042 to 2025-10-02 15:21:17.242042)
15:21:22 DEBUG   opendrift.models.basemodel.environment:168:    Preparing LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd for extent [17.32011687 29.93716835 29.68006624 40.06288506]
15:21:22 DEBUG   opendrift.models.basemodel.environment:168:    Preparing LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd for extent [17.32011687 29.93716835 29.68006624 40.06288506]
15:21:22 DEBUG   opendrift.models.basemodel.environment:168:    Preparing constant_reader for extent [17.32011687 29.93716835 29.68006624 40.06288506]
15:21:22 DEBUG   opendrift.readers.basereader.variables:555: Nothing more to prepare for constant_reader
15:21:22 DEBUG   opendrift.models.basemodel.environment:168:    Preparing global_landmask for extent [17.32011687 29.93716835 29.68006624 40.06288506]
15:21:22 DEBUG   opendrift.readers.basereader.variables:555: Nothing more to prepare for global_landmask
15:21:22 DEBUG   opendrift:2009: Initial self.result, size Frozen({'trajectory': 6000, 'time': 121})
15:21:22 INFO    opendrift:945: Using existing reader for land_binary_mask to move elements to ocean
15:21:22 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:22 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:22 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:22 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:22 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:22 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:22 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:22 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:22 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:22 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:22 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:22 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:22 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:22 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:22 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:22 INFO    opendrift:975: All points are in ocean
15:21:22 INFO    opendrift.models.openoil.openoil:692: Oil-water surface tension is 0.031369 Nm
15:21:22 INFO    opendrift.models.openoil.openoil:705: Max water fraction not available for GENERIC MEDIUM CRUDE, using default
15:21:22 DEBUG   opendrift:902: to be seeded: 6000, already seeded 0
15:21:22 DEBUG   opendrift:924: Released 6000 new elements.
15:21:22 DEBUG   opendrift:2085: ======================================================================
15:21:22 INFO    opendrift:2086: 2025-09-27 15:21:17.242042 - step 1 of 120 - 6000 active elements (0 deactivated)
15:21:22 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:22 DEBUG   opendrift:2094: ======================================================================
15:21:22 DEBUG   opendrift:2105:                34.99662780761719 <- latitude -> 35.00342559814453
15:21:22 DEBUG   opendrift:2105:                23.4965763092041 <- longitude -> 23.50360679626465
15:21:22 DEBUG   opendrift:2105:                -150.0 <- z -> 0.0
15:21:22 DEBUG   opendrift:2106: ---------------------------------
15:21:22 DEBUG   opendrift.models.basemodel.environment:566: Variables not covered by any reader: ['sea_water_temperature', 'sea_floor_depth_below_sea_level', 'y_wind', 'x_wind', 'sea_surface_height', 'sea_water_salinity', 'x_sea_water_velocity', 'y_sea_water_velocity']
15:21:22 DEBUG   opendrift.readers.reader_lazy:56: Initialising: LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:22 DEBUG   opendrift.readers:152: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
15:21:22 INFO    opendrift.readers:63: Opening file with xr.open_dataset
15:21:22 DEBUG   gribapi.bindings:57: eccodes lib search: trying to find binary wheel
15:21:22 DEBUG   gribapi.bindings:64: eccodes lib search: looking in /opt/conda/envs/opendrift/lib/python3.13/site-packages/eccodes.libs
15:21:22 DEBUG   gribapi.bindings:64: eccodes lib search: looking in /opt/conda/envs/opendrift/lib/python3.13/site-packages/eccodes/.dylibs
15:21:22 DEBUG   gribapi.bindings:64: eccodes lib search: looking in /opt/conda/envs/opendrift/lib/python3.13/site-packages/eccodes
15:21:22 DEBUG   gribapi.bindings:90: eccodes lib search: did not find library from wheel; try to find as separate lib
15:21:22 DEBUG   findlibs:301: about to search for libeccodes.so/eccodeslib in <function _find_in_package at 0x7fb0d291b060>
15:21:22 DEBUG   findlibs:301: about to search for libeccodes.so/eccodeslib in <function _find_in_python at 0x7fb0d291b100>
15:21:22 DEBUG   findlibs:303: found libeccodes.so/eccodeslib in <function _find_in_python at 0x7fb0d291b100>
15:21:22 DEBUG   gribapi.bindings:98: eccodes lib search: findlibs returned /opt/conda/envs/opendrift/lib/libeccodes.so
15:21:23 WARNING opendrift.readers:69: Removing variables that cannot be CF decoded: ['tau']
15:21:23 DEBUG   opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables.
15:21:23 INFO    opendrift.readers.reader_netCDF_CF_generic:299: Grid coordinates are detected, but proj4 string not given: assuming latlong
15:21:23 INFO    opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'z': 'depth', 'y': 'lat', 'x': 'lon', 'time': 'time'}
15:21:23 DEBUG   opendrift.readers.basereader.variables:614: Setting buffer size 9 for reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd, assuming a maximum average speed of 5 m/s and time span of 3:00:00
15:21:23 INFO    opendrift.readers.basereader:176: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
15:21:23 INFO    opendrift.readers.basereader:176: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
15:21:23 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
15:21:23 DEBUG   opendrift.readers.basereader.variables:569: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
15:21:23 DEBUG   opendrift.readers.basereader.structured:151: Clearing cache for reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd before starting new simulation
15:21:23 DEBUG   opendrift.readers.basereader.variables:614: Setting buffer size 4 for reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd, assuming a maximum average speed of 1.3 m/s and time span of 3:00:00
15:21:23 DEBUG   opendrift.readers.basereader.variables:555: Nothing more to prepare for https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:23 DEBUG   opendrift.readers.reader_lazy:71: Reader initialised: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:23 DEBUG   opendrift.readers.basereader.variables:614: Setting buffer size 4 for reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd, assuming a maximum average speed of 1.3 m/s and time span of 3:00:00
15:21:23 DEBUG   opendrift.readers.reader_lazy:56: Initialising: LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:23 DEBUG   opendrift.readers:152: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
15:21:23 INFO    opendrift.readers:63: Opening file with xr.open_dataset
15:21:24 DEBUG   opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables.
15:21:24 DEBUG   opendrift.readers.reader_netCDF_CF_generic:262: Lon and lat are 1D arrays - using as projection coordinates
15:21:24 INFO    opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'time': 'time', 'x': 'longitude', 'y': 'latitude'}
15:21:24 DEBUG   opendrift.readers.basereader.variables:614: Setting buffer size 3 for reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd, assuming a maximum average speed of 5 m/s and time span of 3:00:00
15:21:24 INFO    opendrift.readers.basereader:176: Variable x_wind will be rotated from eastward_wind
15:21:24 INFO    opendrift.readers.basereader:176: Variable y_wind will be rotated from northward_wind
15:21:24 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
15:21:24 DEBUG   opendrift.readers.basereader.variables:569: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
15:21:24 DEBUG   opendrift.readers.basereader.structured:151: Clearing cache for reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd before starting new simulation
15:21:24 DEBUG   opendrift.readers.basereader.variables:614: Setting buffer size 3 for reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd, assuming a maximum average speed of 1.3 m/s and time span of 3:00:00
15:21:24 DEBUG   opendrift.readers.basereader.variables:555: Nothing more to prepare for https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:24 DEBUG   opendrift.readers.reader_lazy:71: Reader initialised: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:24 DEBUG   opendrift.readers.basereader.variables:614: Setting buffer size 3 for reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd, assuming a maximum average speed of 1.3 m/s and time span of 3:00:00
15:21:24 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:24 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:24 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:24 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:24 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:24 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:24 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:24 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:24 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:24 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:24 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:24 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:24 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:24 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:24 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:24 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:24 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:24 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:24 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:24 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 15:00:00 (before)
                2025-09-27 18:00:00 (after)
15:21:24 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:25 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:25 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:25 DEBUG   opendrift.readers.basereader.structured:290: Fetched env-block (size 9x9x23) for time before (2025-09-27 15:00:00)
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:25 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:25 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:25 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x9x23) for time after (2025-09-27 18:00:00)
15:21:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 15:00:00) in space  (linearNDFast)
15:21:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:25 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:25 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 15:00:00, weight 0.88) and
                      after (2025-09-27 18:00:00, weight 0.12) in time
15:21:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:25 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:25 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 15:00:00 (before)
                2025-09-27 18:00:00 (after)
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:25 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:25 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:25 DEBUG   opendrift.readers.basereader.structured:290: Fetched env-block (size 8x7x1) for time before (2025-09-27 15:00:00)
15:21:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:26 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:26 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:26 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:26 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:26 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-27 18:00:00)
15:21:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 15:00:00) in space  (linearNDFast)
15:21:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:26 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:26 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 15:00:00, weight 0.88) and
                      after (2025-09-27 18:00:00, weight 0.12) in time
15:21:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:26 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:26 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:26 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.301817 (min) -0.023348 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.0455296 (min) -0.028295 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.915378 (min) -0.845586 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.44806 (min) -5.344 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:26 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.720126, mean: 0.736740, max: 0.750775
15:21:26 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:26 DEBUG   opendrift.models.physics_methods:878:    min: 4.623105, mean: 4.676110, max: 4.720461
15:21:26 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.623105, mean: 4.676110, max: 4.720461
15:21:26 DEBUG   opendrift:689: No elements hit coastline.
15:21:26 DEBUG   opendrift:1683: No elements to deactivate
15:21:26 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:26 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:26 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:26 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:26 DEBUG   opendrift.models.openoil.openoil:866:         Emulsification not yet started
15:21:26 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:26 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:26 DEBUG   opendrift.models.physics_methods:878:    min: 4.623105, mean: 4.676110, max: 4.720461
15:21:26 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:26 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001258, dN_50: 0.000099
15:21:26 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:26 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.011016020623454756
15:21:26 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:26 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:26 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 17 of 3000 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 13 of 2983 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 20 of 2970 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 15 of 2950 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 17 of 2935 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2918 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 15 of 2907 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 13 of 2892 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 10 of 2881 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 23 of 2872 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 17 of 2849 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 20 of 2833 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 19 of 2814 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 15 of 2795 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 17 of 2780 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 22 of 2763 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 11 of 2741 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 9 of 2730 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 25 of 2723 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 16 of 2698 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 9 of 2682 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 18 of 2673 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 14 of 2657 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 16 of 2645 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 22 of 2629 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 15 of 2609 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2597 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 17 of 2585 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 13 of 2569 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 11 of 2558 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 10 of 2549 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 14 of 2540 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2527 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 15 of 2515 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 11 of 2502 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 13 of 2492 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 20 of 2480 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2461 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 15 of 2449 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2435 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2424 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 19 of 2414 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 15 of 2398 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 18 of 2384 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 7 of 2368 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2364 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 8 of 2354 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 14 of 2348 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 20 of 2335 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 8 of 2315 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2309 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 6 of 2298 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 9 of 2295 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 15 of 2289 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 11 of 2276 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 13 of 2265 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 16 of 2254 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 12 of 2240 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 14 of 2229 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 17 of 2216 surface elements
15:21:26 DEBUG   opendrift.models.physics_methods:732: Advecting 2212 of 6000 elements above 0.100m with wind-sheared ocean current (0.013298 m/s - 0.165733 m/s)
15:21:26 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:26 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014980950267377865 and 0.41109690992799774 m/s
15:21:26 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:26 DEBUG   opendrift:2085: ======================================================================
15:21:26 INFO    opendrift:2086: 2025-09-27 16:21:17.242042 - step 2 of 120 - 6000 active elements (0 deactivated)
15:21:26 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:26 DEBUG   opendrift:2094: ======================================================================
15:21:26 DEBUG   opendrift:2105:                34.982308286806884 <- latitude -> 35.011001570491274
15:21:26 DEBUG   opendrift:2105:                23.47268115514283 <- longitude -> 23.512026416398076
15:21:26 DEBUG   opendrift:2105:                -149.99007818185459 <- z -> 0.0
15:21:26 DEBUG   opendrift:2106: ---------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:26 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:26 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:26 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 15:00:00 (before)
                2025-09-27 18:00:00 (after)
15:21:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 15:00:00) in space  (linearNDFast)
15:21:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:26 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:26 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 15:00:00, weight 0.55) and
                      after (2025-09-27 18:00:00, weight 0.45) in time
15:21:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:26 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:26 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 15:00:00 (before)
                2025-09-27 18:00:00 (after)
15:21:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 15:00:00) in space  (linearNDFast)
15:21:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:26 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:26 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 15:00:00, weight 0.55) and
                      after (2025-09-27 18:00:00, weight 0.45) in time
15:21:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:26 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:26 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:26 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.299622 (min) -0.0121534 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.0717556 (min) 0.0731016 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.61786 (min) -1.28729 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.50806 (min) -5.03883 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:26 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:26 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.665466, mean: 0.732073, max: 0.810723
15:21:26 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:26 DEBUG   opendrift.models.physics_methods:878:    min: 4.444189, mean: 4.660754, max: 4.905302
15:21:26 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.444189, mean: 4.660754, max: 4.905302
15:21:26 DEBUG   opendrift:689: No elements hit coastline.
15:21:26 DEBUG   opendrift:1683: No elements to deactivate
15:21:26 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:26 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:26 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:26 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:26 DEBUG   opendrift.models.openoil.openoil:866:         Emulsification not yet started
15:21:26 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:26 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:26 DEBUG   opendrift.models.physics_methods:878:    min: 4.444189, mean: 4.660754, max: 4.905302
15:21:26 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:26 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001340, dN_50: 0.000105
15:21:26 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:26 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.011895293968467321
15:21:26 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:26 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:26 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2199 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2196 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2194 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2193 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2191 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2190 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2188 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 5 of 2188 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2183 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 4 of 2183 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2179 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2179 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2180 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2181 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2179 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2177 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2179 surface elements
15:21:26 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2182 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2181 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 6 of 2179 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 4 of 2177 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2173 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2171 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2169 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2166 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2165 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2163 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 4 of 2162 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 5 of 2159 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2156 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2154 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 6 of 2154 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2149 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2149 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2148 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2145 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2146 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 4 of 2144 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2140 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2140 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2139 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2139 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2138 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 5 of 2137 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 4 of 2132 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2128 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2126 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2124 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2125 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2122 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2120 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2119 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2117 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2116 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 5 of 2114 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2109 surface elements
15:21:27 DEBUG   opendrift.models.physics_methods:732: Advecting 2112 of 6000 elements above 0.100m with wind-sheared ocean current (0.037407 m/s - 0.171304 m/s)
15:21:27 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:27 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008780642843447377 and 0.42160714255183607 m/s
15:21:27 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:27 DEBUG   opendrift:2085: ======================================================================
15:21:27 INFO    opendrift:2086: 2025-09-27 17:21:17.242042 - step 3 of 120 - 6000 active elements (0 deactivated)
15:21:27 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:27 DEBUG   opendrift:2094: ======================================================================
15:21:27 DEBUG   opendrift:2105:                34.97210229040398 <- latitude -> 35.0149274918192
15:21:27 DEBUG   opendrift:2105:                23.454884620879838 <- longitude -> 23.51686300015506
15:21:27 DEBUG   opendrift:2105:                -149.53289250869932 <- z -> 0.0
15:21:27 DEBUG   opendrift:2106: ---------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:27 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:27 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 15:00:00 (before)
                2025-09-27 18:00:00 (after)
15:21:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 15:00:00) in space  (linearNDFast)
15:21:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:27 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:27 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 15:00:00, weight 0.22) and
                      after (2025-09-27 18:00:00, weight 0.78) in time
15:21:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:27 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 15:00:00 (before)
                2025-09-27 18:00:00 (after)
15:21:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 15:00:00) in space  (linearNDFast)
15:21:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:27 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:27 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 15:00:00, weight 0.22) and
                      after (2025-09-27 18:00:00, weight 0.78) in time
15:21:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:27 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:27 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:27 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:27 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:27 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:27 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.297853 (min) -0.00437659 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.0910779 (min) 0.0769141 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -2.21465 (min) -1.74931 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.45074 (min) -4.8006 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:27 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:27 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.642300, mean: 0.741907, max: 0.847725
15:21:27 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:27 DEBUG   opendrift.models.physics_methods:878:    min: 4.366149, mean: 4.690977, max: 5.015995
15:21:27 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.366149, mean: 4.690977, max: 5.015995
15:21:27 DEBUG   opendrift:689: No elements hit coastline.
15:21:27 DEBUG   opendrift:1683: No elements to deactivate
15:21:27 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:27 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:27 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:27 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:27 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:27 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:27 DEBUG   opendrift.models.physics_methods:878:    min: 4.366149, mean: 4.690977, max: 5.015995
15:21:27 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:27 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001355, dN_50: 0.000106
15:21:27 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:27 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.012438017413953202
15:21:27 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:27 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:27 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2108 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2109 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2106 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2106 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2105 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 4 of 2105 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2101 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2101 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2103 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2103 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2101 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2100 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2099 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2100 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2101 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2100 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2098 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2098 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 4 of 2099 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2096 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2097 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2097 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2096 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 5 of 2095 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2091 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2088 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2087 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2086 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2085 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2084 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2084 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2084 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2082 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2081 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2080 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2080 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 4 of 2082 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2078 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2078 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2077 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2077 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2076 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2076 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2075 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2072 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2073 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2073 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2073 surface elements
15:21:27 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2073 surface elements
15:21:27 DEBUG   opendrift.models.physics_methods:732: Advecting 2078 of 6000 elements above 0.100m with wind-sheared ocean current (0.029597 m/s - 0.175917 m/s)
15:21:27 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:27 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030852823362920055 and 0.49065842250043995 m/s
15:21:27 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:27 DEBUG   opendrift:2085: ======================================================================
15:21:27 INFO    opendrift:2086: 2025-09-27 18:21:17.242042 - step 4 of 120 - 6000 active elements (0 deactivated)
15:21:27 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:27 DEBUG   opendrift:2094: ======================================================================
15:21:27 DEBUG   opendrift:2105:                34.96365719672603 <- latitude -> 35.02009186607132
15:21:27 DEBUG   opendrift:2105:                23.436901142168058 <- longitude -> 23.52063533262281
15:21:27 DEBUG   opendrift:2105:                -148.8290625237238 <- z -> 0.0
15:21:27 DEBUG   opendrift:2106: ---------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:27 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:27 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:27 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 18:00:00 (before)
                2025-09-27 21:00:00 (after)
15:21:27 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:27 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:27 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:27 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:27 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:27 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 10x9x23) for time after (2025-09-27 21:00:00)
15:21:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:27 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 18:00:00, weight 0.88) and
                      after (2025-09-27 21:00:00, weight 0.12) in time
15:21:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:28 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 18:00:00 (before)
                2025-09-27 21:00:00 (after)
15:21:28 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:28 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:28 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:28 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:28 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:28 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-27 21:00:00)
15:21:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:28 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 18:00:00, weight 0.88) and
                      after (2025-09-27 21:00:00, weight 0.12) in time
15:21:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:28 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:28 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:28 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.290193 (min) -0.001023 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.0975245 (min) 0.0871831 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -2.42115 (min) -1.83 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.17461 (min) -4.31114 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:28 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.540357, mean: 0.658964, max: 0.799862
15:21:28 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:28 DEBUG   opendrift.models.physics_methods:878:    min: 4.004699, mean: 4.419044, max: 4.872335
15:21:28 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.004699, mean: 4.419044, max: 4.872335
15:21:28 DEBUG   opendrift:689: No elements hit coastline.
15:21:28 DEBUG   opendrift:1683: No elements to deactivate
15:21:28 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:28 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:28 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:28 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:28 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:28 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:28 DEBUG   opendrift.models.physics_methods:878:    min: 4.004699, mean: 4.419044, max: 4.872335
15:21:28 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:28 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001499, dN_50: 0.000118
15:21:28 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:28 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.011735999640980354
15:21:28 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:28 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:28 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2072 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2072 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2071 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2071 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2071 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2070 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2069 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2067 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2067 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2068 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2068 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2068 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2067 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2066 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2065 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2067 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2066 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2064 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2063 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2063 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2064 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2067 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2067 surface elements
15:21:28 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2066 surface elements
15:21:28 DEBUG   opendrift.models.physics_methods:732: Advecting 2070 of 6000 elements above 0.100m with wind-sheared ocean current (0.038518 m/s - 0.170183 m/s)
15:21:28 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:28 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001372346384635062 and 0.44324009690596905 m/s
15:21:28 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:28 DEBUG   opendrift:2085: ======================================================================
15:21:28 INFO    opendrift:2086: 2025-09-27 19:21:17.242042 - step 5 of 120 - 6000 active elements (0 deactivated)
15:21:28 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:28 DEBUG   opendrift:2094: ======================================================================
15:21:28 DEBUG   opendrift:2105:                34.9543874418873 <- latitude -> 35.02485925021712
15:21:28 DEBUG   opendrift:2105:                23.420064531261378 <- longitude -> 23.52150061938357
15:21:28 DEBUG   opendrift:2105:                -148.0432569991204 <- z -> 0.0
15:21:28 DEBUG   opendrift:2106: ---------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:28 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:28 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 18:00:00 (before)
                2025-09-27 21:00:00 (after)
15:21:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:28 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 18:00:00, weight 0.55) and
                      after (2025-09-27 21:00:00, weight 0.45) in time
15:21:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:28 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:28 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 18:00:00 (before)
                2025-09-27 21:00:00 (after)
15:21:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:28 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 18:00:00, weight 0.55) and
                      after (2025-09-27 21:00:00, weight 0.45) in time
15:21:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:28 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:28 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:28 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.272336 (min) 0.00784776 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.10803 (min) 0.0922091 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.92682 (min) -1.18051 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.44843 (min) -3.32719 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:28 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:28 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.307795, mean: 0.425589, max: 0.576052
15:21:28 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:28 DEBUG   opendrift.models.physics_methods:878:    min: 3.022460, mean: 3.545766, max: 4.134855
15:21:28 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.022460, mean: 3.545766, max: 4.134855
15:21:28 DEBUG   opendrift:689: No elements hit coastline.
15:21:28 DEBUG   opendrift:1683: No elements to deactivate
15:21:28 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:28 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:28 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:28 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:28 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:28 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:28 DEBUG   opendrift.models.physics_methods:878:    min: 3.022460, mean: 3.545766, max: 4.134855
15:21:28 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:28 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001979, dN_50: 0.000155
15:21:28 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:28 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.00845330940452083
15:21:28 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:28 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:28 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:29 DEBUG   opendrift.models.physics_methods:732: Advecting 2084 of 6000 elements above 0.100m with wind-sheared ocean current (0.007562 m/s - 0.144491 m/s)
15:21:29 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:29 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016222041517496187 and 0.4370340071037648 m/s
15:21:29 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:29 DEBUG   opendrift:2085: ======================================================================
15:21:29 INFO    opendrift:2086: 2025-09-27 20:21:17.242042 - step 6 of 120 - 6000 active elements (0 deactivated)
15:21:29 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:29 DEBUG   opendrift:2094: ======================================================================
15:21:29 DEBUG   opendrift:2105:                34.94657547323031 <- latitude -> 35.02759286583303
15:21:29 DEBUG   opendrift:2105:                23.404046220408098 <- longitude -> 23.5283529623338
15:21:29 DEBUG   opendrift:2105:                -146.96976413765557 <- z -> 0.0
15:21:29 DEBUG   opendrift:2106: ---------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:29 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:29 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 18:00:00 (before)
                2025-09-27 21:00:00 (after)
15:21:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:29 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:29 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 18:00:00, weight 0.22) and
                      after (2025-09-27 21:00:00, weight 0.78) in time
15:21:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:29 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 18:00:00 (before)
                2025-09-27 21:00:00 (after)
15:21:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 18:00:00) in space  (linearNDFast)
15:21:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:29 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:29 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 18:00:00, weight 0.22) and
                      after (2025-09-27 21:00:00, weight 0.78) in time
15:21:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:29 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:29 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:29 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:29 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:29 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:29 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.253395 (min) 0.0159091 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.117748 (min) 0.0959586 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.44124 (min) -0.526004 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -3.72994 (min) -2.35376 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:29 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:29 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.143279, mean: 0.247635, max: 0.389834
15:21:29 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:29 DEBUG   opendrift.models.physics_methods:878:    min: 2.062153, mean: 2.692882, max: 3.401492
15:21:29 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.062153, mean: 2.692882, max: 3.401492
15:21:29 DEBUG   opendrift:689: No elements hit coastline.
15:21:29 DEBUG   opendrift:1683: No elements to deactivate
15:21:29 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:29 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:29 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:29 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:29 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:29 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:29 DEBUG   opendrift.models.physics_methods:878:    min: 2.062153, mean: 2.692882, max: 3.401492
15:21:29 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:29 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002760, dN_50: 0.000217
15:21:29 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:29 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.005722002404877579
15:21:29 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:29 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:29 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:29 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.039854 m/s - 0.118532 m/s)
15:21:29 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:29 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018902470799185673 and 0.484272765339782 m/s
15:21:29 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:29 DEBUG   opendrift:2085: ======================================================================
15:21:29 INFO    opendrift:2086: 2025-09-27 21:21:17.242042 - step 7 of 120 - 6000 active elements (0 deactivated)
15:21:29 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:29 DEBUG   opendrift:2094: ======================================================================
15:21:29 DEBUG   opendrift:2105:                34.94063944195448 <- latitude -> 35.0301643502934
15:21:29 DEBUG   opendrift:2105:                23.390042860597234 <- longitude -> 23.529252644406093
15:21:29 DEBUG   opendrift:2105:                -146.48925293375302 <- z -> 0.0
15:21:29 DEBUG   opendrift:2106: ---------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:29 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:29 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 21:00:00 (before)
                2025-09-28 00:00:00 (after)
15:21:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:29 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:29 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:29 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 11x10x23) for time after (2025-09-28 00:00:00)
15:21:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:29 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:29 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 21:00:00, weight 0.88) and
                      after (2025-09-28 00:00:00, weight 0.12) in time
15:21:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:29 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:29 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 21:00:00 (before)
                2025-09-28 00:00:00 (after)
15:21:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:30 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:30 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:30 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:30 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-28 00:00:00)
15:21:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 21:00:00, weight 0.88) and
                      after (2025-09-28 00:00:00, weight 0.12) in time
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:30 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.233934 (min) 0.0207929 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.129922 (min) 0.0970631 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.29685 (min) -0.222317 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -3.13885 (min) -1.45708 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:30 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.053444, mean: 0.141633, max: 0.279449
15:21:30 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:30 DEBUG   opendrift.models.physics_methods:878:    min: 1.259440, mean: 2.014969, max: 2.879924
15:21:30 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.259440, mean: 2.014969, max: 2.879924
15:21:30 DEBUG   opendrift:689: No elements hit coastline.
15:21:30 DEBUG   opendrift:1683: No elements to deactivate
15:21:30 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:30 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:30 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:30 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:30 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:30 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:30 DEBUG   opendrift.models.physics_methods:878:    min: 1.259440, mean: 2.014969, max: 2.879924
15:21:30 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:30 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.003946, dN_50: 0.000310
15:21:30 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:30 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.004102960766517531
15:21:30 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:30 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:30 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:30 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.065329 m/s - 0.097777 m/s)
15:21:30 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:30 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025584570322253323 and 0.5081921870952719 m/s
15:21:30 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:30 DEBUG   opendrift:2085: ======================================================================
15:21:30 INFO    opendrift:2086: 2025-09-27 22:21:17.242042 - step 8 of 120 - 6000 active elements (0 deactivated)
15:21:30 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:30 DEBUG   opendrift:2094: ======================================================================
15:21:30 DEBUG   opendrift:2105:                34.93105893768453 <- latitude -> 35.03526104369585
15:21:30 DEBUG   opendrift:2105:                23.37445496599064 <- longitude -> 23.528395467006682
15:21:30 DEBUG   opendrift:2105:                -145.4717226716075 <- z -> 0.0
15:21:30 DEBUG   opendrift:2106: ---------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:30 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:30 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 21:00:00 (before)
                2025-09-28 00:00:00 (after)
15:21:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 21:00:00, weight 0.55) and
                      after (2025-09-28 00:00:00, weight 0.45) in time
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:30 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 21:00:00 (before)
                2025-09-28 00:00:00 (after)
15:21:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 21:00:00, weight 0.55) and
                      after (2025-09-28 00:00:00, weight 0.45) in time
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:30 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.216127 (min) 0.0271426 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.150232 (min) 0.102378 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.72587 (min) -0.529518 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -2.59137 (min) -0.840519 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:30 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.024521, mean: 0.100461, max: 0.236169
15:21:30 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:30 DEBUG   opendrift.models.physics_methods:878:    min: 0.853096, mean: 1.666190, max: 2.647529
15:21:30 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.853096, mean: 1.666190, max: 2.647529
15:21:30 DEBUG   opendrift:689: No elements hit coastline.
15:21:30 DEBUG   opendrift:1683: No elements to deactivate
15:21:30 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:30 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:30 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:30 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:30 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:30 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:30 DEBUG   opendrift.models.physics_methods:878:    min: 0.853096, mean: 1.666190, max: 2.647529
15:21:30 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:30 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005150, dN_50: 0.000404
15:21:30 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:30 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.003468151567954593
15:21:30 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:30 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:30 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:30 DEBUG   opendrift.models.physics_methods:732: Advecting 2112 of 6000 elements above 0.100m with wind-sheared ocean current (0.003203 m/s - 0.092953 m/s)
15:21:30 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:30 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00046644282696632 and 0.4751726078838968 m/s
15:21:30 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:30 DEBUG   opendrift:2085: ======================================================================
15:21:30 INFO    opendrift:2086: 2025-09-27 23:21:17.242042 - step 9 of 120 - 6000 active elements (0 deactivated)
15:21:30 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:30 DEBUG   opendrift:2094: ======================================================================
15:21:30 DEBUG   opendrift:2105:                34.92187830048093 <- latitude -> 35.036932836636396
15:21:30 DEBUG   opendrift:2105:                23.371608033639948 <- longitude -> 23.53092067153203
15:21:30 DEBUG   opendrift:2105:                -144.8332473182386 <- z -> 0.0
15:21:30 DEBUG   opendrift:2106: ---------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:30 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:30 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 21:00:00 (before)
                2025-09-28 00:00:00 (after)
15:21:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 21:00:00, weight 0.22) and
                      after (2025-09-28 00:00:00, weight 0.78) in time
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:30 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:30 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-27 21:00:00 (before)
                2025-09-28 00:00:00 (after)
15:21:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-27 21:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-27 21:00:00, weight 0.22) and
                      after (2025-09-28 00:00:00, weight 0.78) in time
15:21:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:30 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:30 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:30 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.199857 (min) 0.0336288 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.168037 (min) 0.108661 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -2.02973 (min) -0.84092 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -2.10008 (min) -0.251712 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:30 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:30 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.019036, mean: 0.081582, max: 0.207568
15:21:30 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:30 DEBUG   opendrift.models.physics_methods:878:    min: 0.751656, mean: 1.476676, max: 2.482048
15:21:30 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.751656, mean: 1.476676, max: 2.482048
15:21:30 DEBUG   opendrift:689: No elements hit coastline.
15:21:30 DEBUG   opendrift:1683: No elements to deactivate
15:21:30 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:30 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:30 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:30 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:30 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:30 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:30 DEBUG   opendrift.models.physics_methods:878:    min: 0.751656, mean: 1.476676, max: 2.482048
15:21:30 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:30 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.006212, dN_50: 0.000488
15:21:30 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:30 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.003048663343277027
15:21:30 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:30 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:30 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:31 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.051445 m/s - 0.084984 m/s)
15:21:31 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:31 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0031513692783781233 and 0.42276818859269666 m/s
15:21:31 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:31 DEBUG   opendrift:2085: ======================================================================
15:21:31 INFO    opendrift:2086: 2025-09-28 00:21:17.242042 - step 10 of 120 - 6000 active elements (0 deactivated)
15:21:31 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:31 DEBUG   opendrift:2094: ======================================================================
15:21:31 DEBUG   opendrift:2105:                34.92236682239595 <- latitude -> 35.04567676860267
15:21:31 DEBUG   opendrift:2105:                23.356018566804124 <- longitude -> 23.536154987194983
15:21:31 DEBUG   opendrift:2105:                -143.98246902149248 <- z -> 0.0
15:21:31 DEBUG   opendrift:2106: ---------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:31 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:31 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:31 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 00:00:00 (before)
                2025-09-28 03:00:00 (after)
15:21:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:31 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:31 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:31 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 11x12x23) for time after (2025-09-28 03:00:00)
15:21:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:31 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:31 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 00:00:00, weight 0.88) and
                      after (2025-09-28 03:00:00, weight 0.12) in time
15:21:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:31 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:31 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 00:00:00 (before)
                2025-09-28 03:00:00 (after)
15:21:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:32 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:32 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:32 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:32 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:32 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-28 03:00:00)
15:21:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:32 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:32 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 00:00:00, weight 0.88) and
                      after (2025-09-28 03:00:00, weight 0.12) in time
15:21:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:32 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:32 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:32 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.192268 (min) 0.0367267 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.182023 (min) 0.117754 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -2.27046 (min) -0.959028 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -1.39875 (min) 0.375608 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:32 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.023733, mean: 0.066588, max: 0.174221
15:21:32 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:32 DEBUG   opendrift.models.physics_methods:878:    min: 0.839278, mean: 1.338099, max: 2.273946
15:21:32 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.839278, mean: 1.338099, max: 2.273946
15:21:32 DEBUG   opendrift:689: No elements hit coastline.
15:21:32 DEBUG   opendrift:1683: No elements to deactivate
15:21:32 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:32 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:32 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:32 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:32 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:32 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:32 DEBUG   opendrift.models.physics_methods:878:    min: 0.839278, mean: 1.338099, max: 2.273946
15:21:32 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:32 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.006894, dN_50: 0.000541
15:21:32 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:32 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.002559552379461413
15:21:32 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:32 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:32 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:32 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.045547 m/s - 0.077218 m/s)
15:21:32 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:32 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012327289283346158 and 0.4569401911207161 m/s
15:21:32 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:32 DEBUG   opendrift:2085: ======================================================================
15:21:32 INFO    opendrift:2086: 2025-09-28 01:21:17.242042 - step 11 of 120 - 6000 active elements (0 deactivated)
15:21:32 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:32 DEBUG   opendrift:2094: ======================================================================
15:21:32 DEBUG   opendrift:2105:                34.9195204152515 <- latitude -> 35.0471993286346
15:21:32 DEBUG   opendrift:2105:                23.34275374650162 <- longitude -> 23.530448475557254
15:21:32 DEBUG   opendrift:2105:                -143.12605795472928 <- z -> 0.0
15:21:32 DEBUG   opendrift:2106: ---------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:32 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:32 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:32 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 00:00:00 (before)
                2025-09-28 03:00:00 (after)
15:21:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:32 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:32 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 00:00:00, weight 0.55) and
                      after (2025-09-28 03:00:00, weight 0.45) in time
15:21:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:32 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:32 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 00:00:00 (before)
                2025-09-28 03:00:00 (after)
15:21:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:32 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:32 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 00:00:00, weight 0.55) and
                      after (2025-09-28 03:00:00, weight 0.45) in time
15:21:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:32 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:32 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:32 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.163975 (min) 0.0325081 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.186538 (min) 0.124431 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -2.05695 (min) -0.702138 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -0.653119 (min) 1.15097 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:32 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:32 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.031785, mean: 0.050151, max: 0.114577
15:21:32 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:32 DEBUG   opendrift.models.physics_methods:878:    min: 0.971276, mean: 1.204816, max: 1.844075
15:21:32 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.971276, mean: 1.204816, max: 1.844075
15:21:32 DEBUG   opendrift:689: No elements hit coastline.
15:21:32 DEBUG   opendrift:1683: No elements to deactivate
15:21:32 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:32 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:32 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:32 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:32 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:32 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:32 DEBUG   opendrift.models.physics_methods:878:    min: 0.971276, mean: 1.204816, max: 1.844075
15:21:32 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:32 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.007132, dN_50: 0.000560
15:21:32 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:32 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.0016847353013692092
15:21:32 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:32 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:32 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:33 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.038854 m/s - 0.062579 m/s)
15:21:33 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:33 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002081735626850855 and 0.4086869855254304 m/s
15:21:33 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:33 DEBUG   opendrift:2085: ======================================================================
15:21:33 INFO    opendrift:2086: 2025-09-28 02:21:17.242042 - step 12 of 120 - 6000 active elements (0 deactivated)
15:21:33 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:33 DEBUG   opendrift:2094: ======================================================================
15:21:33 DEBUG   opendrift:2105:                34.91314175953955 <- latitude -> 35.04589449870058
15:21:33 DEBUG   opendrift:2105:                23.331878967221797 <- longitude -> 23.52789463154674
15:21:33 DEBUG   opendrift:2105:                -142.45555415330318 <- z -> 0.0
15:21:33 DEBUG   opendrift:2106: ---------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:33 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:33 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:33 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:33 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:33 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:33 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:33 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:33 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:33 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:33 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:33 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:33 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:33 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:33 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 00:00:00 (before)
                2025-09-28 03:00:00 (after)
15:21:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:33 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:33 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 00:00:00, weight 0.22) and
                      after (2025-09-28 03:00:00, weight 0.78) in time
15:21:33 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:33 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:33 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:33 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:33 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:33 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 00:00:00 (before)
                2025-09-28 03:00:00 (after)
15:21:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 00:00:00) in space  (linearNDFast)
15:21:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:33 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:33 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 00:00:00, weight 0.22) and
                      after (2025-09-28 03:00:00, weight 0.78) in time
15:21:33 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:33 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:33 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:33 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:33 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:33 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:33 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:33 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.153858 (min) 0.03434 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.205431 (min) 0.127597 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.76467 (min) -0.424376 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 0.0957663 (min) 1.9228 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:33 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:33 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.050019, mean: 0.069278, max: 0.098223
15:21:33 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:33 DEBUG   opendrift.models.physics_methods:878:    min: 1.218422, mean: 1.426665, max: 1.707407
15:21:33 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.218422, mean: 1.426665, max: 1.707407
15:21:33 DEBUG   opendrift:689: No elements hit coastline.
15:21:33 DEBUG   opendrift:1683: No elements to deactivate
15:21:33 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:33 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:33 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:33 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:33 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:33 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:33 DEBUG   opendrift.models.physics_methods:878:    min: 1.218422, mean: 1.426665, max: 1.707407
15:21:33 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:33 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005941, dN_50: 0.000466
15:21:33 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:33 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.001444870099063517
15:21:33 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:33 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:33 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:33 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.042850 m/s - 0.052344 m/s)
15:21:33 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:33 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016644752455382337 and 0.45041203473427394 m/s
15:21:33 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:33 DEBUG   opendrift:2085: ======================================================================
15:21:33 INFO    opendrift:2086: 2025-09-28 03:21:17.242042 - step 13 of 120 - 6000 active elements (0 deactivated)
15:21:33 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:33 DEBUG   opendrift:2094: ======================================================================
15:21:33 DEBUG   opendrift:2105:                34.90838704400784 <- latitude -> 35.05047158952748
15:21:33 DEBUG   opendrift:2105:                23.322569165954345 <- longitude -> 23.526652218701052
15:21:33 DEBUG   opendrift:2105:                -141.5100843624237 <- z -> 0.0
15:21:33 DEBUG   opendrift:2106: ---------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:33 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:33 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:33 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:33 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:33 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:33 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:33 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:33 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:33 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:33 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:33 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:33 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:33 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:33 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:33 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:33 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 03:00:00 (before)
                2025-09-28 06:00:00 (after)
15:21:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:34 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:34 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:34 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:34 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x12x23) for time after (2025-09-28 06:00:00)
15:21:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:34 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:34 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 03:00:00, weight 0.88) and
                      after (2025-09-28 06:00:00, weight 0.12) in time
15:21:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:34 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 03:00:00 (before)
                2025-09-28 06:00:00 (after)
15:21:34 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:34 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:34 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:34 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:34 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:34 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-28 06:00:00)
15:21:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:34 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:34 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 03:00:00, weight 0.88) and
                      after (2025-09-28 06:00:00, weight 0.12) in time
15:21:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:34 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:34 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:34 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.145845 (min) 0.0361467 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.219559 (min) 0.119737 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.51736 (min) -0.172908 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 0.699059 (min) 2.50207 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:34 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.060924, mean: 0.104203, max: 0.156378
15:21:34 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:34 DEBUG   opendrift.models.physics_methods:878:    min: 1.344697, mean: 1.732523, max: 2.154358
15:21:34 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.344697, mean: 1.732523, max: 2.154358
15:21:34 DEBUG   opendrift:689: No elements hit coastline.
15:21:34 DEBUG   opendrift:1683: No elements to deactivate
15:21:34 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:34 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:34 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:34 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:34 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:34 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:34 DEBUG   opendrift.models.physics_methods:878:    min: 1.344697, mean: 1.732523, max: 2.154358
15:21:34 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:34 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004993, dN_50: 0.000392
15:21:34 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:34 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.0022978451121217773
15:21:34 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:34 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:34 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:34 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.047212 m/s - 0.057809 m/s)
15:21:34 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:34 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022634962543542796 and 0.4652281267790299 m/s
15:21:34 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:34 DEBUG   opendrift:2085: ======================================================================
15:21:34 INFO    opendrift:2086: 2025-09-28 04:21:17.242042 - step 14 of 120 - 6000 active elements (0 deactivated)
15:21:34 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:34 DEBUG   opendrift:2094: ======================================================================
15:21:34 DEBUG   opendrift:2105:                34.907522594654274 <- latitude -> 35.05498582116494
15:21:34 DEBUG   opendrift:2105:                23.318422399936075 <- longitude -> 23.524052422233996
15:21:34 DEBUG   opendrift:2105:                -140.5347498973948 <- z -> 0.0
15:21:34 DEBUG   opendrift:2106: ---------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:34 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:34 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 03:00:00 (before)
                2025-09-28 06:00:00 (after)
15:21:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:34 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:34 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 03:00:00, weight 0.55) and
                      after (2025-09-28 06:00:00, weight 0.45) in time
15:21:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:34 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:34 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 03:00:00 (before)
                2025-09-28 06:00:00 (after)
15:21:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:34 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:34 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 03:00:00, weight 0.55) and
                      after (2025-09-28 06:00:00, weight 0.45) in time
15:21:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:34 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:34 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:34 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.119201 (min) 0.0448231 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.237754 (min) 0.0957601 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.28733 (min) 0.0321169 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 0.918477 (min) 2.72767 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:34 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:34 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.056568, mean: 0.117252, max: 0.183110
15:21:34 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:34 DEBUG   opendrift.models.physics_methods:878:    min: 1.295736, mean: 1.828853, max: 2.331235
15:21:34 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.295736, mean: 1.828853, max: 2.331235
15:21:34 DEBUG   opendrift:689: No elements hit coastline.
15:21:35 DEBUG   opendrift:1683: No elements to deactivate
15:21:35 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:35 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:35 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:35 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:35 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:35 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:35 DEBUG   opendrift.models.physics_methods:878:    min: 1.295736, mean: 1.828853, max: 2.331235
15:21:35 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:35 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004824, dN_50: 0.000379
15:21:35 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:35 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.002689930495836295
15:21:35 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:35 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:35 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:35 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.045493 m/s - 0.062700 m/s)
15:21:35 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:35 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009287328801532704 and 0.4216900599101886 m/s
15:21:35 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:35 DEBUG   opendrift:2085: ======================================================================
15:21:35 INFO    opendrift:2086: 2025-09-28 05:21:17.242042 - step 15 of 120 - 6000 active elements (0 deactivated)
15:21:35 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:35 DEBUG   opendrift:2094: ======================================================================
15:21:35 DEBUG   opendrift:2105:                34.907562535040476 <- latitude -> 35.06118711045879
15:21:35 DEBUG   opendrift:2105:                23.319161942419647 <- longitude -> 23.522606291463287
15:21:35 DEBUG   opendrift:2105:                -139.86553526684196 <- z -> 0.0
15:21:35 DEBUG   opendrift:2106: ---------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:35 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:35 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:35 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:35 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:35 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:35 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:35 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:35 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:35 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:35 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:35 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:35 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:35 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:35 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 03:00:00 (before)
                2025-09-28 06:00:00 (after)
15:21:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:35 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:35 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:35 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:35 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 03:00:00, weight 0.22) and
                      after (2025-09-28 06:00:00, weight 0.78) in time
15:21:35 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:35 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:35 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:35 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:35 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:35 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 03:00:00 (before)
                2025-09-28 06:00:00 (after)
15:21:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 03:00:00) in space  (linearNDFast)
15:21:35 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:35 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:35 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:35 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 03:00:00, weight 0.22) and
                      after (2025-09-28 06:00:00, weight 0.78) in time
15:21:35 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:35 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:35 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:35 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:35 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:35 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:35 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:35 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0914797 (min) 0.0496316 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.24922 (min) 0.0769316 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.0179 (min) 0.238798 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 1.13316 (min) 2.96887 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:35 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:35 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.057076, mean: 0.136009, max: 0.217424
15:21:35 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:35 DEBUG   opendrift.models.physics_methods:878:    min: 1.301540, mean: 1.965720, max: 2.540289
15:21:35 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.301540, mean: 1.965720, max: 2.540289
15:21:35 DEBUG   opendrift:689: No elements hit coastline.
15:21:35 DEBUG   opendrift:1683: No elements to deactivate
15:21:35 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:35 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:35 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:35 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:35 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:35 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:35 DEBUG   opendrift.models.physics_methods:878:    min: 1.301540, mean: 1.965720, max: 2.540289
15:21:35 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:35 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004542, dN_50: 0.000356
15:21:35 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:35 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.003193215753217276
15:21:35 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:35 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:35 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:35 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.045771 m/s - 0.068246 m/s)
15:21:35 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:35 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021050104929144866 and 0.47120611393306744 m/s
15:21:35 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:35 DEBUG   opendrift:2085: ======================================================================
15:21:35 INFO    opendrift:2086: 2025-09-28 06:21:17.242042 - step 16 of 120 - 6000 active elements (0 deactivated)
15:21:35 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:35 DEBUG   opendrift:2094: ======================================================================
15:21:35 DEBUG   opendrift:2105:                34.902036476580875 <- latitude -> 35.0627148349553
15:21:35 DEBUG   opendrift:2105:                23.31908356808199 <- longitude -> 23.521700873368395
15:21:35 DEBUG   opendrift:2105:                -138.66071387450467 <- z -> 0.0
15:21:35 DEBUG   opendrift:2106: ---------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:35 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:35 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:35 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:35 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:35 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:35 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:35 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:35 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:35 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:35 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:35 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:35 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:35 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:35 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:35 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:35 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 06:00:00 (before)
                2025-09-28 09:00:00 (after)
15:21:35 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:35 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:36 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:36 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:36 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:36 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x12x23) for time after (2025-09-28 09:00:00)
15:21:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:36 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:36 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 06:00:00, weight 0.88) and
                      after (2025-09-28 09:00:00, weight 0.12) in time
15:21:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:36 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:36 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 06:00:00 (before)
                2025-09-28 09:00:00 (after)
15:21:36 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:36 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:36 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:36 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:36 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:36 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-28 09:00:00)
15:21:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:36 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:36 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 06:00:00, weight 0.88) and
                      after (2025-09-28 09:00:00, weight 0.12) in time
15:21:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:36 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:36 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:36 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:36 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0940096 (min) 0.0549721 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.25894 (min) 0.0533693 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.780393 (min) 0.333739 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 1.62088 (min) 3.41837 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:36 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:36 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.079612, mean: 0.191632, max: 0.289965
15:21:36 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:36 DEBUG   opendrift.models.physics_methods:878:    min: 1.537158, mean: 2.345357, max: 2.933610
15:21:36 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.537158, mean: 2.345357, max: 2.933610
15:21:36 DEBUG   opendrift:689: No elements hit coastline.
15:21:36 DEBUG   opendrift:1683: No elements to deactivate
15:21:36 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:36 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:36 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:36 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:36 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:36 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:36 DEBUG   opendrift.models.physics_methods:878:    min: 1.537158, mean: 2.345357, max: 2.933610
15:21:36 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:36 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.003761, dN_50: 0.000295
15:21:36 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:36 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.004257196718183111
15:21:36 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:36 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:36 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:37 DEBUG   opendrift.models.physics_methods:732: Advecting 2111 of 6000 elements above 0.100m with wind-sheared ocean current (0.056222 m/s - 0.084026 m/s)
15:21:37 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:37 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014494091226621582 and 0.4697654080508513 m/s
15:21:37 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:37 DEBUG   opendrift:2085: ======================================================================
15:21:37 INFO    opendrift:2086: 2025-09-28 07:21:17.242042 - step 17 of 120 - 6000 active elements (0 deactivated)
15:21:37 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:37 DEBUG   opendrift:2094: ======================================================================
15:21:37 DEBUG   opendrift:2105:                34.90190320978825 <- latitude -> 35.06282170156644
15:21:37 DEBUG   opendrift:2105:                23.317155895690046 <- longitude -> 23.52447377704021
15:21:37 DEBUG   opendrift:2105:                -137.97895600847428 <- z -> 0.0
15:21:37 DEBUG   opendrift:2106: ---------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:37 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:37 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 06:00:00 (before)
                2025-09-28 09:00:00 (after)
15:21:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:37 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:37 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 06:00:00, weight 0.55) and
                      after (2025-09-28 09:00:00, weight 0.45) in time
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:37 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 06:00:00 (before)
                2025-09-28 09:00:00 (after)
15:21:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:37 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:37 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 06:00:00, weight 0.55) and
                      after (2025-09-28 09:00:00, weight 0.45) in time
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:37 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:37 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:37 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:37 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:37 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0859967 (min) 0.0742566 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.261033 (min) 0.031544 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.518238 (min) 0.293434 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.56003 (min) 4.25842 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:37 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.167830, mean: 0.334522, max: 0.447883
15:21:37 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:37 DEBUG   opendrift.models.physics_methods:878:    min: 2.231844, mean: 3.125096, max: 3.645960
15:21:37 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.231844, mean: 3.125096, max: 3.645960
15:21:37 DEBUG   opendrift:689: No elements hit coastline.
15:21:37 DEBUG   opendrift:1683: No elements to deactivate
15:21:37 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:37 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:37 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:37 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:37 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:37 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:37 DEBUG   opendrift.models.physics_methods:878:    min: 2.231844, mean: 3.125096, max: 3.645960
15:21:37 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:37 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002771, dN_50: 0.000217
15:21:37 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:37 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.006573424274444941
15:21:37 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:37 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:37 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:37 DEBUG   opendrift.models.physics_methods:732: Advecting 2136 of 6000 elements above 0.100m with wind-sheared ocean current (0.012146 m/s - 0.112535 m/s)
15:21:37 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:37 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001536612797264656 and 0.45746952247171574 m/s
15:21:37 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:37 DEBUG   opendrift:2085: ======================================================================
15:21:37 INFO    opendrift:2086: 2025-09-28 08:21:17.242042 - step 18 of 120 - 6000 active elements (0 deactivated)
15:21:37 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:37 DEBUG   opendrift:2094: ======================================================================
15:21:37 DEBUG   opendrift:2105:                34.89092805871726 <- latitude -> 35.06395688177208
15:21:37 DEBUG   opendrift:2105:                23.32034061724031 <- longitude -> 23.525372023495763
15:21:37 DEBUG   opendrift:2105:                -137.17515846273864 <- z -> 0.0
15:21:37 DEBUG   opendrift:2106: ---------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:37 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:37 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 06:00:00 (before)
                2025-09-28 09:00:00 (after)
15:21:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:37 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:37 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 06:00:00, weight 0.22) and
                      after (2025-09-28 09:00:00, weight 0.78) in time
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:37 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 06:00:00 (before)
                2025-09-28 09:00:00 (after)
15:21:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 06:00:00) in space  (linearNDFast)
15:21:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:37 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:37 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 06:00:00, weight 0.22) and
                      after (2025-09-28 09:00:00, weight 0.78) in time
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:37 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:37 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:37 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:37 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:37 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.098584 (min) 0.0860279 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.270893 (min) 0.0122858 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.236436 (min) 0.338131 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.51837 (min) 5.1379 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:37 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:37 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.305863, mean: 0.521194, max: 0.649491
15:21:37 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:37 DEBUG   opendrift.models.physics_methods:878:    min: 3.012960, mean: 3.916467, max: 4.390520
15:21:37 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.012960, mean: 3.916467, max: 4.390520
15:21:37 DEBUG   opendrift:689: No elements hit coastline.
15:21:37 DEBUG   opendrift:1683: No elements to deactivate
15:21:37 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:37 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:37 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:37 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:37 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:37 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:37 DEBUG   opendrift.models.physics_methods:878:    min: 3.012959, mean: 3.916467, max: 4.390521
15:21:37 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:37 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002239, dN_50: 0.000176
15:21:37 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:37 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.009530457879678276
15:21:37 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:37 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:37 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:37 DEBUG   opendrift.models.physics_methods:732: Advecting 2151 of 6000 elements above 0.100m with wind-sheared ocean current (0.108874 m/s - 0.138446 m/s)
15:21:37 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:37 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015994281269202948 and 0.4697421923561874 m/s
15:21:37 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:37 DEBUG   opendrift:2085: ======================================================================
15:21:37 INFO    opendrift:2086: 2025-09-28 09:21:17.242042 - step 19 of 120 - 6000 active elements (0 deactivated)
15:21:37 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:37 DEBUG   opendrift:2094: ======================================================================
15:21:37 DEBUG   opendrift:2105:                34.88345764118042 <- latitude -> 35.069409457869696
15:21:37 DEBUG   opendrift:2105:                23.3206116915265 <- longitude -> 23.523067032995716
15:21:37 DEBUG   opendrift:2105:                -136.42643219642895 <- z -> 0.0
15:21:37 DEBUG   opendrift:2106: ---------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:37 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:37 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:37 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 09:00:00 (before)
                2025-09-28 12:00:00 (after)
15:21:37 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:37 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:38 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:38 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:38 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:38 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x12x23) for time after (2025-09-28 12:00:00)
15:21:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:38 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:38 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 09:00:00, weight 0.88) and
                      after (2025-09-28 12:00:00, weight 0.12) in time
15:21:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:38 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:38 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 09:00:00 (before)
                2025-09-28 12:00:00 (after)
15:21:38 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:38 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:38 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:38 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:38 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:38 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-28 12:00:00)
15:21:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:38 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:38 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 09:00:00, weight 0.88) and
                      after (2025-09-28 12:00:00, weight 0.12) in time
15:21:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:38 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:38 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:38 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.111829 (min) 0.0717104 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.276247 (min) 0.0258604 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.480963 (min) 0.109156 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.9333 (min) 5.35384 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:38 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:38 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.386274, mean: 0.596313, max: 0.710071
15:21:38 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:38 DEBUG   opendrift.models.physics_methods:878:    min: 3.385926, mean: 4.197300, max: 4.590717
15:21:38 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.385926, mean: 4.197300, max: 4.590717
15:21:38 DEBUG   opendrift:689: No elements hit coastline.
15:21:38 DEBUG   opendrift:1683: No elements to deactivate
15:21:38 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:38 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:38 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:38 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:38 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:38 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:38 DEBUG   opendrift.models.physics_methods:878:    min: 3.385926, mean: 4.197300, max: 4.590717
15:21:38 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:38 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002167, dN_50: 0.000170
15:21:38 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:38 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.010419010642820753
15:21:38 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:38 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:38 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:38 DEBUG   opendrift.models.physics_methods:732: Advecting 2166 of 6000 elements above 0.100m with wind-sheared ocean current (0.089669 m/s - 0.149206 m/s)
15:21:38 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:38 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003047104231753306 and 0.4334800333632837 m/s
15:21:38 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:38 DEBUG   opendrift:2085: ======================================================================
15:21:38 INFO    opendrift:2086: 2025-09-28 10:21:17.242042 - step 20 of 120 - 6000 active elements (0 deactivated)
15:21:38 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:38 DEBUG   opendrift:2094: ======================================================================
15:21:38 DEBUG   opendrift:2105:                34.87741800234471 <- latitude -> 35.065736887776524
15:21:38 DEBUG   opendrift:2105:                23.320507120417318 <- longitude -> 23.52704764293863
15:21:38 DEBUG   opendrift:2105:                -135.69541970914042 <- z -> 0.0
15:21:38 DEBUG   opendrift:2106: ---------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:38 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:38 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:38 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 09:00:00 (before)
                2025-09-28 12:00:00 (after)
15:21:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:39 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:39 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 09:00:00, weight 0.55) and
                      after (2025-09-28 12:00:00, weight 0.45) in time
15:21:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:39 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 09:00:00 (before)
                2025-09-28 12:00:00 (after)
15:21:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:39 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:39 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 09:00:00, weight 0.55) and
                      after (2025-09-28 12:00:00, weight 0.45) in time
15:21:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:39 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:39 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:39 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:39 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:39 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:39 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.121053 (min) 0.0425865 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.280814 (min) 0.0738198 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.63834 (min) -0.98801 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.31545 (min) 4.35461 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:39 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.327636, mean: 0.467832, max: 0.532033
15:21:39 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:39 DEBUG   opendrift.models.physics_methods:878:    min: 3.118356, mean: 3.722775, max: 3.973735
15:21:39 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.118356, mean: 3.722775, max: 3.973735
15:21:39 DEBUG   opendrift:689: No elements hit coastline.
15:21:39 DEBUG   opendrift:1683: No elements to deactivate
15:21:39 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:39 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:39 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:39 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:39 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:39 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:39 DEBUG   opendrift.models.physics_methods:878:    min: 3.118356, mean: 3.722775, max: 3.973736
15:21:39 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:39 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002540, dN_50: 0.000199
15:21:39 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:39 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007807677670304144
15:21:39 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:39 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:39 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:39 DEBUG   opendrift.models.physics_methods:732: Advecting 2172 of 6000 elements above 0.100m with wind-sheared ocean current (0.110117 m/s - 0.132128 m/s)
15:21:39 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:39 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0035448048437670067 and 0.4360793157899185 m/s
15:21:39 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:39 DEBUG   opendrift:2085: ======================================================================
15:21:39 INFO    opendrift:2086: 2025-09-28 11:21:17.242042 - step 21 of 120 - 6000 active elements (0 deactivated)
15:21:39 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:39 DEBUG   opendrift:2094: ======================================================================
15:21:39 DEBUG   opendrift:2105:                34.86768863395376 <- latitude -> 35.07038945779368
15:21:39 DEBUG   opendrift:2105:                23.319019499241183 <- longitude -> 23.528872904786187
15:21:39 DEBUG   opendrift:2105:                -134.97969614348915 <- z -> 0.0
15:21:39 DEBUG   opendrift:2106: ---------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:39 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:39 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 09:00:00 (before)
                2025-09-28 12:00:00 (after)
15:21:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:39 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:39 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 09:00:00, weight 0.22) and
                      after (2025-09-28 12:00:00, weight 0.78) in time
15:21:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:39 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 09:00:00 (before)
                2025-09-28 12:00:00 (after)
15:21:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 09:00:00) in space  (linearNDFast)
15:21:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:39 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:39 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 09:00:00, weight 0.22) and
                      after (2025-09-28 12:00:00, weight 0.78) in time
15:21:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:39 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:39 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:39 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:39 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:39 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:39 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.153722 (min) 0.0328513 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.283122 (min) 0.131771 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -2.82523 (min) -2.05482 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.65295 (min) 3.42646 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:39 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:39 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.338279, mean: 0.435452, max: 0.472300
15:21:39 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:39 DEBUG   opendrift.models.physics_methods:878:    min: 3.168598, mean: 3.594252, max: 3.744023
15:21:39 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.168598, mean: 3.594252, max: 3.744023
15:21:39 DEBUG   opendrift:689: No elements hit coastline.
15:21:39 DEBUG   opendrift:1683: No elements to deactivate
15:21:39 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:39 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:39 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:39 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:39 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:39 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:39 DEBUG   opendrift.models.physics_methods:878:    min: 3.168598, mean: 3.594252, max: 3.744023
15:21:39 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:39 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002727, dN_50: 0.000214
15:21:39 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:39 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.006931554902809185
15:21:39 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:39 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:39 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:39 DEBUG   opendrift.models.physics_methods:732: Advecting 2183 of 6000 elements above 0.100m with wind-sheared ocean current (0.012882 m/s - 0.129116 m/s)
15:21:39 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:39 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017110831770266116 and 0.4204714976839166 m/s
15:21:39 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:39 DEBUG   opendrift:2085: ======================================================================
15:21:39 INFO    opendrift:2086: 2025-09-28 12:21:17.242042 - step 22 of 120 - 6000 active elements (0 deactivated)
15:21:39 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:39 DEBUG   opendrift:2094: ======================================================================
15:21:39 DEBUG   opendrift:2105:                34.85674655243964 <- latitude -> 35.077038080036395
15:21:39 DEBUG   opendrift:2105:                23.312580534592975 <- longitude -> 23.53107574027649
15:21:39 DEBUG   opendrift:2105:                -133.75757629876566 <- z -> 0.0
15:21:39 DEBUG   opendrift:2106: ---------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:39 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:39 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:39 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 12:00:00 (before)
                2025-09-28 15:00:00 (after)
15:21:39 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:40 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:40 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:40 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:40 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:40 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x13x23) for time after (2025-09-28 15:00:00)
15:21:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:40 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:40 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 12:00:00, weight 0.88) and
                      after (2025-09-28 15:00:00, weight 0.12) in time
15:21:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:40 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:40 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 12:00:00 (before)
                2025-09-28 15:00:00 (after)
15:21:40 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:40 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:40 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:40 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:40 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:40 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-28 15:00:00)
15:21:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:40 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:40 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 12:00:00, weight 0.88) and
                      after (2025-09-28 15:00:00, weight 0.12) in time
15:21:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:40 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:40 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:40 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:40 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.16541 (min) 0.0235336 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.281994 (min) 0.181731 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -3.60078 (min) -2.62387 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.20076 (min) 3.15613 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:40 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:40 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.377835, mean: 0.459783, max: 0.498242
15:21:40 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:40 DEBUG   opendrift.models.physics_methods:878:    min: 3.348736, mean: 3.693451, max: 3.845473
15:21:40 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.348736, mean: 3.693451, max: 3.845473
15:21:40 DEBUG   opendrift:689: No elements hit coastline.
15:21:40 DEBUG   opendrift:1683: No elements to deactivate
15:21:40 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:40 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:40 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:41 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:41 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:41 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:41 DEBUG   opendrift.models.physics_methods:878:    min: 3.348736, mean: 3.693451, max: 3.845473
15:21:41 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:41 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002774, dN_50: 0.000218
15:21:41 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:41 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007312054234916779
15:21:41 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:41 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:41 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:41 DEBUG   opendrift.models.physics_methods:732: Advecting 2194 of 6000 elements above 0.100m with wind-sheared ocean current (0.005100 m/s - 0.133809 m/s)
15:21:41 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:41 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002254284188449877 and 0.46703914057069296 m/s
15:21:41 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:41 DEBUG   opendrift:2085: ======================================================================
15:21:41 INFO    opendrift:2086: 2025-09-28 13:21:17.242042 - step 23 of 120 - 6000 active elements (0 deactivated)
15:21:41 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:41 DEBUG   opendrift:2094: ======================================================================
15:21:41 DEBUG   opendrift:2105:                34.84902030057244 <- latitude -> 35.08090115211188
15:21:41 DEBUG   opendrift:2105:                23.30125398987718 <- longitude -> 23.529216657159775
15:21:41 DEBUG   opendrift:2105:                -132.88982755640873 <- z -> 0.0
15:21:41 DEBUG   opendrift:2106: ---------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:41 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:41 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 12:00:00 (before)
                2025-09-28 15:00:00 (after)
15:21:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:41 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:41 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 12:00:00, weight 0.55) and
                      after (2025-09-28 15:00:00, weight 0.45) in time
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:41 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 12:00:00 (before)
                2025-09-28 15:00:00 (after)
15:21:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:41 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:41 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 12:00:00, weight 0.55) and
                      after (2025-09-28 15:00:00, weight 0.45) in time
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:41 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:41 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:41 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:41 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:41 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.130072 (min) 0.0118495 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.28501 (min) 0.183227 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -3.61836 (min) -2.36295 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.38168 (min) 3.20753 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:41 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.373142, mean: 0.441823, max: 0.500349
15:21:41 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:41 DEBUG   opendrift.models.physics_methods:878:    min: 3.327870, mean: 3.620212, max: 3.853595
15:21:41 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.327870, mean: 3.620212, max: 3.853595
15:21:41 DEBUG   opendrift:689: No elements hit coastline.
15:21:41 DEBUG   opendrift:1683: No elements to deactivate
15:21:41 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:41 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:41 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:41 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:41 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:41 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:41 DEBUG   opendrift.models.physics_methods:878:    min: 3.327870, mean: 3.620212, max: 3.853595
15:21:41 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:41 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002972, dN_50: 0.000233
15:21:41 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:41 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007342954926454348
15:21:41 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:41 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:41 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:41 DEBUG   opendrift.models.physics_methods:732: Advecting 2199 of 6000 elements above 0.100m with wind-sheared ocean current (0.068032 m/s - 0.131370 m/s)
15:21:41 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:41 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0019022567265625375 and 0.44246181450760974 m/s
15:21:41 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:41 DEBUG   opendrift:2085: ======================================================================
15:21:41 INFO    opendrift:2086: 2025-09-28 14:21:17.242042 - step 24 of 120 - 6000 active elements (0 deactivated)
15:21:41 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:41 DEBUG   opendrift:2094: ======================================================================
15:21:41 DEBUG   opendrift:2105:                34.843223082128716 <- latitude -> 35.08810459271744
15:21:41 DEBUG   opendrift:2105:                23.2931730951982 <- longitude -> 23.52652125672944
15:21:41 DEBUG   opendrift:2105:                -131.60959694557042 <- z -> 0.0
15:21:41 DEBUG   opendrift:2106: ---------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:41 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:41 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 12:00:00 (before)
                2025-09-28 15:00:00 (after)
15:21:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:41 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:41 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 12:00:00, weight 0.22) and
                      after (2025-09-28 15:00:00, weight 0.78) in time
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:41 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 12:00:00 (before)
                2025-09-28 15:00:00 (after)
15:21:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 12:00:00) in space  (linearNDFast)
15:21:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:41 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:41 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 12:00:00, weight 0.22) and
                      after (2025-09-28 15:00:00, weight 0.78) in time
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:41 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:41 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:41 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:41 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:41 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.116134 (min) -0.000375004 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.273441 (min) 0.172743 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -3.63036 (min) -2.08219 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.54698 (min) 3.24699 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:41 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:41 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.348651, mean: 0.423529, max: 0.501328
15:21:41 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:41 DEBUG   opendrift.models.physics_methods:878:    min: 3.216807, mean: 3.543909, max: 3.857365
15:21:41 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.216807, mean: 3.543909, max: 3.857365
15:21:41 DEBUG   opendrift:689: No elements hit coastline.
15:21:41 DEBUG   opendrift:1683: No elements to deactivate
15:21:41 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:41 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:41 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:41 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:41 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:41 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:41 DEBUG   opendrift.models.physics_methods:878:    min: 3.216807, mean: 3.543909, max: 3.857365
15:21:41 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:41 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.003185, dN_50: 0.000250
15:21:41 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:41 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007357322688131372
15:21:41 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:41 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:41 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:41 DEBUG   opendrift.models.physics_methods:732: Advecting 2207 of 6000 elements above 0.100m with wind-sheared ocean current (0.023469 m/s - 0.129238 m/s)
15:21:41 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:41 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016767608448967815 and 0.4674749268040271 m/s
15:21:41 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:41 DEBUG   opendrift:2085: ======================================================================
15:21:41 INFO    opendrift:2086: 2025-09-28 15:21:17.242042 - step 25 of 120 - 6000 active elements (0 deactivated)
15:21:41 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:41 DEBUG   opendrift:2094: ======================================================================
15:21:41 DEBUG   opendrift:2105:                34.839066181024016 <- latitude -> 35.10099775727276
15:21:41 DEBUG   opendrift:2105:                23.292332894902106 <- longitude -> 23.528637303557044
15:21:41 DEBUG   opendrift:2105:                -130.94037242875612 <- z -> 0.0
15:21:41 DEBUG   opendrift:2106: ---------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:41 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:41 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:41 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 15:00:00 (before)
                2025-09-28 18:00:00 (after)
15:21:41 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:42 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:42 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:42 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:42 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:42 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x15x23) for time after (2025-09-28 18:00:00)
15:21:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:42 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:42 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:42 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:42 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 15:00:00, weight 0.88) and
                      after (2025-09-28 18:00:00, weight 0.12) in time
15:21:42 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:42 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:42 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:42 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:42 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:42 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:42 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:42 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:42 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:42 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:42 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 15:00:00 (before)
                2025-09-28 18:00:00 (after)
15:21:42 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:42 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:42 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:42 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:42 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:42 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-28 18:00:00)
15:21:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:42 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:42 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:42 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:42 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 15:00:00, weight 0.88) and
                      after (2025-09-28 18:00:00, weight 0.12) in time
15:21:42 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:42 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:42 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:42 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:42 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:42 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:42 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:42 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:42 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.120911 (min) -0.00586326 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.275363 (min) 0.181302 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -3.6842 (min) -1.92672 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.57667 (min) 3.25717 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:42 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:42 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.340828, mean: 0.417515, max: 0.509501
15:21:42 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:42 DEBUG   opendrift.models.physics_methods:878:    min: 3.180514, mean: 3.518319, max: 3.888680
15:21:42 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.180514, mean: 3.518319, max: 3.888680
15:21:42 DEBUG   opendrift:689: No elements hit coastline.
15:21:42 DEBUG   opendrift:1683: No elements to deactivate
15:21:42 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:42 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:42 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:42 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:42 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:42 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:42 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:42 DEBUG   opendrift.models.physics_methods:878:    min: 3.180514, mean: 3.518319, max: 3.888680
15:21:42 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:42 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.003368, dN_50: 0.000264
15:21:42 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:42 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007477197116640166
15:21:42 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:42 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:42 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:43 DEBUG   opendrift.models.physics_methods:732: Advecting 2211 of 6000 elements above 0.100m with wind-sheared ocean current (0.077090 m/s - 0.128339 m/s)
15:21:43 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:43 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0037736568903420273 and 0.46058579467491984 m/s
15:21:43 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:43 DEBUG   opendrift:2085: ======================================================================
15:21:43 INFO    opendrift:2086: 2025-09-28 16:21:17.242042 - step 26 of 120 - 6000 active elements (0 deactivated)
15:21:43 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:43 DEBUG   opendrift:2094: ======================================================================
15:21:43 DEBUG   opendrift:2105:                34.827260640065575 <- latitude -> 35.107552082113344
15:21:43 DEBUG   opendrift:2105:                23.281526015416958 <- longitude -> 23.53137225633247
15:21:43 DEBUG   opendrift:2105:                -129.9170411150547 <- z -> 0.0
15:21:43 DEBUG   opendrift:2106: ---------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:43 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:43 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 15:00:00 (before)
                2025-09-28 18:00:00 (after)
15:21:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:43 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:43 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 15:00:00, weight 0.55) and
                      after (2025-09-28 18:00:00, weight 0.45) in time
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:43 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 15:00:00 (before)
                2025-09-28 18:00:00 (after)
15:21:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:43 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:43 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 15:00:00, weight 0.55) and
                      after (2025-09-28 18:00:00, weight 0.45) in time
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:43 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:43 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:43 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:43 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:43 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.135402 (min) 0.00120446 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.267918 (min) 0.158105 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -3.81427 (min) -2.06653 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.44201 (min) 3.29475 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:43 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.362661, mean: 0.434503, max: 0.528003
15:21:43 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:43 DEBUG   opendrift.models.physics_methods:878:    min: 3.280800, mean: 3.589337, max: 3.958656
15:21:43 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.280800, mean: 3.589337, max: 3.958656
15:21:43 DEBUG   opendrift:689: No elements hit coastline.
15:21:43 DEBUG   opendrift:1683: No elements to deactivate
15:21:43 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:43 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:43 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:43 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:43 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:43 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:43 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:43 DEBUG   opendrift.models.physics_methods:878:    min: 3.280800, mean: 3.589338, max: 3.958656
15:21:43 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:43 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.003475, dN_50: 0.000273
15:21:43 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:43 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.00774856544991084
15:21:43 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:43 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:43 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:43 DEBUG   opendrift.models.physics_methods:732: Advecting 2218 of 6000 elements above 0.100m with wind-sheared ocean current (0.071508 m/s - 0.128658 m/s)
15:21:43 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:43 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.005056753361695386 and 0.4503877502018274 m/s
15:21:43 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:43 DEBUG   opendrift:2085: ======================================================================
15:21:43 INFO    opendrift:2086: 2025-09-28 17:21:17.242042 - step 27 of 120 - 6000 active elements (0 deactivated)
15:21:43 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:43 DEBUG   opendrift:2094: ======================================================================
15:21:43 DEBUG   opendrift:2105:                34.821328076052595 <- latitude -> 35.11734798384016
15:21:43 DEBUG   opendrift:2105:                23.273434350699965 <- longitude -> 23.523802016406226
15:21:43 DEBUG   opendrift:2105:                -128.83530452295176 <- z -> 0.0
15:21:43 DEBUG   opendrift:2106: ---------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:43 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:43 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 15:00:00 (before)
                2025-09-28 18:00:00 (after)
15:21:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:43 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:43 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 15:00:00, weight 0.22) and
                      after (2025-09-28 18:00:00, weight 0.78) in time
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:43 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 15:00:00 (before)
                2025-09-28 18:00:00 (after)
15:21:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 15:00:00) in space  (linearNDFast)
15:21:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:43 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:43 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 15:00:00, weight 0.22) and
                      after (2025-09-28 18:00:00, weight 0.78) in time
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:43 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:43 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:43 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:43 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:43 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.143706 (min) 0.0277601 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.269171 (min) 0.14594 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -3.90658 (min) -2.15085 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.27363 (min) 3.37571 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:43 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:43 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.361390, mean: 0.452533, max: 0.541114
15:21:43 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:43 DEBUG   opendrift.models.physics_methods:878:    min: 3.275047, mean: 3.662954, max: 4.007505
15:21:43 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.275047, mean: 3.662954, max: 4.007505
15:21:43 DEBUG   opendrift:689: No elements hit coastline.
15:21:43 DEBUG   opendrift:1683: No elements to deactivate
15:21:43 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:43 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:43 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:43 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:43 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:43 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:43 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:43 DEBUG   opendrift.models.physics_methods:878:    min: 3.275047, mean: 3.662954, max: 4.007505
15:21:43 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:43 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.003597, dN_50: 0.000282
15:21:43 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:43 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007940871871493336
15:21:43 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:43 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:43 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:43 DEBUG   opendrift.models.physics_methods:732: Advecting 2229 of 6000 elements above 0.100m with wind-sheared ocean current (0.033422 m/s - 0.130270 m/s)
15:21:43 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:43 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009935982174706624 and 0.4041418778167985 m/s
15:21:43 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:43 DEBUG   opendrift:2085: ======================================================================
15:21:43 INFO    opendrift:2086: 2025-09-28 18:21:17.242042 - step 28 of 120 - 6000 active elements (0 deactivated)
15:21:43 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:43 DEBUG   opendrift:2094: ======================================================================
15:21:43 DEBUG   opendrift:2105:                34.816491034975485 <- latitude -> 35.12413387666305
15:21:43 DEBUG   opendrift:2105:                23.26935737301726 <- longitude -> 23.522963976386492
15:21:43 DEBUG   opendrift:2105:                -128.15490787635704 <- z -> 0.0
15:21:43 DEBUG   opendrift:2106: ---------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:43 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:43 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:43 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:43 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:43 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:43 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:43 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:43 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:43 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 18:00:00 (before)
                2025-09-28 21:00:00 (after)
15:21:43 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:44 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:44 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:44 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:44 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:44 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:44 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x16x23) for time after (2025-09-28 21:00:00)
15:21:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:44 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:44 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:44 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:44 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 18:00:00, weight 0.88) and
                      after (2025-09-28 21:00:00, weight 0.12) in time
15:21:44 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:44 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:44 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:44 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:44 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:44 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:44 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:44 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:44 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:44 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:44 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 18:00:00 (before)
                2025-09-28 21:00:00 (after)
15:21:44 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:44 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:44 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:44 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:44 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:44 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-28 21:00:00)
15:21:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:44 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:44 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:44 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:44 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 18:00:00, weight 0.88) and
                      after (2025-09-28 21:00:00, weight 0.12) in time
15:21:44 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:44 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:44 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:44 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:44 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:44 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:44 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:44 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:44 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.149439 (min) 0.0538376 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.274891 (min) 0.136081 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -3.61471 (min) -1.98198 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.34031 (min) 3.50369 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:44 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:44 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.348625, mean: 0.432937, max: 0.500928
15:21:44 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:44 DEBUG   opendrift.models.physics_methods:878:    min: 3.216686, mean: 3.583545, max: 3.855825
15:21:44 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.216686, mean: 3.583545, max: 3.855825
15:21:44 DEBUG   opendrift:689: No elements hit coastline.
15:21:44 DEBUG   opendrift:1683: No elements to deactivate
15:21:44 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:44 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:44 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:44 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:44 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:44 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:44 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:44 DEBUG   opendrift.models.physics_methods:878:    min: 3.216686, mean: 3.583545, max: 3.855825
15:21:44 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:44 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.003853, dN_50: 0.000302
15:21:44 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:44 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007351453420908054
15:21:44 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:44 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:44 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:45 DEBUG   opendrift.models.physics_methods:732: Advecting 2235 of 6000 elements above 0.100m with wind-sheared ocean current (0.050524 m/s - 0.127217 m/s)
15:21:45 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:45 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016566471491460896 and 0.5125368659590086 m/s
15:21:45 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:45 DEBUG   opendrift:2085: ======================================================================
15:21:45 INFO    opendrift:2086: 2025-09-28 19:21:17.242042 - step 29 of 120 - 6000 active elements (0 deactivated)
15:21:45 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:45 DEBUG   opendrift:2094: ======================================================================
15:21:45 DEBUG   opendrift:2105:                34.80636599869015 <- latitude -> 35.13463667465064
15:21:45 DEBUG   opendrift:2105:                23.269399485737765 <- longitude -> 23.519080659883617
15:21:45 DEBUG   opendrift:2105:                -127.2550124506535 <- z -> 0.0
15:21:45 DEBUG   opendrift:2106: ---------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:45 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:45 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:45 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:45 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:45 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:45 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:45 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:45 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:45 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:45 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:45 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:45 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:45 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:45 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 18:00:00 (before)
                2025-09-28 21:00:00 (after)
15:21:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:45 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:45 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 18:00:00, weight 0.55) and
                      after (2025-09-28 21:00:00, weight 0.45) in time
15:21:45 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:45 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:45 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:45 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:45 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:45 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 18:00:00 (before)
                2025-09-28 21:00:00 (after)
15:21:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:45 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:45 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 18:00:00, weight 0.55) and
                      after (2025-09-28 21:00:00, weight 0.45) in time
15:21:45 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:45 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:45 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:45 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:45 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:45 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:45 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:45 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.175162 (min) 0.0782205 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.277486 (min) 0.137543 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -2.59047 (min) -1.25783 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.84234 (min) 3.7657 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:45 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.328390, mean: 0.374063, max: 0.402792
15:21:45 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:45 DEBUG   opendrift.models.physics_methods:878:    min: 3.121940, mean: 3.331344, max: 3.457562
15:21:45 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.121940, mean: 3.331344, max: 3.457562
15:21:45 DEBUG   opendrift:689: No elements hit coastline.
15:21:45 DEBUG   opendrift:1683: No elements to deactivate
15:21:45 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:45 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:45 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:45 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:45 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:45 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:45 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:45 DEBUG   opendrift.models.physics_methods:878:    min: 3.121940, mean: 3.331344, max: 3.457562
15:21:45 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:45 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004272, dN_50: 0.000335
15:21:45 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:45 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.005912061687732661
15:21:45 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:45 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:45 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:45 DEBUG   opendrift.models.physics_methods:732: Advecting 2234 of 6000 elements above 0.100m with wind-sheared ocean current (0.103483 m/s - 0.121393 m/s)
15:21:45 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:45 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008084395709090957 and 0.4670050458807259 m/s
15:21:45 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:45 DEBUG   opendrift:2085: ======================================================================
15:21:45 INFO    opendrift:2086: 2025-09-28 20:21:17.242042 - step 30 of 120 - 6000 active elements (0 deactivated)
15:21:45 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:45 DEBUG   opendrift:2094: ======================================================================
15:21:45 DEBUG   opendrift:2105:                34.79804846766338 <- latitude -> 35.137592834751125
15:21:45 DEBUG   opendrift:2105:                23.26790532621077 <- longitude -> 23.518182795306636
15:21:45 DEBUG   opendrift:2105:                -126.34588979379907 <- z -> 0.0
15:21:45 DEBUG   opendrift:2106: ---------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:45 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:45 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:45 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:45 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:45 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:45 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:45 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:45 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:45 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:45 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:45 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:45 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:45 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:45 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 18:00:00 (before)
                2025-09-28 21:00:00 (after)
15:21:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:45 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:45 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 18:00:00, weight 0.22) and
                      after (2025-09-28 21:00:00, weight 0.78) in time
15:21:45 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:45 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:45 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:45 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:45 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:45 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:45 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 18:00:00 (before)
                2025-09-28 21:00:00 (after)
15:21:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 18:00:00) in space  (linearNDFast)
15:21:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:45 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:45 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 18:00:00, weight 0.22) and
                      after (2025-09-28 21:00:00, weight 0.78) in time
15:21:45 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:45 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:45 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:45 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:45 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:45 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:45 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:45 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.173693 (min) 0.106485 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.285023 (min) 0.148158 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.5517 (min) -0.492704 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.2756 (min) 4.08426 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:45 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:45 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.293018, mean: 0.359726, max: 0.430594
15:21:45 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:45 DEBUG   opendrift.models.physics_methods:878:    min: 2.949015, mean: 3.263404, max: 3.574899
15:21:45 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.949015, mean: 3.263404, max: 3.574899
15:21:45 DEBUG   opendrift:689: No elements hit coastline.
15:21:46 DEBUG   opendrift:1683: No elements to deactivate
15:21:46 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:46 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:46 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:46 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:46 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:46 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:46 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:46 DEBUG   opendrift.models.physics_methods:878:    min: 2.949015, mean: 3.263404, max: 3.574899
15:21:46 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:46 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004527, dN_50: 0.000355
15:21:46 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:46 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.006319847074813352
15:21:46 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:46 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:46 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:46 DEBUG   opendrift.models.physics_methods:732: Advecting 2242 of 6000 elements above 0.100m with wind-sheared ocean current (0.023501 m/s - 0.125513 m/s)
15:21:46 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:46 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030655851672897506 and 0.41974579211480223 m/s
15:21:46 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:46 DEBUG   opendrift:2085: ======================================================================
15:21:46 INFO    opendrift:2086: 2025-09-28 21:21:17.242042 - step 31 of 120 - 6000 active elements (0 deactivated)
15:21:46 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:46 DEBUG   opendrift:2094: ======================================================================
15:21:46 DEBUG   opendrift:2105:                34.78498790121798 <- latitude -> 35.145196599656565
15:21:46 DEBUG   opendrift:2105:                23.26893939704104 <- longitude -> 23.51523975027291
15:21:46 DEBUG   opendrift:2105:                -125.26010984526523 <- z -> 0.0
15:21:46 DEBUG   opendrift:2106: ---------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:46 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:46 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:46 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:46 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:46 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:46 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:46 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:46 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:46 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:46 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:46 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:46 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:46 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:46 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:46 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:46 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:46 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:46 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 21:00:00 (before)
                2025-09-29 00:00:00 (after)
15:21:46 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:46 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:46 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:46 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:46 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:46 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:46 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x17x23) for time after (2025-09-29 00:00:00)
15:21:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:46 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:46 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:46 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:46 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 21:00:00, weight 0.88) and
                      after (2025-09-29 00:00:00, weight 0.12) in time
15:21:46 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:46 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:46 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:46 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:46 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:46 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:46 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:46 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:46 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 21:00:00 (before)
                2025-09-29 00:00:00 (after)
15:21:46 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:46 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:47 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:47 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:47 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:47 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-29 00:00:00)
15:21:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 21:00:00, weight 0.88) and
                      after (2025-09-29 00:00:00, weight 0.12) in time
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:47 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.16089 (min) 0.11509 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.284562 (min) 0.144257 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.892902 (min) 0.132402 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.55126 (min) 4.42702 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:47 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.313502, mean: 0.392916, max: 0.485774
15:21:47 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:47 DEBUG   opendrift.models.physics_methods:878:    min: 3.050351, mean: 3.408244, max: 3.797054
15:21:47 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.050351, mean: 3.408244, max: 3.797054
15:21:47 DEBUG   opendrift:689: No elements hit coastline.
15:21:47 DEBUG   opendrift:1683: No elements to deactivate
15:21:47 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:47 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:47 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:47 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:47 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:47 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:47 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:47 DEBUG   opendrift.models.physics_methods:878:    min: 3.050351, mean: 3.408244, max: 3.797054
15:21:47 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:47 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004579, dN_50: 0.000359
15:21:47 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:47 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007129184121322394
15:21:47 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:47 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:47 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:47 DEBUG   opendrift.models.physics_methods:732: Advecting 2242 of 6000 elements above 0.100m with wind-sheared ocean current (0.104926 m/s - 0.133313 m/s)
15:21:47 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:47 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0028003437947522456 and 0.44123663925808704 m/s
15:21:47 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:47 DEBUG   opendrift:2085: ======================================================================
15:21:47 INFO    opendrift:2086: 2025-09-28 22:21:17.242042 - step 32 of 120 - 6000 active elements (0 deactivated)
15:21:47 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:47 DEBUG   opendrift:2094: ======================================================================
15:21:47 DEBUG   opendrift:2105:                34.776826951961944 <- latitude -> 35.14938706691461
15:21:47 DEBUG   opendrift:2105:                23.267792331354944 <- longitude -> 23.51963076119788
15:21:47 DEBUG   opendrift:2105:                -124.51758270312219 <- z -> 0.0
15:21:47 DEBUG   opendrift:2106: ---------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:47 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:47 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 21:00:00 (before)
                2025-09-29 00:00:00 (after)
15:21:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 21:00:00, weight 0.55) and
                      after (2025-09-29 00:00:00, weight 0.45) in time
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:47 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 21:00:00 (before)
                2025-09-29 00:00:00 (after)
15:21:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 21:00:00, weight 0.55) and
                      after (2025-09-29 00:00:00, weight 0.45) in time
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:47 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.127003 (min) 0.0886103 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.29226 (min) 0.139132 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.983872 (min) 0.244499 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.83822 (min) 4.69056 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:47 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.370592, mean: 0.451192, max: 0.545214
15:21:47 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:47 DEBUG   opendrift.models.physics_methods:878:    min: 3.316482, mean: 3.654029, max: 4.022660
15:21:47 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.316482, mean: 3.654029, max: 4.022660
15:21:47 DEBUG   opendrift:689: No elements hit coastline.
15:21:47 DEBUG   opendrift:1683: No elements to deactivate
15:21:47 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:47 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:47 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:47 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:47 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:47 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:47 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:47 DEBUG   opendrift.models.physics_methods:878:    min: 3.316482, mean: 3.654029, max: 4.022660
15:21:47 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:47 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004581, dN_50: 0.000360
15:21:47 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:47 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.008001011808598215
15:21:47 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:47 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:47 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:47 DEBUG   opendrift.models.physics_methods:732: Advecting 2249 of 6000 elements above 0.100m with wind-sheared ocean current (0.006038 m/s - 0.141233 m/s)
15:21:47 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:47 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005221134091825253 and 0.47100993392193563 m/s
15:21:47 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:47 DEBUG   opendrift:2085: ======================================================================
15:21:47 INFO    opendrift:2086: 2025-09-28 23:21:17.242042 - step 33 of 120 - 6000 active elements (0 deactivated)
15:21:47 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:47 DEBUG   opendrift:2094: ======================================================================
15:21:47 DEBUG   opendrift:2105:                34.76524210901422 <- latitude -> 35.16257233290109
15:21:47 DEBUG   opendrift:2105:                23.266266668532953 <- longitude -> 23.52024699177761
15:21:47 DEBUG   opendrift:2105:                -123.72480578272354 <- z -> 0.0
15:21:47 DEBUG   opendrift:2106: ---------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:47 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:47 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 21:00:00 (before)
                2025-09-29 00:00:00 (after)
15:21:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 21:00:00, weight 0.22) and
                      after (2025-09-29 00:00:00, weight 0.78) in time
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:47 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-28 21:00:00 (before)
                2025-09-29 00:00:00 (after)
15:21:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-28 21:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:47 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-28 21:00:00, weight 0.22) and
                      after (2025-09-29 00:00:00, weight 0.78) in time
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:47 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:47 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0998004 (min) 0.0908599 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.298035 (min) 0.151073 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.06567 (min) 0.394766 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 4.14636 (min) 5.02983 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:47 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:47 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.430605, mean: 0.514387, max: 0.628819
15:21:47 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:47 DEBUG   opendrift.models.physics_methods:878:    min: 3.574945, mean: 3.902893, max: 4.320087
15:21:47 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.574945, mean: 3.902893, max: 4.320087
15:21:47 DEBUG   opendrift:689: No elements hit coastline.
15:21:47 DEBUG   opendrift:1683: No elements to deactivate
15:21:47 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:47 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:47 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:47 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:47 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:47 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:47 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:47 DEBUG   opendrift.models.physics_methods:878:    min: 3.574945, mean: 3.902893, max: 4.320086
15:21:47 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:47 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004630, dN_50: 0.000363
15:21:47 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:47 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.009227263821689244
15:21:47 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:47 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:47 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:47 DEBUG   opendrift.models.physics_methods:732: Advecting 2258 of 6000 elements above 0.100m with wind-sheared ocean current (0.137288 m/s - 0.151676 m/s)
15:21:47 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:47 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007977319741265959 and 0.48456871195056234 m/s
15:21:47 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:47 DEBUG   opendrift:2085: ======================================================================
15:21:47 INFO    opendrift:2086: 2025-09-29 00:21:17.242042 - step 34 of 120 - 6000 active elements (0 deactivated)
15:21:47 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:47 DEBUG   opendrift:2094: ======================================================================
15:21:47 DEBUG   opendrift:2105:                34.757310912759394 <- latitude -> 35.17080840503555
15:21:47 DEBUG   opendrift:2105:                23.27226886203923 <- longitude -> 23.523847299393246
15:21:47 DEBUG   opendrift:2105:                -122.43092028352044 <- z -> 0.0
15:21:47 DEBUG   opendrift:2106: ---------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:47 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:47 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:47 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:47 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:47 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:47 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:47 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:47 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:47 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 00:00:00 (before)
                2025-09-29 03:00:00 (after)
15:21:47 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:48 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:48 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:48 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:48 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:48 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:48 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x19x22) for time after (2025-09-29 03:00:00)
15:21:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:48 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:48 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 00:00:00, weight 0.88) and
                      after (2025-09-29 03:00:00, weight 0.12) in time
15:21:48 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:48 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:48 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:48 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:48 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:48 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:48 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:48 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 00:00:00 (before)
                2025-09-29 03:00:00 (after)
15:21:48 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:48 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:48 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:48 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:48 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:48 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-29 03:00:00)
15:21:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:48 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:48 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 00:00:00, weight 0.88) and
                      after (2025-09-29 03:00:00, weight 0.12) in time
15:21:48 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:48 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:48 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:48 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:48 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:48 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:48 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:48 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0860867 (min) 0.0975783 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.309145 (min) 0.149547 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.679984 (min) 0.978132 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 4.34009 (min) 5.30899 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:48 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:48 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.463630, mean: 0.547891, max: 0.694037
15:21:48 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:48 DEBUG   opendrift.models.physics_methods:878:    min: 3.709501, mean: 4.029414, max: 4.538591
15:21:48 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.709501, mean: 4.029414, max: 4.538591
15:21:48 DEBUG   opendrift:689: No elements hit coastline.
15:21:48 DEBUG   opendrift:1683: No elements to deactivate
15:21:48 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:48 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:48 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:48 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:48 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:48 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:48 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:48 DEBUG   opendrift.models.physics_methods:878:    min: 3.709502, mean: 4.029413, max: 4.538590
15:21:48 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:48 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004843, dN_50: 0.000380
15:21:48 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:48 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.010183837152398184
15:21:48 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:48 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:48 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:48 DEBUG   opendrift.models.physics_methods:732: Advecting 2266 of 6000 elements above 0.100m with wind-sheared ocean current (0.001242 m/s - 0.159347 m/s)
15:21:48 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:48 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007640791530405201 and 0.4259625840877755 m/s
15:21:48 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:48 DEBUG   opendrift:2085: ======================================================================
15:21:48 INFO    opendrift:2086: 2025-09-29 01:21:17.242042 - step 35 of 120 - 6000 active elements (0 deactivated)
15:21:48 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:48 DEBUG   opendrift:2094: ======================================================================
15:21:48 DEBUG   opendrift:2105:                34.748611421788716 <- latitude -> 35.18076479352485
15:21:48 DEBUG   opendrift:2105:                23.269140751963594 <- longitude -> 23.529094854428212
15:21:48 DEBUG   opendrift:2105:                -121.9055301951924 <- z -> 0.0
15:21:48 DEBUG   opendrift:2106: ---------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:48 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:48 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:48 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:48 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:48 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:48 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:48 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:48 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:48 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:48 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:48 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:48 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:48 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:48 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:48 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:48 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:48 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:48 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:48 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 00:00:00 (before)
                2025-09-29 03:00:00 (after)
15:21:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 00:00:00, weight 0.55) and
                      after (2025-09-29 03:00:00, weight 0.45) in time
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:49 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 00:00:00 (before)
                2025-09-29 03:00:00 (after)
15:21:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 00:00:00, weight 0.55) and
                      after (2025-09-29 03:00:00, weight 0.45) in time
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:49 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:49 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:49 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:49 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:49 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0693527 (min) 0.0884731 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.332838 (min) 0.157753 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.588249 (min) 2.32586 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 4.38041 (min) 5.3929 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:49 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.504263, mean: 0.586638, max: 0.738937
15:21:49 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:49 DEBUG   opendrift.models.physics_methods:878:    min: 3.868639, mean: 4.171247, max: 4.683098
15:21:49 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.868639, mean: 4.171247, max: 4.683098
15:21:49 DEBUG   opendrift:689: No elements hit coastline.
15:21:49 DEBUG   opendrift:1683: No elements to deactivate
15:21:49 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:49 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:49 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:49 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:49 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:49 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:49 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:49 DEBUG   opendrift.models.physics_methods:878:    min: 3.868639, mean: 4.171247, max: 4.683098
15:21:49 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:49 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005088, dN_50: 0.000399
15:21:49 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:49 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.010842392909034979
15:21:49 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:49 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:49 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:49 DEBUG   opendrift.models.physics_methods:732: Advecting 2264 of 6000 elements above 0.100m with wind-sheared ocean current (0.119119 m/s - 0.164421 m/s)
15:21:49 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:49 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008915783567190878 and 0.4732580864449592 m/s
15:21:49 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:49 DEBUG   opendrift:2085: ======================================================================
15:21:49 INFO    opendrift:2086: 2025-09-29 02:21:17.242042 - step 36 of 120 - 6000 active elements (0 deactivated)
15:21:49 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:49 DEBUG   opendrift:2094: ======================================================================
15:21:49 DEBUG   opendrift:2105:                34.74251104533017 <- latitude -> 35.19215022737408
15:21:49 DEBUG   opendrift:2105:                23.27435354580818 <- longitude -> 23.5357408215002
15:21:49 DEBUG   opendrift:2105:                -120.94562377125777 <- z -> 0.0
15:21:49 DEBUG   opendrift:2106: ---------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:49 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:49 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 00:00:00 (before)
                2025-09-29 03:00:00 (after)
15:21:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 00:00:00, weight 0.22) and
                      after (2025-09-29 03:00:00, weight 0.78) in time
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:49 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 00:00:00 (before)
                2025-09-29 03:00:00 (after)
15:21:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 00:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 00:00:00, weight 0.22) and
                      after (2025-09-29 03:00:00, weight 0.78) in time
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:49 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:49 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:49 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:49 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:49 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0625209 (min) 0.0812433 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.363153 (min) 0.160419 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.81196 (min) 3.67956 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 4.27246 (min) 5.5625 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:49 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:49 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.618876, mean: 0.723691, max: 0.868420
15:21:49 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:49 DEBUG   opendrift.models.physics_methods:878:    min: 4.285796, mean: 4.633740, max: 5.076852
15:21:49 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.285796, mean: 4.633740, max: 5.076852
15:21:49 DEBUG   opendrift:689: No elements hit coastline.
15:21:49 DEBUG   opendrift:1683: No elements to deactivate
15:21:49 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:49 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:49 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:49 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:49 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:49 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:49 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:49 DEBUG   opendrift.models.physics_methods:878:    min: 4.285796, mean: 4.633740, max: 5.076852
15:21:49 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:49 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005088, dN_50: 0.000399
15:21:49 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:49 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.012741557863595451
15:21:49 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:49 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:49 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:49 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2264 surface elements
15:21:49 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2263 surface elements
15:21:49 DEBUG   opendrift.models.physics_methods:732: Advecting 2264 of 6000 elements above 0.100m with wind-sheared ocean current (0.096743 m/s - 0.178246 m/s)
15:21:49 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:49 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.000405149155725514 and 0.44822893695099264 m/s
15:21:49 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:49 DEBUG   opendrift:2085: ======================================================================
15:21:49 INFO    opendrift:2086: 2025-09-29 03:21:17.242042 - step 37 of 120 - 6000 active elements (0 deactivated)
15:21:49 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:49 DEBUG   opendrift:2094: ======================================================================
15:21:49 DEBUG   opendrift:2105:                34.73148427774453 <- latitude -> 35.207606607457116
15:21:49 DEBUG   opendrift:2105:                23.277751846463094 <- longitude -> 23.537716288705504
15:21:49 DEBUG   opendrift:2105:                -120.00500146492033 <- z -> 0.0
15:21:49 DEBUG   opendrift:2106: ---------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:49 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:49 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 03:00:00 (before)
                2025-09-29 06:00:00 (after)
15:21:49 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:49 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:49 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:49 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:49 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:49 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:49 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x20x22) for time after (2025-09-29 06:00:00)
15:21:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:49 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 03:00:00, weight 0.88) and
                      after (2025-09-29 06:00:00, weight 0.12) in time
15:21:49 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:49 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:49 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:49 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:49 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:49 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:49 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:49 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 03:00:00 (before)
                2025-09-29 06:00:00 (after)
15:21:49 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:50 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:50 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:50 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:50 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:50 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-29 06:00:00)
15:21:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 03:00:00, weight 0.88) and
                      after (2025-09-29 06:00:00, weight 0.12) in time
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:50 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0748703 (min) 0.0739712 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.378715 (min) 0.148954 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 3.02167 (min) 4.84233 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.8989 (min) 5.51839 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:50 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.779409, mean: 0.900935, max: 1.035610
15:21:50 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:50 DEBUG   opendrift.models.physics_methods:878:    min: 4.809638, mean: 5.170335, max: 5.544058
15:21:50 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.809638, mean: 5.170335, max: 5.544058
15:21:50 DEBUG   opendrift:689: No elements hit coastline.
15:21:50 DEBUG   opendrift:1683: No elements to deactivate
15:21:50 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:50 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:50 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:50 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:50 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:50 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:50 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:50 DEBUG   opendrift.models.physics_methods:878:    min: 4.809638, mean: 5.170335, max: 5.544058
15:21:50 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:50 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005119, dN_50: 0.000402
15:21:50 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:50 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01519378248480532
15:21:50 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:50 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:50 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2263 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2264 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2263 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2263 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2263 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2262 surface elements
15:21:50 DEBUG   opendrift.models.physics_methods:732: Advecting 2263 of 6000 elements above 0.100m with wind-sheared ocean current (0.177133 m/s - 0.189685 m/s)
15:21:50 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:50 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00198047339323146 and 0.42794479822129217 m/s
15:21:50 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:50 DEBUG   opendrift:2085: ======================================================================
15:21:50 INFO    opendrift:2086: 2025-09-29 04:21:17.242042 - step 38 of 120 - 6000 active elements (0 deactivated)
15:21:50 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:50 DEBUG   opendrift:2094: ======================================================================
15:21:50 DEBUG   opendrift:2105:                34.72135881850995 <- latitude -> 35.218841309529274
15:21:50 DEBUG   opendrift:2105:                23.282734282728967 <- longitude -> 23.543925539815582
15:21:50 DEBUG   opendrift:2105:                -118.91191446425726 <- z -> 0.0
15:21:50 DEBUG   opendrift:2106: ---------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:50 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:50 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:50 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:50 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:50 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:50 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:50 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:50 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 03:00:00 (before)
                2025-09-29 06:00:00 (after)
15:21:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 03:00:00, weight 0.55) and
                      after (2025-09-29 06:00:00, weight 0.45) in time
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:50 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:50 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:50 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 03:00:00 (before)
                2025-09-29 06:00:00 (after)
15:21:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 03:00:00, weight 0.55) and
                      after (2025-09-29 06:00:00, weight 0.45) in time
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:50 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0760275 (min) 0.0850084 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.376999 (min) 0.142739 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.01566 (min) 5.75992 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.42368 (min) 4.87724 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:50 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.961718, mean: 1.044088, max: 1.182800
15:21:50 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:50 DEBUG   opendrift.models.physics_methods:878:    min: 5.342611, mean: 5.565577, max: 5.924958
15:21:50 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.342611, mean: 5.565577, max: 5.924958
15:21:50 DEBUG   opendrift:689: No elements hit coastline.
15:21:50 DEBUG   opendrift:1683: No elements to deactivate
15:21:50 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:50 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:50 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:50 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:50 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:50 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:50 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:50 DEBUG   opendrift.models.physics_methods:878:    min: 5.342611, mean: 5.565578, max: 5.924958
15:21:50 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:50 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005350, dN_50: 0.000420
15:21:50 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:50 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01735265920873372
15:21:50 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:50 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:50 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2263 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2262 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2262 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2262 surface elements
15:21:50 DEBUG   opendrift.models.physics_methods:732: Advecting 2266 of 6000 elements above 0.100m with wind-sheared ocean current (0.016061 m/s - 0.197060 m/s)
15:21:50 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:50 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006931579280825805 and 0.4368256885859911 m/s
15:21:50 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:50 DEBUG   opendrift:2085: ======================================================================
15:21:50 INFO    opendrift:2086: 2025-09-29 05:21:17.242042 - step 39 of 120 - 6000 active elements (0 deactivated)
15:21:50 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:50 DEBUG   opendrift:2094: ======================================================================
15:21:50 DEBUG   opendrift:2105:                34.70698790193799 <- latitude -> 35.226675629648106
15:21:50 DEBUG   opendrift:2105:                23.283751600289474 <- longitude -> 23.550126302002894
15:21:50 DEBUG   opendrift:2105:                -118.26902626384611 <- z -> 0.0
15:21:50 DEBUG   opendrift:2106: ---------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:50 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:50 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:50 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:50 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:50 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:50 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:50 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:50 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 03:00:00 (before)
                2025-09-29 06:00:00 (after)
15:21:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 03:00:00, weight 0.22) and
                      after (2025-09-29 06:00:00, weight 0.78) in time
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:50 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:50 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:50 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:50 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 03:00:00 (before)
                2025-09-29 06:00:00 (after)
15:21:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 03:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:50 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 03:00:00, weight 0.22) and
                      after (2025-09-29 06:00:00, weight 0.78) in time
15:21:50 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:50 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:50 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:50 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:50 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.085202 (min) 0.0909601 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.386279 (min) 0.163659 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.92107 (min) 6.69156 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.95463 (min) 4.29511 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:50 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:50 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.032884, mean: 1.243974, max: 1.384430
15:21:50 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:50 DEBUG   opendrift.models.physics_methods:878:    min: 5.536756, mean: 6.074119, max: 6.410103
15:21:50 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.536756, mean: 6.074119, max: 6.410103
15:21:50 DEBUG   opendrift:689: No elements hit coastline.
15:21:50 DEBUG   opendrift:1683: No elements to deactivate
15:21:50 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:50 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:50 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:50 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:50 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:50 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:50 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:50 DEBUG   opendrift.models.physics_methods:878:    min: 5.536756, mean: 6.074119, max: 6.410103
15:21:50 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:50 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005580, dN_50: 0.000438
15:21:50 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:50 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.020310015407720435
15:21:50 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:50 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:50 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2260 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2260 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2259 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2258 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2256 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2255 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2254 surface elements
15:21:50 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2253 surface elements
15:21:51 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2252 surface elements
15:21:51 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2251 surface elements
15:21:51 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2249 surface elements
15:21:51 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2249 surface elements
15:21:51 DEBUG   opendrift.models.physics_methods:732: Advecting 2248 of 6000 elements above 0.100m with wind-sheared ocean current (0.194392 m/s - 0.214204 m/s)
15:21:51 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:51 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00032499714442314347 and 0.4872856938316968 m/s
15:21:51 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:51 DEBUG   opendrift:2085: ======================================================================
15:21:51 INFO    opendrift:2086: 2025-09-29 06:21:17.242042 - step 40 of 120 - 6000 active elements (0 deactivated)
15:21:51 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:51 DEBUG   opendrift:2094: ======================================================================
15:21:51 DEBUG   opendrift:2105:                34.69080893872768 <- latitude -> 35.2360853672913
15:21:51 DEBUG   opendrift:2105:                23.288439321983173 <- longitude -> 23.551654937535755
15:21:51 DEBUG   opendrift:2105:                -117.50944351820132 <- z -> 0.0
15:21:51 DEBUG   opendrift:2106: ---------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:51 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:51 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:51 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:51 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:51 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:51 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:51 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:51 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:51 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:51 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:51 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:51 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:51 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:51 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:51 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:51 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:51 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:51 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 06:00:00 (before)
                2025-09-29 09:00:00 (after)
15:21:51 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:51 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:51 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:51 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:51 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:51 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:51 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x21x22) for time after (2025-09-29 09:00:00)
15:21:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:51 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:51 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:51 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:51 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 06:00:00, weight 0.88) and
                      after (2025-09-29 09:00:00, weight 0.12) in time
15:21:51 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:51 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:51 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:51 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:51 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:51 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:51 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:51 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:51 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 06:00:00 (before)
                2025-09-29 09:00:00 (after)
15:21:51 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:51 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:52 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:52 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:52 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:52 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-29 09:00:00)
15:21:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 06:00:00, weight 0.88) and
                      after (2025-09-29 09:00:00, weight 0.12) in time
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:52 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0871837 (min) 0.0932731 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.38819 (min) 0.176294 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 5.66214 (min) 7.27304 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.39215 (min) 3.5991 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:52 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.089526, mean: 1.373992, max: 1.497720
15:21:52 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:52 DEBUG   opendrift.models.physics_methods:878:    min: 5.686544, mean: 6.383595, max: 6.667221
15:21:52 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.686544, mean: 6.383595, max: 6.667221
15:21:52 DEBUG   opendrift:689: No elements hit coastline.
15:21:52 DEBUG   opendrift:1683: No elements to deactivate
15:21:52 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:52 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:52 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:52 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:52 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:52 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:52 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:52 DEBUG   opendrift.models.physics_methods:878:    min: 5.686543, mean: 6.383595, max: 6.667222
15:21:52 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:52 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.006012, dN_50: 0.000472
15:21:52 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:52 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.021971669389251904
15:21:52 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:52 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:52 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2248 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2247 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2246 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2245 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2244 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2243 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2242 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2241 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2241 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2240 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2239 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2238 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2238 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2236 surface elements
15:21:52 DEBUG   opendrift.models.physics_methods:732: Advecting 2238 of 6000 elements above 0.100m with wind-sheared ocean current (0.021503 m/s - 0.225345 m/s)
15:21:52 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:52 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020148551401782586 and 0.4341091472008167 m/s
15:21:52 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:52 DEBUG   opendrift:2085: ======================================================================
15:21:52 INFO    opendrift:2086: 2025-09-29 07:21:17.242042 - step 41 of 120 - 6000 active elements (0 deactivated)
15:21:52 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:52 DEBUG   opendrift:2094: ======================================================================
15:21:52 DEBUG   opendrift:2105:                34.6836039589963 <- latitude -> 35.23848974367655
15:21:52 DEBUG   opendrift:2105:                23.292908354594754 <- longitude -> 23.552067924597825
15:21:52 DEBUG   opendrift:2105:                -116.42365356777928 <- z -> 0.0
15:21:52 DEBUG   opendrift:2106: ---------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:52 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:52 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 06:00:00 (before)
                2025-09-29 09:00:00 (after)
15:21:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 06:00:00, weight 0.55) and
                      after (2025-09-29 09:00:00, weight 0.45) in time
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:52 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 06:00:00 (before)
                2025-09-29 09:00:00 (after)
15:21:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 06:00:00, weight 0.55) and
                      after (2025-09-29 09:00:00, weight 0.45) in time
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:52 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.0994812 (min) 0.0844775 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.377252 (min) 0.152037 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 6.10516 (min) 7.23603 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 1.65805 (min) 2.80249 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:52 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.105243, mean: 1.313177, max: 1.395267
15:21:52 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:52 DEBUG   opendrift.models.physics_methods:878:    min: 5.727413, mean: 6.241944, max: 6.435143
15:21:52 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.727413, mean: 6.241944, max: 6.435143
15:21:52 DEBUG   opendrift:689: No elements hit coastline.
15:21:52 DEBUG   opendrift:1683: No elements to deactivate
15:21:52 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:52 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:52 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:52 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:52 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:52 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:52 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:52 DEBUG   opendrift.models.physics_methods:878:    min: 5.727413, mean: 6.241944, max: 6.435143
15:21:52 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:52 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.006800, dN_50: 0.000534
15:21:52 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:52 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.02046896246215049
15:21:52 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:52 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:52 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2238 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2237 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2236 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2235 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2235 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2233 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2232 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2231 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2230 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2229 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2229 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2229 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2229 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2228 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2227 surface elements
15:21:52 DEBUG   opendrift.models.physics_methods:732: Advecting 2228 of 6000 elements above 0.100m with wind-sheared ocean current (0.021708 m/s - 0.220004 m/s)
15:21:52 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:52 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007222447785961865 and 0.4220613910967817 m/s
15:21:52 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:52 DEBUG   opendrift:2085: ======================================================================
15:21:52 INFO    opendrift:2086: 2025-09-29 08:21:17.242042 - step 42 of 120 - 6000 active elements (0 deactivated)
15:21:52 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:52 DEBUG   opendrift:2094: ======================================================================
15:21:52 DEBUG   opendrift:2105:                34.67734461882926 <- latitude -> 35.24704585527416
15:21:52 DEBUG   opendrift:2105:                23.29219586139019 <- longitude -> 23.549398755062906
15:21:52 DEBUG   opendrift:2105:                -115.21783334898514 <- z -> 0.0
15:21:52 DEBUG   opendrift:2106: ---------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:52 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:52 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 06:00:00 (before)
                2025-09-29 09:00:00 (after)
15:21:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 06:00:00, weight 0.22) and
                      after (2025-09-29 09:00:00, weight 0.78) in time
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:52 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 06:00:00 (before)
                2025-09-29 09:00:00 (after)
15:21:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 06:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:52 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 06:00:00, weight 0.22) and
                      after (2025-09-29 09:00:00, weight 0.78) in time
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:52 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:52 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.129002 (min) 0.0788569 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.373935 (min) 0.129519 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 6.53303 (min) 7.24575 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 0.892644 (min) 2.01997 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:52 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:52 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.150315, mean: 1.285321, max: 1.320408
15:21:52 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:52 DEBUG   opendrift.models.physics_methods:878:    min: 5.843030, mean: 6.176143, max: 6.260134
15:21:52 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.843030, mean: 6.176143, max: 6.260134
15:21:52 DEBUG   opendrift:689: No elements hit coastline.
15:21:52 DEBUG   opendrift:1683: No elements to deactivate
15:21:52 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:52 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:52 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:52 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:52 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:52 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:52 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:52 DEBUG   opendrift.models.physics_methods:878:    min: 5.843030, mean: 6.176143, max: 6.260134
15:21:52 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:52 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.007593, dN_50: 0.000596
15:21:52 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:52 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.019370987299018906
15:21:52 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:52 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:52 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2226 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2224 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2223 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2222 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2222 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2222 surface elements
15:21:52 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2222 surface elements
15:21:52 DEBUG   opendrift.models.physics_methods:732: Advecting 2224 of 6000 elements above 0.100m with wind-sheared ocean current (0.066910 m/s - 0.219151 m/s)
15:21:52 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:52 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014377826745921476 and 0.47618968222355185 m/s
15:21:52 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:52 DEBUG   opendrift:2085: ======================================================================
15:21:52 INFO    opendrift:2086: 2025-09-29 09:21:17.242042 - step 43 of 120 - 6000 active elements (0 deactivated)
15:21:52 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:52 DEBUG   opendrift:2094: ======================================================================
15:21:52 DEBUG   opendrift:2105:                34.667504334118426 <- latitude -> 35.25628483703729
15:21:52 DEBUG   opendrift:2105:                23.291907827522422 <- longitude -> 23.549901322669893
15:21:52 DEBUG   opendrift:2105:                -114.21336910880771 <- z -> 0.0
15:21:52 DEBUG   opendrift:2106: ---------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:52 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:52 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:52 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:52 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:52 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:52 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:52 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:52 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:52 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 09:00:00 (before)
                2025-09-29 12:00:00 (after)
15:21:52 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:53 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:53 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:53 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:53 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:53 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:53 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x23x22) for time after (2025-09-29 12:00:00)
15:21:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:53 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:53 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:53 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:53 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 09:00:00, weight 0.88) and
                      after (2025-09-29 12:00:00, weight 0.12) in time
15:21:53 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:53 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:53 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:53 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:53 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:53 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:53 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:53 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:53 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:53 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:53 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 09:00:00 (before)
                2025-09-29 12:00:00 (after)
15:21:53 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:53 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:54 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:54 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:54 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:54 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-29 12:00:00)
15:21:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 09:00:00, weight 0.88) and
                      after (2025-09-29 12:00:00, weight 0.12) in time
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:54 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:54 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:54 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:54 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:54 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.138088 (min) 0.0938807 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.371612 (min) 0.0844039 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 6.90761 (min) 7.38718 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -0.0840913 (min) 1.02202 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:54 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.199485, mean: 1.289519, max: 1.342605
15:21:54 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:54 DEBUG   opendrift.models.physics_methods:878:    min: 5.966600, mean: 6.186328, max: 6.312534
15:21:54 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.966600, mean: 6.186328, max: 6.312534
15:21:54 DEBUG   opendrift:689: No elements hit coastline.
15:21:54 DEBUG   opendrift:1683: No elements to deactivate
15:21:54 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:54 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:54 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:54 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:54 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:54 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:54 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:54 DEBUG   opendrift.models.physics_methods:878:    min: 5.966600, mean: 6.186328, max: 6.312534
15:21:54 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:54 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.008402, dN_50: 0.000659
15:21:54 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:54 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.019696558434086416
15:21:54 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:54 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:54 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2222 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2221 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2220 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2219 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2218 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2217 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2216 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2216 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2219 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2218 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2217 surface elements
15:21:54 DEBUG   opendrift.models.physics_methods:732: Advecting 2220 of 6000 elements above 0.100m with wind-sheared ocean current (0.007292 m/s - 0.220845 m/s)
15:21:54 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:54 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0024130773032864654 and 0.42155808443670395 m/s
15:21:54 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:54 DEBUG   opendrift:2085: ======================================================================
15:21:54 INFO    opendrift:2086: 2025-09-29 10:21:17.242042 - step 44 of 120 - 6000 active elements (0 deactivated)
15:21:54 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:54 DEBUG   opendrift:2094: ======================================================================
15:21:54 DEBUG   opendrift:2105:                34.65254894634242 <- latitude -> 35.2685595290879
15:21:54 DEBUG   opendrift:2105:                23.295537145928314 <- longitude -> 23.540285291373728
15:21:54 DEBUG   opendrift:2105:                -113.27666123818334 <- z -> 0.0
15:21:54 DEBUG   opendrift:2106: ---------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:54 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:54 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:54 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:54 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:54 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:54 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:54 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:54 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 09:00:00 (before)
                2025-09-29 12:00:00 (after)
15:21:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 09:00:00, weight 0.55) and
                      after (2025-09-29 12:00:00, weight 0.45) in time
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:54 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:54 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:54 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 09:00:00 (before)
                2025-09-29 12:00:00 (after)
15:21:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 09:00:00, weight 0.55) and
                      after (2025-09-29 12:00:00, weight 0.45) in time
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:54 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:54 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:54 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:54 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:54 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.152519 (min) 0.116983 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.374138 (min) 0.0486367 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 7.13189 (min) 7.45713 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -1.48799 (min) -0.342715 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:54 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:54 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.254141, mean: 1.369918, max: 1.420649
15:21:54 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:54 DEBUG   opendrift.models.physics_methods:878:    min: 6.101024, mean: 6.376201, max: 6.493413
15:21:54 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.101024, mean: 6.376201, max: 6.493413
15:21:54 DEBUG   opendrift:689: No elements hit coastline.
15:21:54 DEBUG   opendrift:1683: No elements to deactivate
15:21:54 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:54 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:54 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:54 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:54 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:54 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:54 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:54 DEBUG   opendrift.models.physics_methods:878:    min: 6.101024, mean: 6.376201, max: 6.493413
15:21:54 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:54 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.009145, dN_50: 0.000718
15:21:54 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:54 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.020841258570043122
15:21:54 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:54 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:54 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2216 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2216 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2215 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2215 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2219 surface elements
15:21:54 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2218 surface elements
15:21:54 DEBUG   opendrift.models.physics_methods:732: Advecting 2219 of 6000 elements above 0.100m with wind-sheared ocean current (0.012431 m/s - 0.227406 m/s)
15:21:54 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:54 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0034389697181324633 and 0.44271825252554164 m/s
15:21:54 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:54 DEBUG   opendrift:2085: ======================================================================
15:21:54 INFO    opendrift:2086: 2025-09-29 11:21:17.242042 - step 45 of 120 - 6000 active elements (0 deactivated)
15:21:54 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:54 DEBUG   opendrift:2094: ======================================================================
15:21:54 DEBUG   opendrift:2105:                34.63894100676654 <- latitude -> 35.272764315114316
15:21:54 DEBUG   opendrift:2105:                23.29466719038193 <- longitude -> 23.536946700419087
15:21:54 DEBUG   opendrift:2105:                -112.69829867233635 <- z -> 0.0
15:21:54 DEBUG   opendrift:2106: ---------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:54 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:54 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:54 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:54 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:54 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:54 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:54 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:54 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 09:00:00 (before)
                2025-09-29 12:00:00 (after)
15:21:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:54 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 09:00:00, weight 0.22) and
                      after (2025-09-29 12:00:00, weight 0.78) in time
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:54 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:54 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:54 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:54 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 09:00:00 (before)
                2025-09-29 12:00:00 (after)
15:21:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 09:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:54 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 09:00:00, weight 0.22) and
                      after (2025-09-29 12:00:00, weight 0.78) in time
15:21:54 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:54 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:54 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:54 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:55 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:55 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:55 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:55 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:55 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.163122 (min) 0.128905 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.367833 (min) 0.0685123 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 7.28834 (min) 7.66759 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -2.88035 (min) -1.69906 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:55 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:55 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.407819, mean: 1.549054, max: 1.603081
15:21:55 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:55 DEBUG   opendrift.models.physics_methods:878:    min: 6.464023, mean: 6.780142, max: 6.897748
15:21:55 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.464023, mean: 6.780142, max: 6.897748
15:21:55 DEBUG   opendrift:689: No elements hit coastline.
15:21:55 DEBUG   opendrift:1683: No elements to deactivate
15:21:55 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:55 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:55 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:55 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:55 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:55 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:55 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:55 DEBUG   opendrift.models.physics_methods:878:    min: 6.464024, mean: 6.780142, max: 6.897748
15:21:55 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:55 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.009768, dN_50: 0.000767
15:21:55 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:55 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.02351703801813182
15:21:55 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:55 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:55 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2217 surface elements
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2216 surface elements
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2215 surface elements
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2214 surface elements
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2213 surface elements
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2212 surface elements
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2210 surface elements
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2210 surface elements
15:21:55 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2209 surface elements
15:21:55 DEBUG   opendrift.models.physics_methods:732: Advecting 2209 of 6000 elements above 0.100m with wind-sheared ocean current (0.213614 m/s - 0.242077 m/s)
15:21:55 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:55 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017908188912365063 and 0.41383519308694083 m/s
15:21:55 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:55 DEBUG   opendrift:2085: ======================================================================
15:21:55 INFO    opendrift:2086: 2025-09-29 12:21:17.242042 - step 46 of 120 - 6000 active elements (0 deactivated)
15:21:55 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:55 DEBUG   opendrift:2094: ======================================================================
15:21:55 DEBUG   opendrift:2105:                34.6311370739244 <- latitude -> 35.2737780490564
15:21:55 DEBUG   opendrift:2105:                23.292151301961137 <- longitude -> 23.53360502347935
15:21:55 DEBUG   opendrift:2105:                -111.76803660693719 <- z -> 0.0
15:21:55 DEBUG   opendrift:2106: ---------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:55 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:55 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:55 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:55 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:55 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:55 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:55 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:55 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:55 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:55 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:55 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:55 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:55 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:55 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:55 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:55 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:55 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:55 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 12:00:00 (before)
                2025-09-29 15:00:00 (after)
15:21:55 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:55 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:55 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:55 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:55 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:55 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:55 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x24x22) for time after (2025-09-29 15:00:00)
15:21:55 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:55 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:55 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:55 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:55 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 12:00:00, weight 0.88) and
                      after (2025-09-29 15:00:00, weight 0.12) in time
15:21:55 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:55 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:55 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:55 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:55 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:55 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:55 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:55 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:55 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 12:00:00 (before)
                2025-09-29 15:00:00 (after)
15:21:55 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:56 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:56 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:56 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:56 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:56 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-29 15:00:00)
15:21:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 12:00:00, weight 0.88) and
                      after (2025-09-29 15:00:00, weight 0.12) in time
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:56 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.177328 (min) 0.126015 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.3605 (min) 0.0712362 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 7.08547 (min) 7.63319 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.00753 (min) -2.83552 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:56 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.516932, mean: 1.688686, max: 1.773583
15:21:56 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:56 DEBUG   opendrift.models.physics_methods:878:    min: 6.709848, mean: 7.078982, max: 7.255299
15:21:56 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.709848, mean: 7.078982, max: 7.255299
15:21:56 DEBUG   opendrift:689: No elements hit coastline.
15:21:56 DEBUG   opendrift:1683: No elements to deactivate
15:21:56 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:56 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:56 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:56 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:56 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:56 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:56 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:56 DEBUG   opendrift.models.physics_methods:878:    min: 6.709847, mean: 7.078982, max: 7.255299
15:21:56 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:56 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.010616, dN_50: 0.000833
15:21:56 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:56 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.026017832390106202
15:21:56 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:56 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:56 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2209 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2208 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2208 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2207 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2205 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2204 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2203 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2201 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2201 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2200 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2199 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2198 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2196 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2195 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2194 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2192 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2191 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2189 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2188 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2187 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2185 surface elements
15:21:56 DEBUG   opendrift.models.physics_methods:732: Advecting 2185 of 6000 elements above 0.100m with wind-sheared ocean current (0.027178 m/s - 0.253994 m/s)
15:21:56 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:56 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0028618454278339133 and 0.4373111265937053 m/s
15:21:56 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:56 DEBUG   opendrift:2085: ======================================================================
15:21:56 INFO    opendrift:2086: 2025-09-29 13:21:17.242042 - step 47 of 120 - 6000 active elements (0 deactivated)
15:21:56 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:56 DEBUG   opendrift:2094: ======================================================================
15:21:56 DEBUG   opendrift:2105:                34.62588986356736 <- latitude -> 35.270611683199846
15:21:56 DEBUG   opendrift:2105:                23.286765326080726 <- longitude -> 23.538008035726296
15:21:56 DEBUG   opendrift:2105:                -110.90831677814487 <- z -> 0.0
15:21:56 DEBUG   opendrift:2106: ---------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:56 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:56 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:56 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:56 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:56 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:56 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:56 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:56 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 12:00:00 (before)
                2025-09-29 15:00:00 (after)
15:21:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 12:00:00, weight 0.55) and
                      after (2025-09-29 15:00:00, weight 0.45) in time
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:56 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:56 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:56 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 12:00:00 (before)
                2025-09-29 15:00:00 (after)
15:21:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 12:00:00, weight 0.55) and
                      after (2025-09-29 15:00:00, weight 0.45) in time
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:56 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.187126 (min) 0.111531 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.377351 (min) 0.0550447 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 6.4435 (min) 7.10857 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.79136 (min) -3.60118 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:56 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.438192, mean: 1.646808, max: 1.753089
15:21:56 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:56 DEBUG   opendrift.models.physics_methods:878:    min: 6.533381, mean: 6.990642, max: 7.213259
15:21:56 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.533381, mean: 6.990642, max: 7.213259
15:21:56 DEBUG   opendrift:689: No elements hit coastline.
15:21:56 DEBUG   opendrift:1683: No elements to deactivate
15:21:56 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:56 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:56 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:56 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:56 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:56 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:56 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:56 DEBUG   opendrift.models.physics_methods:878:    min: 6.533381, mean: 6.990642, max: 7.213259
15:21:56 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:56 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.012004, dN_50: 0.000942
15:21:56 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:56 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.025717241998640325
15:21:56 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:56 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:56 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2184 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2182 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2181 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2180 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2179 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2179 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2177 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 3 of 2176 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2173 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2172 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2171 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2170 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2169 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2168 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2167 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2166 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2164 surface elements
15:21:56 DEBUG   opendrift.models.physics_methods:732: Advecting 2167 of 6000 elements above 0.100m with wind-sheared ocean current (0.026301 m/s - 0.251836 m/s)
15:21:56 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:56 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001814089476824764 and 0.43604612887705346 m/s
15:21:56 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:56 DEBUG   opendrift:2085: ======================================================================
15:21:56 INFO    opendrift:2086: 2025-09-29 14:21:17.242042 - step 48 of 120 - 6000 active elements (0 deactivated)
15:21:56 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:56 DEBUG   opendrift:2094: ======================================================================
15:21:56 DEBUG   opendrift:2105:                34.6160859320304 <- latitude -> 35.26481127710966
15:21:56 DEBUG   opendrift:2105:                23.287737979479086 <- longitude -> 23.548868613796888
15:21:56 DEBUG   opendrift:2105:                -109.7098878716552 <- z -> 0.0
15:21:56 DEBUG   opendrift:2106: ---------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:56 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:56 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:56 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:56 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:56 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:56 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:56 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:56 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 12:00:00 (before)
                2025-09-29 15:00:00 (after)
15:21:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 12:00:00, weight 0.22) and
                      after (2025-09-29 15:00:00, weight 0.78) in time
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:56 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:56 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:56 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:56 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 12:00:00 (before)
                2025-09-29 15:00:00 (after)
15:21:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 12:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:56 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 12:00:00, weight 0.22) and
                      after (2025-09-29 15:00:00, weight 0.78) in time
15:21:56 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:56 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:56 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:56 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:56 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.192389 (min) 0.10145 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.405706 (min) 0.0420102 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 5.80368 (min) 6.56534 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.68078 (min) -4.43956 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:56 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:56 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.420144, mean: 1.660373, max: 1.777214
15:21:56 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:56 DEBUG   opendrift.models.physics_methods:878:    min: 6.492258, mean: 7.019227, max: 7.262723
15:21:56 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.492258, mean: 7.019227, max: 7.262723
15:21:56 DEBUG   opendrift:689: No elements hit coastline.
15:21:56 DEBUG   opendrift:1683: No elements to deactivate
15:21:56 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:56 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:56 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:56 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:56 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:56 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:56 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:56 DEBUG   opendrift.models.physics_methods:878:    min: 6.492258, mean: 7.019227, max: 7.262723
15:21:56 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:56 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.013385, dN_50: 0.001050
15:21:56 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:56 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.026071095615561236
15:21:56 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:56 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:56 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2163 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2163 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2162 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 2 of 2162 surface elements
15:21:56 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2160 surface elements
15:21:57 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2159 surface elements
15:21:57 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2158 surface elements
15:21:57 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2157 surface elements
15:21:57 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2158 surface elements
15:21:57 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2157 surface elements
15:21:57 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2156 surface elements
15:21:57 DEBUG   opendrift.models.physics_methods:732: Advecting 2158 of 6000 elements above 0.100m with wind-sheared ocean current (0.042568 m/s - 0.253919 m/s)
15:21:57 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:57 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013194733750858535 and 0.46094914105962403 m/s
15:21:57 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:57 DEBUG   opendrift:2085: ======================================================================
15:21:57 INFO    opendrift:2086: 2025-09-29 15:21:17.242042 - step 49 of 120 - 6000 active elements (0 deactivated)
15:21:57 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:57 DEBUG   opendrift:2094: ======================================================================
15:21:57 DEBUG   opendrift:2105:                34.61023100652556 <- latitude -> 35.26119474460007
15:21:57 DEBUG   opendrift:2105:                23.29116995275442 <- longitude -> 23.551296456005648
15:21:57 DEBUG   opendrift:2105:                -109.00838606525922 <- z -> 0.0
15:21:57 DEBUG   opendrift:2106: ---------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:57 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:57 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:57 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:57 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:57 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:57 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:57 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:57 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:57 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:57 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:57 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:57 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:57 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:57 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:57 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:57 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:57 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:57 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 15:00:00 (before)
                2025-09-29 18:00:00 (after)
15:21:57 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:57 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:57 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:57 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:57 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:57 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:57 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x24x22) for time after (2025-09-29 18:00:00)
15:21:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:57 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:57 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 18:00:00) in space  (linearNDFast)
15:21:57 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
15:21:57 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 15:00:00, weight 0.88) and
                      after (2025-09-29 18:00:00, weight 0.12) in time
15:21:57 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:57 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:57 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:57 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:57 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:57 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:57 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:57 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 15:00:00 (before)
                2025-09-29 18:00:00 (after)
15:21:57 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:57 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:57 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:57 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:57 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:57 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-29 18:00:00)
15:21:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:57 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:57 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 18:00:00) in space  (linearNDFast)
15:21:57 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:57 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 15:00:00, weight 0.88) and
                      after (2025-09-29 18:00:00, weight 0.12) in time
15:21:57 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:57 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:57 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:57 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:57 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:57 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:57 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:57 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.209662 (min) 0.0986802 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.42198 (min) 0.0390768 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 5.25264 (min) 6.12608 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.15295 (min) -4.87131 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:57 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:57 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.364119, mean: 1.640382, max: 1.767766
15:21:57 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:57 DEBUG   opendrift.models.physics_methods:878:    min: 6.362909, mean: 6.976551, max: 7.243391
15:21:57 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.362909, mean: 6.976551, max: 7.243391
15:21:57 DEBUG   opendrift:689: No elements hit coastline.
15:21:58 DEBUG   opendrift:1683: No elements to deactivate
15:21:58 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:58 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:58 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:58 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:58 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:58 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:58 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:58 DEBUG   opendrift.models.physics_methods:878:    min: 6.362909, mean: 6.976551, max: 7.243392
15:21:58 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:58 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.014979, dN_50: 0.001176
15:21:58 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:58 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.025932512512164
15:21:58 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:58 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:58 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2156 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2155 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2154 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2153 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2153 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2152 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2151 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2151 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2150 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2149 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2148 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2147 surface elements
15:21:58 DEBUG   opendrift.models.physics_methods:732: Advecting 2154 of 6000 elements above 0.100m with wind-sheared ocean current (0.006314 m/s - 0.253003 m/s)
15:21:58 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:58 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013424149993715476 and 0.422320037252356 m/s
15:21:58 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:58 DEBUG   opendrift:2085: ======================================================================
15:21:58 INFO    opendrift:2086: 2025-09-29 16:21:17.242042 - step 50 of 120 - 6000 active elements (0 deactivated)
15:21:58 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:58 DEBUG   opendrift:2094: ======================================================================
15:21:58 DEBUG   opendrift:2105:                34.59938475449164 <- latitude -> 35.25532389416973
15:21:58 DEBUG   opendrift:2105:                23.283531935362408 <- longitude -> 23.549169417613005
15:21:58 DEBUG   opendrift:2105:                -107.8873918179071 <- z -> 0.0
15:21:58 DEBUG   opendrift:2106: ---------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:58 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:58 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 15:00:00 (before)
                2025-09-29 18:00:00 (after)
15:21:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:58 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 18:00:00) in space  (linearNDFast)
15:21:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:58 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 15:00:00, weight 0.55) and
                      after (2025-09-29 18:00:00, weight 0.45) in time
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:58 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 15:00:00 (before)
                2025-09-29 18:00:00 (after)
15:21:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:58 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 18:00:00) in space  (linearNDFast)
15:21:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:58 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 15:00:00, weight 0.55) and
                      after (2025-09-29 18:00:00, weight 0.45) in time
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:58 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:58 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:58 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:58 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:58 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.214144 (min) 0.0779267 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.413549 (min) 0.0271715 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.93925 (min) 5.77459 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.83804 (min) -4.53235 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:58 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.164992, mean: 1.482782, max: 1.600281
15:21:58 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:58 DEBUG   opendrift.models.physics_methods:878:    min: 5.880185, mean: 6.632707, max: 6.891720
15:21:58 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.880185, mean: 6.632707, max: 6.891720
15:21:58 DEBUG   opendrift:689: No elements hit coastline.
15:21:58 DEBUG   opendrift:1683: No elements to deactivate
15:21:58 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:58 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:58 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:58 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:58 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:58 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:58 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:58 DEBUG   opendrift.models.physics_methods:878:    min: 5.880185, mean: 6.632707, max: 6.891720
15:21:58 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:58 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.017147, dN_50: 0.001346
15:21:58 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:58 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.023475961080201876
15:21:58 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:58 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:58 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2146 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2145 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2144 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2143 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2143 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2142 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2142 surface elements
15:21:58 DEBUG   opendrift.models.physics_methods:732: Advecting 2141 of 6000 elements above 0.100m with wind-sheared ocean current (0.206450 m/s - 0.239369 m/s)
15:21:58 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:58 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014462115866222427 and 0.465928923038023 m/s
15:21:58 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:58 DEBUG   opendrift:2085: ======================================================================
15:21:58 INFO    opendrift:2086: 2025-09-29 17:21:17.242042 - step 51 of 120 - 6000 active elements (0 deactivated)
15:21:58 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:58 DEBUG   opendrift:2094: ======================================================================
15:21:58 DEBUG   opendrift:2105:                34.59238500358438 <- latitude -> 35.24782107575271
15:21:58 DEBUG   opendrift:2105:                23.28739981677913 <- longitude -> 23.552551673446786
15:21:58 DEBUG   opendrift:2105:                -107.24636331088986 <- z -> 0.0
15:21:58 DEBUG   opendrift:2106: ---------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:58 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:58 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 15:00:00 (before)
                2025-09-29 18:00:00 (after)
15:21:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:58 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 18:00:00) in space  (linearNDFast)
15:21:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:58 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 15:00:00, weight 0.22) and
                      after (2025-09-29 18:00:00, weight 0.78) in time
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:58 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 15:00:00 (before)
                2025-09-29 18:00:00 (after)
15:21:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 15:00:00) in space  (linearNDFast)
15:21:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:58 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 18:00:00) in space  (linearNDFast)
15:21:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:58 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 15:00:00, weight 0.22) and
                      after (2025-09-29 18:00:00, weight 0.78) in time
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:58 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:58 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:58 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:58 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:58 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.223712 (min) 0.0775114 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.390012 (min) 0.0196553 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.60538 (min) 5.47252 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.56809 (min) -4.18518 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:58 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:58 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.983297, mean: 1.335124, max: 1.460133
15:21:58 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:58 DEBUG   opendrift.models.physics_methods:878:    min: 5.402215, mean: 6.293377, max: 6.583030
15:21:58 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.402215, mean: 6.293377, max: 6.583030
15:21:58 DEBUG   opendrift:689: No elements hit coastline.
15:21:58 DEBUG   opendrift:1683: No elements to deactivate
15:21:58 DEBUG   opendrift:2142: Calling OpenOil.update()
15:21:58 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:21:58 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:21:58 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:21:58 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:21:58 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:21:58 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:21:58 DEBUG   opendrift.models.physics_methods:878:    min: 5.402215, mean: 6.293376, max: 6.583030
15:21:58 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:21:58 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.019522, dN_50: 0.001532
15:21:58 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:21:58 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.021420377818420194
15:21:58 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:21:58 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:21:58 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2141 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2144 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2143 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2142 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2141 surface elements
15:21:58 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2140 surface elements
15:21:58 DEBUG   opendrift.models.physics_methods:732: Advecting 2141 of 6000 elements above 0.100m with wind-sheared ocean current (0.006118 m/s - 0.226273 m/s)
15:21:58 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:21:58 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022427665561321874 and 0.4905003502028899 m/s
15:21:58 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:21:58 DEBUG   opendrift:2085: ======================================================================
15:21:58 INFO    opendrift:2086: 2025-09-29 18:21:17.242042 - step 52 of 120 - 6000 active elements (0 deactivated)
15:21:58 DEBUG   opendrift:2092: 0 elements scheduled.
15:21:58 DEBUG   opendrift:2094: ======================================================================
15:21:58 DEBUG   opendrift:2105:                34.58067503391819 <- latitude -> 35.23963042899907
15:21:58 DEBUG   opendrift:2105:                23.286504155106627 <- longitude -> 23.562939594377436
15:21:58 DEBUG   opendrift:2105:                -106.2584903324408 <- z -> 0.0
15:21:58 DEBUG   opendrift:2106: ---------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:21:58 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:21:58 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:58 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:58 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:58 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:21:58 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:58 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:21:58 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:58 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 18:00:00 (before)
                2025-09-29 21:00:00 (after)
15:21:58 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:21:59 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:21:59 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:59 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:21:59 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:21:59 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:21:59 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 12x24x22) for time after (2025-09-29 21:00:00)
15:21:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 18:00:00) in space  (linearNDFast)
15:21:59 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:59 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 21:00:00) in space  (linearNDFast)
15:21:59 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:59 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 18:00:00, weight 0.88) and
                      after (2025-09-29 21:00:00, weight 0.12) in time
15:21:59 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:59 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:59 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:21:59 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:21:59 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:21:59 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:21:59 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:21:59 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:21:59 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:21:59 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:21:59 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 18:00:00 (before)
                2025-09-29 21:00:00 (after)
15:21:59 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:21:59 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:21:59 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:21:59 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:21:59 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:21:59 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-29 21:00:00)
15:21:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 18:00:00) in space  (linearNDFast)
15:21:59 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:59 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 21:00:00) in space  (linearNDFast)
15:21:59 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:21:59 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 18:00:00, weight 0.88) and
                      after (2025-09-29 21:00:00, weight 0.12) in time
15:21:59 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:21:59 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:21:59 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:21:59 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:21:59 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:21:59 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:21:59 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:21:59 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:21:59 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.230647 (min) 0.079434 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.392693 (min) 0.00502985 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.40446 (min) 5.28944 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.36326 (min) -3.96868 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:21:59 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:21:59 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.886390, mean: 1.230084, max: 1.358583
15:21:59 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:21:59 DEBUG   opendrift.models.physics_methods:878:    min: 5.129110, mean: 6.040375, max: 6.349985
15:21:59 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.129110, mean: 6.040375, max: 6.349985
15:21:59 DEBUG   opendrift:689: No elements hit coastline.
15:22:00 DEBUG   opendrift:1683: No elements to deactivate
15:22:00 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:00 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:00 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:00 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:00 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:00 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:00 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:00 DEBUG   opendrift.models.physics_methods:878:    min: 5.129110, mean: 6.040375, max: 6.349985
15:22:00 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:00 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.021916, dN_50: 0.001720
15:22:00 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:00 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01993091486328117
15:22:00 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:00 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:00 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:00 DEBUG   opendrift.models.physics_methods:732: Advecting 2144 of 6000 elements above 0.100m with wind-sheared ocean current (0.040271 m/s - 0.217229 m/s)
15:22:00 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:00 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002407567007829294 and 0.4717615359087869 m/s
15:22:00 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:00 DEBUG   opendrift:2085: ======================================================================
15:22:00 INFO    opendrift:2086: 2025-09-29 19:21:17.242042 - step 53 of 120 - 6000 active elements (0 deactivated)
15:22:00 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:00 DEBUG   opendrift:2094: ======================================================================
15:22:00 DEBUG   opendrift:2105:                34.5724733976191 <- latitude -> 35.23355292255379
15:22:00 DEBUG   opendrift:2105:                23.27754213632998 <- longitude -> 23.57455139996888
15:22:00 DEBUG   opendrift:2105:                -105.4530444877269 <- z -> 0.0
15:22:00 DEBUG   opendrift:2106: ---------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:00 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:00 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:00 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:00 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:00 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:00 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:00 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:00 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:00 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:00 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:00 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:00 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:00 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:00 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 18:00:00 (before)
                2025-09-29 21:00:00 (after)
15:22:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 18:00:00) in space  (linearNDFast)
15:22:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:00 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:00 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 18:00:00, weight 0.55) and
                      after (2025-09-29 21:00:00, weight 0.45) in time
15:22:00 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:00 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:00 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:00 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:00 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:00 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 18:00:00 (before)
                2025-09-29 21:00:00 (after)
15:22:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 18:00:00) in space  (linearNDFast)
15:22:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:00 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:00 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 18:00:00, weight 0.55) and
                      after (2025-09-29 21:00:00, weight 0.45) in time
15:22:00 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:00 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:00 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:00 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:00 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:00 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:00 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:00 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.249574 (min) 0.0793984 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.40082 (min) -0.0101489 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.44858 (min) 5.24169 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.11759 (min) -3.9162 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:00 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.903387, mean: 1.188477, max: 1.298746
15:22:00 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:00 DEBUG   opendrift.models.physics_methods:878:    min: 5.178053, mean: 5.937315, max: 6.208572
15:22:00 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.178053, mean: 5.937315, max: 6.208572
15:22:00 DEBUG   opendrift:689: No elements hit coastline.
15:22:00 DEBUG   opendrift:1683: No elements to deactivate
15:22:00 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:00 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:00 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:00 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:00 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:00 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:00 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:00 DEBUG   opendrift.models.physics_methods:878:    min: 5.178053, mean: 5.937315, max: 6.208572
15:22:00 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:00 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.024089, dN_50: 0.001890
15:22:00 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:00 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.019053271233705742
15:22:00 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:00 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:00 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:00 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2142 surface elements
15:22:00 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2141 surface elements
15:22:00 DEBUG   opendrift.models.physics_methods:732: Advecting 2142 of 6000 elements above 0.100m with wind-sheared ocean current (0.136045 m/s - 0.214083 m/s)
15:22:00 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:00 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002672038902531375 and 0.4520592761890052 m/s
15:22:00 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:00 DEBUG   opendrift:2085: ======================================================================
15:22:00 INFO    opendrift:2086: 2025-09-29 20:21:17.242042 - step 54 of 120 - 6000 active elements (0 deactivated)
15:22:00 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:00 DEBUG   opendrift:2094: ======================================================================
15:22:00 DEBUG   opendrift:2105:                34.55792707620718 <- latitude -> 35.22773322271956
15:22:00 DEBUG   opendrift:2105:                23.273591155667482 <- longitude -> 23.58166024390554
15:22:00 DEBUG   opendrift:2105:                -104.51988793376357 <- z -> 0.0
15:22:00 DEBUG   opendrift:2106: ---------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:00 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:00 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:00 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:00 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:00 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:00 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:00 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:00 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:00 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:00 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:00 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:00 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:00 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:00 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 18:00:00 (before)
                2025-09-29 21:00:00 (after)
15:22:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 18:00:00) in space  (linearNDFast)
15:22:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:00 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:00 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 18:00:00, weight 0.22) and
                      after (2025-09-29 21:00:00, weight 0.78) in time
15:22:00 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:00 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:00 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:00 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:00 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:00 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:00 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 18:00:00 (before)
                2025-09-29 21:00:00 (after)
15:22:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 18:00:00) in space  (linearNDFast)
15:22:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:00 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:00 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 18:00:00, weight 0.22) and
                      after (2025-09-29 21:00:00, weight 0.78) in time
15:22:00 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:00 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:00 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:00 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:00 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:00 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:00 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:00 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.271418 (min) 0.0835199 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.391953 (min) -0.0210885 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.51038 (min) 5.18914 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.97872 (min) -3.86587 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:00 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:00 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.912773, mean: 1.148404, max: 1.239868
15:22:00 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:00 DEBUG   opendrift.models.physics_methods:878:    min: 5.204883, mean: 5.836235, max: 6.066209
15:22:00 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.204883, mean: 5.836235, max: 6.066209
15:22:00 DEBUG   opendrift:689: No elements hit coastline.
15:22:00 DEBUG   opendrift:1683: No elements to deactivate
15:22:00 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:00 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:00 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:00 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:00 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:00 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:00 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:00 DEBUG   opendrift.models.physics_methods:878:    min: 5.204883, mean: 5.836235, max: 6.066209
15:22:00 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:00 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.026027, dN_50: 0.002043
15:22:00 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:00 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.018189694807146408
15:22:00 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:00 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:00 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:00 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2140 surface elements
15:22:00 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2140 surface elements
15:22:00 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2139 surface elements
15:22:00 DEBUG   opendrift.models.physics_methods:732: Advecting 2140 of 6000 elements above 0.100m with wind-sheared ocean current (0.007530 m/s - 0.210645 m/s)
15:22:00 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:00 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0002973130337805486 and 0.4394116302881126 m/s
15:22:01 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:01 DEBUG   opendrift:2085: ======================================================================
15:22:01 INFO    opendrift:2086: 2025-09-29 21:21:17.242042 - step 55 of 120 - 6000 active elements (0 deactivated)
15:22:01 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:01 DEBUG   opendrift:2094: ======================================================================
15:22:01 DEBUG   opendrift:2105:                34.54422977220611 <- latitude -> 35.22061631698971
15:22:01 DEBUG   opendrift:2105:                23.27264032948474 <- longitude -> 23.591335161772175
15:22:01 DEBUG   opendrift:2105:                -103.84453164623372 <- z -> 0.0
15:22:01 DEBUG   opendrift:2106: ---------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:01 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:01 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:01 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:01 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:01 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:01 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:01 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:01 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:01 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:01 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:01 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:01 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:01 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:01 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:01 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:01 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:01 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:01 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:01 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 21:00:00 (before)
                2025-09-30 00:00:00 (after)
15:22:01 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:01 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:01 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:01 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:01 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:01 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:01 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 13x25x22) for time after (2025-09-30 00:00:00)
15:22:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:01 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 21:00:00, weight 0.88) and
                      after (2025-09-30 00:00:00, weight 0.12) in time
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:02 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 21:00:00 (before)
                2025-09-30 00:00:00 (after)
15:22:02 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:02 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:02 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:02 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:02 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:02 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-30 00:00:00)
15:22:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 21:00:00, weight 0.88) and
                      after (2025-09-30 00:00:00, weight 0.12) in time
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:02 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.284159 (min) 0.0789341 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.401228 (min) 0.010519 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.53287 (min) 5.17915 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.96303 (min) -3.98918 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:02 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.913832, mean: 1.132419, max: 1.223676
15:22:02 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:02 DEBUG   opendrift.models.physics_methods:878:    min: 5.207902, mean: 5.795333, max: 6.026467
15:22:02 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.207902, mean: 5.795333, max: 6.026467
15:22:02 DEBUG   opendrift:689: No elements hit coastline.
15:22:02 DEBUG   opendrift:1683: No elements to deactivate
15:22:02 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:02 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:02 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:02 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:02 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:02 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:02 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:02 DEBUG   opendrift.models.physics_methods:878:    min: 5.207902, mean: 5.795333, max: 6.026467
15:22:02 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:02 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.027292, dN_50: 0.002142
15:22:02 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:02 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.017952191766750687
15:22:02 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:02 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:02 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:02 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2142 surface elements
15:22:02 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2141 surface elements
15:22:02 DEBUG   opendrift.models.physics_methods:732: Advecting 2141 of 6000 elements above 0.100m with wind-sheared ocean current (0.091813 m/s - 0.209185 m/s)
15:22:02 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:02 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00025226894018386055 and 0.43433815364569334 m/s
15:22:02 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:02 DEBUG   opendrift:2085: ======================================================================
15:22:02 INFO    opendrift:2086: 2025-09-29 22:21:17.242042 - step 56 of 120 - 6000 active elements (0 deactivated)
15:22:02 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:02 DEBUG   opendrift:2094: ======================================================================
15:22:02 DEBUG   opendrift:2105:                34.53549414094627 <- latitude -> 35.213341686545434
15:22:02 DEBUG   opendrift:2105:                23.260431580650312 <- longitude -> 23.595702992276635
15:22:02 DEBUG   opendrift:2105:                -102.43407596245757 <- z -> 0.0
15:22:02 DEBUG   opendrift:2106: ---------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:02 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:02 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 21:00:00 (before)
                2025-09-30 00:00:00 (after)
15:22:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 21:00:00, weight 0.55) and
                      after (2025-09-30 00:00:00, weight 0.45) in time
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:02 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 21:00:00 (before)
                2025-09-30 00:00:00 (after)
15:22:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 21:00:00, weight 0.55) and
                      after (2025-09-30 00:00:00, weight 0.45) in time
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:02 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.301221 (min) 0.0613114 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.406154 (min) 0.027033 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.22235 (min) 5.0621 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.17069 (min) -4.25856 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:02 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.889583, mean: 1.159288, max: 1.244097
15:22:02 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:02 DEBUG   opendrift.models.physics_methods:878:    min: 5.138341, mean: 5.863620, max: 6.076545
15:22:02 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.138341, mean: 5.863620, max: 6.076545
15:22:02 DEBUG   opendrift:689: No elements hit coastline.
15:22:02 DEBUG   opendrift:1683: No elements to deactivate
15:22:02 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:02 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:02 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:02 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:02 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:02 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:02 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:02 DEBUG   opendrift.models.physics_methods:878:    min: 5.138341, mean: 5.863620, max: 6.076545
15:22:02 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:02 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.028198, dN_50: 0.002213
15:22:02 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:02 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01825171389693489
15:22:02 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:02 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:02 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:02 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2140 surface elements
15:22:02 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2139 surface elements
15:22:02 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2138 surface elements
15:22:02 DEBUG   opendrift.models.physics_methods:732: Advecting 2139 of 6000 elements above 0.100m with wind-sheared ocean current (0.118181 m/s - 0.211671 m/s)
15:22:02 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:02 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0027516066295581645 and 0.41123880626060894 m/s
15:22:02 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:02 DEBUG   opendrift:2085: ======================================================================
15:22:02 INFO    opendrift:2086: 2025-09-29 23:21:17.242042 - step 57 of 120 - 6000 active elements (0 deactivated)
15:22:02 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:02 DEBUG   opendrift:2094: ======================================================================
15:22:02 DEBUG   opendrift:2105:                34.531781394971254 <- latitude -> 35.20803171036087
15:22:02 DEBUG   opendrift:2105:                23.257646252515308 <- longitude -> 23.598330171050907
15:22:02 DEBUG   opendrift:2105:                -101.85765483529228 <- z -> 0.0
15:22:02 DEBUG   opendrift:2106: ---------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:02 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:02 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 21:00:00 (before)
                2025-09-30 00:00:00 (after)
15:22:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 21:00:00, weight 0.22) and
                      after (2025-09-30 00:00:00, weight 0.78) in time
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:02 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:02 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:02 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:02 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-29 21:00:00 (before)
                2025-09-30 00:00:00 (after)
15:22:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-29 21:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:02 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-29 21:00:00, weight 0.22) and
                      after (2025-09-30 00:00:00, weight 0.78) in time
15:22:02 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:02 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:02 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:02 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:02 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.321775 (min) 0.0484851 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.41454 (min) 0.0654259 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 3.86609 (min) 4.94135 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.37681 (min) -4.44331 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:02 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:02 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.884605, mean: 1.188070, max: 1.268072
15:22:02 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:02 DEBUG   opendrift.models.physics_methods:878:    min: 5.123944, mean: 5.935929, max: 6.134817
15:22:02 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.123944, mean: 5.935929, max: 6.134817
15:22:02 DEBUG   opendrift:689: No elements hit coastline.
15:22:03 DEBUG   opendrift:1683: No elements to deactivate
15:22:03 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:03 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:03 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:03 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:03 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:03 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:03 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:03 DEBUG   opendrift.models.physics_methods:878:    min: 5.123944, mean: 5.935929, max: 6.134817
15:22:03 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:03 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.029105, dN_50: 0.002284
15:22:03 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:03 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01860337105584101
15:22:03 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:03 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:03 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:03 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2137 surface elements
15:22:03 DEBUG   opendrift.models.physics_methods:732: Advecting 2139 of 6000 elements above 0.100m with wind-sheared ocean current (0.012132 m/s - 0.214443 m/s)
15:22:03 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:03 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005246252744592852 and 0.4440053909665622 m/s
15:22:03 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:03 DEBUG   opendrift:2085: ======================================================================
15:22:03 INFO    opendrift:2086: 2025-09-30 00:21:17.242042 - step 58 of 120 - 6000 active elements (0 deactivated)
15:22:03 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:03 DEBUG   opendrift:2094: ======================================================================
15:22:03 DEBUG   opendrift:2105:                34.52603418332358 <- latitude -> 35.20047832780322
15:22:03 DEBUG   opendrift:2105:                23.240386945385723 <- longitude -> 23.600677742856377
15:22:03 DEBUG   opendrift:2105:                -101.03998682296877 <- z -> 0.0
15:22:03 DEBUG   opendrift:2106: ---------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:03 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:03 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:03 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:03 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:03 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:03 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:03 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:03 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:03 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:03 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:03 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:03 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:03 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:03 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:03 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:03 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:03 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:03 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:03 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 00:00:00 (before)
                2025-09-30 03:00:00 (after)
15:22:03 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:04 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:04 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:04 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:04 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:04 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:04 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 14x24x22) for time after (2025-09-30 03:00:00)
15:22:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:04 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:04 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:04 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:04 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 00:00:00, weight 0.88) and
                      after (2025-09-30 03:00:00, weight 0.12) in time
15:22:04 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:04 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:04 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:04 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:04 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:04 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 00:00:00 (before)
                2025-09-30 03:00:00 (after)
15:22:04 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:04 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:04 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:04 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:04 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:04 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2025-09-30 03:00:00)
15:22:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:04 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:04 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:04 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:04 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 00:00:00, weight 0.88) and
                      after (2025-09-30 03:00:00, weight 0.12) in time
15:22:04 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:04 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:04 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:04 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:04 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:04 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:04 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:04 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.345917 (min) 0.0484708 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.416476 (min) 0.0911269 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 3.4009 (min) 4.73346 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.65552 (min) -4.60816 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:04 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.865584, mean: 1.209696, max: 1.293109
15:22:04 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:04 DEBUG   opendrift.models.physics_methods:878:    min: 5.068555, mean: 5.989554, max: 6.195082
15:22:04 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.068555, mean: 5.989554, max: 6.195082
15:22:04 DEBUG   opendrift:689: No elements hit coastline.
15:22:04 DEBUG   opendrift:1683: No elements to deactivate
15:22:04 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:04 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:04 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:04 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:04 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:04 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:04 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:04 DEBUG   opendrift.models.physics_methods:878:    min: 5.068555, mean: 5.989554, max: 6.195082
15:22:04 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:04 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.030092, dN_50: 0.002362
15:22:04 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:04 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.018970581464397628
15:22:04 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:04 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:04 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:04 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2138 surface elements
15:22:04 DEBUG   opendrift.models.physics_methods:732: Advecting 2138 of 6000 elements above 0.100m with wind-sheared ocean current (0.177954 m/s - 0.217506 m/s)
15:22:04 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:04 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002243112431178526 and 0.449181857090871 m/s
15:22:04 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:04 DEBUG   opendrift:2085: ======================================================================
15:22:04 INFO    opendrift:2086: 2025-09-30 01:21:17.242042 - step 59 of 120 - 6000 active elements (0 deactivated)
15:22:04 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:04 DEBUG   opendrift:2094: ======================================================================
15:22:04 DEBUG   opendrift:2105:                34.51189682689622 <- latitude -> 35.19253794442098
15:22:04 DEBUG   opendrift:2105:                23.22409534873686 <- longitude -> 23.603476830874726
15:22:04 DEBUG   opendrift:2105:                -100.24535054594804 <- z -> 0.0
15:22:04 DEBUG   opendrift:2106: ---------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:04 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:04 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:04 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:04 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:04 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:04 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:04 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:04 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:04 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:04 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:04 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:04 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:04 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:04 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 00:00:00 (before)
                2025-09-30 03:00:00 (after)
15:22:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:04 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:04 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:04 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:04 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 00:00:00, weight 0.55) and
                      after (2025-09-30 03:00:00, weight 0.45) in time
15:22:04 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:04 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:04 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:04 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:04 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:04 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:04 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 00:00:00 (before)
                2025-09-30 03:00:00 (after)
15:22:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:04 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:04 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:04 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:04 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 00:00:00, weight 0.55) and
                      after (2025-09-30 03:00:00, weight 0.45) in time
15:22:04 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:04 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:04 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:04 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:04 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:04 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:04 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:04 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.364387 (min) 0.0391139 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.406729 (min) 0.0999274 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 2.73147 (min) 4.37322 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.05063 (min) -4.80542 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:04 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:05 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.782766, mean: 1.220801, max: 1.338300
15:22:05 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:05 DEBUG   opendrift.models.physics_methods:878:    min: 4.819985, mean: 6.016453, max: 6.302404
15:22:05 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.819985, mean: 6.016453, max: 6.302404
15:22:05 DEBUG   opendrift:689: No elements hit coastline.
15:22:05 DEBUG   opendrift:1683: No elements to deactivate
15:22:05 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:05 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:05 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:05 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:05 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:05 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:05 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:05 DEBUG   opendrift.models.physics_methods:878:    min: 4.819985, mean: 6.016453, max: 6.302404
15:22:05 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:05 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.031184, dN_50: 0.002447
15:22:05 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:05 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.019633409384757414
15:22:05 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:05 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:05 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:05 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2139 surface elements
15:22:05 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2138 surface elements
15:22:05 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2137 surface elements
15:22:05 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2136 surface elements
15:22:05 DEBUG   opendrift.models.physics_methods:732: Advecting 2139 of 6000 elements above 0.100m with wind-sheared ocean current (0.010338 m/s - 0.221274 m/s)
15:22:05 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:05 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030709311183357633 and 0.4937170103328958 m/s
15:22:05 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:05 DEBUG   opendrift:2085: ======================================================================
15:22:05 INFO    opendrift:2086: 2025-09-30 02:21:17.242042 - step 60 of 120 - 6000 active elements (0 deactivated)
15:22:05 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:05 DEBUG   opendrift:2094: ======================================================================
15:22:05 DEBUG   opendrift:2105:                34.50398637973109 <- latitude -> 35.18610957990577
15:22:05 DEBUG   opendrift:2105:                23.20882468046152 <- longitude -> 23.603939026282045
15:22:05 DEBUG   opendrift:2105:                -99.60818259623667 <- z -> 0.0
15:22:05 DEBUG   opendrift:2106: ---------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:05 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:05 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:05 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:05 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:05 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:05 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:05 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:05 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:05 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:05 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:05 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:05 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:05 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:05 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 00:00:00 (before)
                2025-09-30 03:00:00 (after)
15:22:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:05 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:05 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:05 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:05 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 00:00:00, weight 0.22) and
                      after (2025-09-30 03:00:00, weight 0.78) in time
15:22:05 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:05 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:05 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:05 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:05 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:05 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 00:00:00 (before)
                2025-09-30 03:00:00 (after)
15:22:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 00:00:00) in space  (linearNDFast)
15:22:05 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:05 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:05 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:05 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 00:00:00, weight 0.22) and
                      after (2025-09-30 03:00:00, weight 0.78) in time
15:22:05 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:05 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:05 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:05 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:05 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:05 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:05 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:05 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.395223 (min) 0.0457781 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.394397 (min) 0.115885 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 2.08222 (min) 4.00862 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.42787 (min) -4.95186 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:05 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:05 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.726381, mean: 1.240421, max: 1.390654
15:22:05 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:05 DEBUG   opendrift.models.physics_methods:878:    min: 4.643141, mean: 6.063893, max: 6.424497
15:22:05 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.643141, mean: 6.063893, max: 6.424497
15:22:05 DEBUG   opendrift:689: No elements hit coastline.
15:22:05 DEBUG   opendrift:1683: No elements to deactivate
15:22:05 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:05 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:05 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:05 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:05 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:05 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:05 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:05 DEBUG   opendrift.models.physics_methods:878:    min: 4.643141, mean: 6.063893, max: 6.424497
15:22:05 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:05 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.032224, dN_50: 0.002529
15:22:05 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:05 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.02040131120273338
15:22:05 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:05 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:05 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:05 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2136 surface elements
15:22:05 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2135 surface elements
15:22:05 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2134 surface elements
15:22:05 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2133 surface elements
15:22:05 DEBUG   opendrift.models.physics_methods:732: Advecting 2138 of 6000 elements above 0.100m with wind-sheared ocean current (0.085802 m/s - 0.225561 m/s)
15:22:05 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:05 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012621703933467497 and 0.4992845709343615 m/s
15:22:05 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:05 DEBUG   opendrift:2085: ======================================================================
15:22:05 INFO    opendrift:2086: 2025-09-30 03:21:17.242042 - step 61 of 120 - 6000 active elements (0 deactivated)
15:22:05 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:05 DEBUG   opendrift:2094: ======================================================================
15:22:05 DEBUG   opendrift:2105:                34.49472756015996 <- latitude -> 35.18569113100813
15:22:05 DEBUG   opendrift:2105:                23.196958092230307 <- longitude -> 23.610510238767816
15:22:05 DEBUG   opendrift:2105:                -98.61097155218422 <- z -> 0.0
15:22:05 DEBUG   opendrift:2106: ---------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:05 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:05 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:05 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:05 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:05 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:05 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:05 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:05 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:05 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:05 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:05 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:05 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:05 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:05 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:05 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:05 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 03:00:00 (before)
                2025-09-30 06:00:00 (after)
15:22:05 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:05 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:06 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:06 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:06 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:06 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:06 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 14x25x21) for time after (2025-09-30 06:00:00)
15:22:06 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:06 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:06 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 03:00:00, weight 0.88) and
                      after (2025-09-30 06:00:00, weight 0.12) in time
15:22:06 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:06 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:06 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:06 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:06 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:06 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:06 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:06 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:06 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:06 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:06 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 03:00:00 (before)
                2025-09-30 06:00:00 (after)
15:22:06 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:06 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:06 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:06 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:06 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:06 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2025-09-30 06:00:00)
15:22:06 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:06 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:06 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 03:00:00, weight 0.88) and
                      after (2025-09-30 06:00:00, weight 0.12) in time
15:22:06 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:06 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:06 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:06 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:06 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:06 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:06 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:06 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:06 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.416345 (min) 0.0726576 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.382962 (min) 0.112531 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.54723 (min) 3.73581 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.57659 (min) -4.95839 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:06 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:06 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.663696, mean: 1.215981, max: 1.369844
15:22:06 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:06 DEBUG   opendrift.models.physics_methods:878:    min: 4.438274, mean: 6.003549, max: 6.376248
15:22:06 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.438274, mean: 6.003549, max: 6.376248
15:22:06 DEBUG   opendrift:689: No elements hit coastline.
15:22:06 DEBUG   opendrift:1683: No elements to deactivate
15:22:06 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:06 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:06 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:06 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:06 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:06 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:06 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:06 DEBUG   opendrift.models.physics_methods:878:    min: 4.438274, mean: 6.003548, max: 6.376247
15:22:06 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:06 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.033681, dN_50: 0.002643
15:22:07 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:07 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.020096082865009943
15:22:07 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:07 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:07 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:07 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2133 surface elements
15:22:07 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2133 surface elements
15:22:07 DEBUG   opendrift.models.physics_methods:732: Advecting 2136 of 6000 elements above 0.100m with wind-sheared ocean current (0.006499 m/s - 0.223867 m/s)
15:22:07 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:07 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001994767225313018 and 0.4297921360434717 m/s
15:22:07 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:07 DEBUG   opendrift:2085: ======================================================================
15:22:07 INFO    opendrift:2086: 2025-09-30 04:21:17.242042 - step 62 of 120 - 6000 active elements (0 deactivated)
15:22:07 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:07 DEBUG   opendrift:2094: ======================================================================
15:22:07 DEBUG   opendrift:2105:                34.4862595830737 <- latitude -> 35.188791434952215
15:22:07 DEBUG   opendrift:2105:                23.188215645395022 <- longitude -> 23.607682772628117
15:22:07 DEBUG   opendrift:2105:                -97.83565754806904 <- z -> 0.0
15:22:07 DEBUG   opendrift:2106: ---------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:07 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:07 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 03:00:00 (before)
                2025-09-30 06:00:00 (after)
15:22:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 03:00:00, weight 0.55) and
                      after (2025-09-30 06:00:00, weight 0.45) in time
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:07 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 03:00:00 (before)
                2025-09-30 06:00:00 (after)
15:22:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 03:00:00, weight 0.55) and
                      after (2025-09-30 06:00:00, weight 0.45) in time
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:07 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:07 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:07 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:07 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:07 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.43097 (min) 0.0961988 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.362707 (min) 0.0806997 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.03461 (min) 3.63017 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.28751 (min) -4.64728 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:07 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.557624, mean: 1.106703, max: 1.201889
15:22:07 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:07 DEBUG   opendrift.models.physics_methods:878:    min: 4.068183, mean: 5.727941, max: 5.972578
15:22:07 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.068183, mean: 5.727941, max: 5.972578
15:22:07 DEBUG   opendrift:689: No elements hit coastline.
15:22:07 DEBUG   opendrift:1683: No elements to deactivate
15:22:07 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:07 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:07 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:07 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:07 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:07 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:07 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:07 DEBUG   opendrift.models.physics_methods:878:    min: 4.068183, mean: 5.727942, max: 5.972578
15:22:07 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:07 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.036069, dN_50: 0.002831
15:22:07 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:07 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.0176326441445536
15:22:07 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:07 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:07 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:07 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2132 surface elements
15:22:07 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2131 surface elements
15:22:07 DEBUG   opendrift.models.physics_methods:732: Advecting 2132 of 6000 elements above 0.100m with wind-sheared ocean current (0.047824 m/s - 0.209694 m/s)
15:22:07 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:07 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018460397509442862 and 0.42786412307769117 m/s
15:22:07 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:07 DEBUG   opendrift:2085: ======================================================================
15:22:07 INFO    opendrift:2086: 2025-09-30 05:21:17.242042 - step 63 of 120 - 6000 active elements (0 deactivated)
15:22:07 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:07 DEBUG   opendrift:2094: ======================================================================
15:22:07 DEBUG   opendrift:2105:                34.48306286712325 <- latitude -> 35.19821853496422
15:22:07 DEBUG   opendrift:2105:                23.17504575805036 <- longitude -> 23.611242465715073
15:22:07 DEBUG   opendrift:2105:                -97.1027465930166 <- z -> 0.0
15:22:07 DEBUG   opendrift:2106: ---------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:07 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:07 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 03:00:00 (before)
                2025-09-30 06:00:00 (after)
15:22:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 03:00:00, weight 0.22) and
                      after (2025-09-30 06:00:00, weight 0.78) in time
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:07 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 03:00:00 (before)
                2025-09-30 06:00:00 (after)
15:22:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 03:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 03:00:00, weight 0.22) and
                      after (2025-09-30 06:00:00, weight 0.78) in time
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:07 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:07 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:07 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:07 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:07 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.43433 (min) 0.109966 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.341718 (min) 0.0889734 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.558632 (min) 3.55801 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.00526 (min) -4.34618 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:07 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:07 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.472354, mean: 1.008046, max: 1.105095
15:22:07 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:07 DEBUG   opendrift.models.physics_methods:878:    min: 3.744236, mean: 5.466807, max: 5.727028
15:22:07 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.744236, mean: 5.466807, max: 5.727028
15:22:07 DEBUG   opendrift:689: No elements hit coastline.
15:22:07 DEBUG   opendrift:1683: No elements to deactivate
15:22:07 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:07 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:07 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:07 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:07 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:07 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:07 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:07 DEBUG   opendrift.models.physics_methods:878:    min: 3.744236, mean: 5.466807, max: 5.727028
15:22:07 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:07 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.038594, dN_50: 0.003029
15:22:07 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:07 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.016212930189632324
15:22:07 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:07 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:07 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:07 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2132 surface elements
15:22:07 DEBUG   opendrift.models.physics_methods:732: Advecting 2133 of 6000 elements above 0.100m with wind-sheared ocean current (0.011659 m/s - 0.198849 m/s)
15:22:07 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:07 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003418578226658486 and 0.5079824958354799 m/s
15:22:07 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:07 DEBUG   opendrift:2085: ======================================================================
15:22:07 INFO    opendrift:2086: 2025-09-30 06:21:17.242042 - step 64 of 120 - 6000 active elements (0 deactivated)
15:22:07 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:07 DEBUG   opendrift:2094: ======================================================================
15:22:07 DEBUG   opendrift:2105:                34.47373868162295 <- latitude -> 35.19394735946293
15:22:07 DEBUG   opendrift:2105:                23.173770427895775 <- longitude -> 23.61446887303922
15:22:07 DEBUG   opendrift:2105:                -96.05944747054178 <- z -> 0.0
15:22:07 DEBUG   opendrift:2106: ---------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:07 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:07 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 06:00:00 (before)
                2025-09-30 09:00:00 (after)
15:22:07 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:07 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:07 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:07 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:07 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:07 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:07 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 15x26x21) for time after (2025-09-30 09:00:00)
15:22:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:07 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 06:00:00, weight 0.88) and
                      after (2025-09-30 09:00:00, weight 0.12) in time
15:22:07 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:07 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:07 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:07 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:07 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:07 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:07 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:07 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 06:00:00 (before)
                2025-09-30 09:00:00 (after)
15:22:07 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:08 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:08 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:08 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:08 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:08 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2025-09-30 09:00:00)
15:22:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 06:00:00, weight 0.88) and
                      after (2025-09-30 09:00:00, weight 0.12) in time
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:08 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.443327 (min) 0.125811 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.328108 (min) 0.0924697 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.388097 (min) 3.50208 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.65668 (min) -4.11558 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:08 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.420381, mean: 0.911021, max: 1.012806
15:22:08 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:08 DEBUG   opendrift.models.physics_methods:878:    min: 3.532246, mean: 5.197039, max: 5.482677
15:22:08 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.532246, mean: 5.197039, max: 5.482677
15:22:08 DEBUG   opendrift:689: No elements hit coastline.
15:22:08 DEBUG   opendrift:1683: No elements to deactivate
15:22:08 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:08 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:08 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:08 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:08 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:08 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:08 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:08 DEBUG   opendrift.models.physics_methods:878:    min: 3.532246, mean: 5.197039, max: 5.482677
15:22:08 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:08 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.041302, dN_50: 0.003241
15:22:08 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:08 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.014859302121160952
15:22:08 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:08 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:08 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:08 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2131 surface elements
15:22:08 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2130 surface elements
15:22:08 DEBUG   opendrift.models.physics_methods:732: Advecting 2134 of 6000 elements above 0.100m with wind-sheared ocean current (0.012686 m/s - 0.189230 m/s)
15:22:08 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:08 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00183339485427714 and 0.4370600639281383 m/s
15:22:08 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:08 DEBUG   opendrift:2085: ======================================================================
15:22:08 INFO    opendrift:2086: 2025-09-30 07:21:17.242042 - step 65 of 120 - 6000 active elements (0 deactivated)
15:22:08 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:08 DEBUG   opendrift:2094: ======================================================================
15:22:08 DEBUG   opendrift:2105:                34.46831151363361 <- latitude -> 35.19889326957697
15:22:08 DEBUG   opendrift:2105:                23.17513134207645 <- longitude -> 23.614291814626558
15:22:08 DEBUG   opendrift:2105:                -94.88947353786297 <- z -> 0.0
15:22:08 DEBUG   opendrift:2106: ---------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:08 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:08 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:08 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:08 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:08 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:08 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:08 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:08 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 06:00:00 (before)
                2025-09-30 09:00:00 (after)
15:22:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 06:00:00, weight 0.55) and
                      after (2025-09-30 09:00:00, weight 0.45) in time
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:08 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:08 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:08 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 06:00:00 (before)
                2025-09-30 09:00:00 (after)
15:22:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 06:00:00, weight 0.55) and
                      after (2025-09-30 09:00:00, weight 0.45) in time
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:08 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.43432 (min) 0.121392 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.323401 (min) 0.0816085 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.676797 (min) 3.41846 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.21465 (min) -3.74634 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:08 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.406147, mean: 0.809145, max: 0.877169
15:22:08 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:08 DEBUG   opendrift.models.physics_methods:878:    min: 3.471932, mean: 4.897674, max: 5.102363
15:22:08 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.471932, mean: 4.897674, max: 5.102363
15:22:08 DEBUG   opendrift:689: No elements hit coastline.
15:22:08 DEBUG   opendrift:1683: No elements to deactivate
15:22:08 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:08 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:08 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:08 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:08 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:08 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:08 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:08 DEBUG   opendrift.models.physics_methods:878:    min: 3.471932, mean: 4.897674, max: 5.102363
15:22:08 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:08 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.044252, dN_50: 0.003473
15:22:08 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:08 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.012869887597776762
15:22:08 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:08 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:08 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:08 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2130 surface elements
15:22:08 DEBUG   opendrift.models.physics_methods:732: Advecting 2131 of 6000 elements above 0.100m with wind-sheared ocean current (0.081851 m/s - 0.178658 m/s)
15:22:08 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:08 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015264323954698302 and 0.4834299615238865 m/s
15:22:08 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:08 DEBUG   opendrift:2085: ======================================================================
15:22:08 INFO    opendrift:2086: 2025-09-30 08:21:17.242042 - step 66 of 120 - 6000 active elements (0 deactivated)
15:22:08 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:08 DEBUG   opendrift:2094: ======================================================================
15:22:08 DEBUG   opendrift:2105:                34.465018244343675 <- latitude -> 35.19052437463495
15:22:08 DEBUG   opendrift:2105:                23.16220766321324 <- longitude -> 23.611237361910845
15:22:08 DEBUG   opendrift:2105:                -94.37312555933015 <- z -> 0.0
15:22:08 DEBUG   opendrift:2106: ---------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:08 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:08 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:08 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:08 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:08 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:08 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:08 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:08 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 06:00:00 (before)
                2025-09-30 09:00:00 (after)
15:22:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 06:00:00, weight 0.22) and
                      after (2025-09-30 09:00:00, weight 0.78) in time
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:08 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:08 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:08 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:08 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 06:00:00 (before)
                2025-09-30 09:00:00 (after)
15:22:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 06:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:08 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 06:00:00, weight 0.22) and
                      after (2025-09-30 09:00:00, weight 0.78) in time
15:22:08 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:08 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:08 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:08 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:08 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.425303 (min) 0.102805 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.313088 (min) 0.071286 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.02455 (min) 3.32739 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.78355 (min) -3.34121 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:08 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:08 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.381008, mean: 0.716720, max: 0.822687
15:22:08 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:08 DEBUG   opendrift.models.physics_methods:878:    min: 3.362767, mean: 4.608125, max: 4.941364
15:22:08 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.362767, mean: 4.608125, max: 4.941364
15:22:08 DEBUG   opendrift:689: No elements hit coastline.
15:22:08 DEBUG   opendrift:1683: No elements to deactivate
15:22:08 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:08 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:08 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:08 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:08 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:08 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:08 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:08 DEBUG   opendrift.models.physics_methods:878:    min: 3.362767, mean: 4.608125, max: 4.941364
15:22:08 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:08 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.047403, dN_50: 0.003720
15:22:08 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:08 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.012070772630652375
15:22:08 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:08 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:08 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:09 DEBUG   opendrift.models.physics_methods:732: Advecting 2133 of 6000 elements above 0.100m with wind-sheared ocean current (0.086451 m/s - 0.173489 m/s)
15:22:09 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:09 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008236795626306472 and 0.4439447692839153 m/s
15:22:09 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:09 DEBUG   opendrift:2085: ======================================================================
15:22:09 INFO    opendrift:2086: 2025-09-30 09:21:17.242042 - step 67 of 120 - 6000 active elements (0 deactivated)
15:22:09 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:09 DEBUG   opendrift:2094: ======================================================================
15:22:09 DEBUG   opendrift:2105:                34.45777404630588 <- latitude -> 35.189050561316165
15:22:09 DEBUG   opendrift:2105:                23.149998052564467 <- longitude -> 23.6105574030284
15:22:09 DEBUG   opendrift:2105:                -93.53976780895576 <- z -> 0.0
15:22:09 DEBUG   opendrift:2106: ---------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:09 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:09 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:09 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:09 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:09 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:09 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:09 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:09 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:09 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:09 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:09 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:09 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:09 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:09 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:09 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:09 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:09 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:09 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 09:00:00 (before)
                2025-09-30 12:00:00 (after)
15:22:09 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:09 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:09 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:09 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:09 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:09 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:09 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 15x26x21) for time after (2025-09-30 12:00:00)
15:22:09 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:09 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:09 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:09 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:09 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 09:00:00, weight 0.88) and
                      after (2025-09-30 12:00:00, weight 0.12) in time
15:22:09 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:09 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:09 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:09 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:09 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:09 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:09 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:09 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:09 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 09:00:00 (before)
                2025-09-30 12:00:00 (after)
15:22:09 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:09 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:10 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:10 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:10 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:10 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2025-09-30 12:00:00)
15:22:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 09:00:00, weight 0.88) and
                      after (2025-09-30 12:00:00, weight 0.12) in time
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:10 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.414451 (min) 0.0909344 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.303833 (min) 0.0515978 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.21078 (min) 3.47319 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.59557 (min) -3.05221 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:10 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.390492, mean: 0.678432, max: 0.816018
15:22:10 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:10 DEBUG   opendrift.models.physics_methods:878:    min: 3.404363, mean: 4.481566, max: 4.921296
15:22:10 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.404363, mean: 4.481566, max: 4.921296
15:22:10 DEBUG   opendrift:689: No elements hit coastline.
15:22:10 DEBUG   opendrift:1683: No elements to deactivate
15:22:10 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:10 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:10 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:10 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:10 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:10 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:10 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:10 DEBUG   opendrift.models.physics_methods:878:    min: 3.404363, mean: 4.481566, max: 4.921296
15:22:10 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:10 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.049939, dN_50: 0.003919
15:22:10 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:10 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.011972961499505658
15:22:10 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:10 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:10 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:10 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2131 surface elements
15:22:10 DEBUG   opendrift.models.physics_methods:732: Advecting 2134 of 6000 elements above 0.100m with wind-sheared ocean current (0.041432 m/s - 0.172784 m/s)
15:22:10 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:10 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002490704636796676 and 0.46934487437515293 m/s
15:22:10 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:10 DEBUG   opendrift:2085: ======================================================================
15:22:10 INFO    opendrift:2086: 2025-09-30 10:21:17.242042 - step 68 of 120 - 6000 active elements (0 deactivated)
15:22:10 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:10 DEBUG   opendrift:2094: ======================================================================
15:22:10 DEBUG   opendrift:2105:                34.44915776354084 <- latitude -> 35.18291062193498
15:22:10 DEBUG   opendrift:2105:                23.130068257500575 <- longitude -> 23.61320146930236
15:22:10 DEBUG   opendrift:2105:                -92.70922893539971 <- z -> 0.0
15:22:10 DEBUG   opendrift:2106: ---------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:10 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:10 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 09:00:00 (before)
                2025-09-30 12:00:00 (after)
15:22:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 09:00:00, weight 0.55) and
                      after (2025-09-30 12:00:00, weight 0.45) in time
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:10 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 09:00:00 (before)
                2025-09-30 12:00:00 (after)
15:22:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 09:00:00, weight 0.55) and
                      after (2025-09-30 12:00:00, weight 0.45) in time
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:10 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.412246 (min) 0.0920124 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.332262 (min) 0.04005 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.1843 (min) 3.53706 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.8915 (min) -3.41639 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:10 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.422247, mean: 0.726426, max: 0.857475
15:22:10 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:10 DEBUG   opendrift.models.physics_methods:878:    min: 3.540076, mean: 4.637232, max: 5.044759
15:22:10 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.540076, mean: 4.637232, max: 5.044759
15:22:10 DEBUG   opendrift:689: No elements hit coastline.
15:22:10 DEBUG   opendrift:1683: No elements to deactivate
15:22:10 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:10 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:10 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:10 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:10 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:10 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:10 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:10 DEBUG   opendrift.models.physics_methods:878:    min: 3.540076, mean: 4.637232, max: 5.044759
15:22:10 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:10 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.051040, dN_50: 0.004006
15:22:10 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:10 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01258102780812424
15:22:10 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:10 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:10 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:10 DEBUG   opendrift.models.physics_methods:732: Advecting 2136 of 6000 elements above 0.100m with wind-sheared ocean current (0.050921 m/s - 0.177119 m/s)
15:22:10 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:10 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002231555021133038 and 0.4543026735095814 m/s
15:22:10 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:10 DEBUG   opendrift:2085: ======================================================================
15:22:10 INFO    opendrift:2086: 2025-09-30 11:21:17.242042 - step 69 of 120 - 6000 active elements (0 deactivated)
15:22:10 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:10 DEBUG   opendrift:2094: ======================================================================
15:22:10 DEBUG   opendrift:2105:                34.44533046122964 <- latitude -> 35.18188507374685
15:22:10 DEBUG   opendrift:2105:                23.111713090478094 <- longitude -> 23.618192751303805
15:22:10 DEBUG   opendrift:2105:                -91.65992826018963 <- z -> 0.0
15:22:10 DEBUG   opendrift:2106: ---------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:10 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:10 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 09:00:00 (before)
                2025-09-30 12:00:00 (after)
15:22:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 09:00:00, weight 0.22) and
                      after (2025-09-30 12:00:00, weight 0.78) in time
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:10 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 09:00:00 (before)
                2025-09-30 12:00:00 (after)
15:22:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 09:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:10 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 09:00:00, weight 0.22) and
                      after (2025-09-30 12:00:00, weight 0.78) in time
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:10 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:10 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.412638 (min) 0.0945131 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.406515 (min) 0.0596942 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.12622 (min) 3.73761 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.21556 (min) -3.82625 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:10 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:10 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.457419, mean: 0.778010, max: 0.907412
15:22:10 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:10 DEBUG   opendrift.models.physics_methods:878:    min: 3.684568, mean: 4.798513, max: 5.189577
15:22:10 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.684568, mean: 4.798513, max: 5.189577
15:22:10 DEBUG   opendrift:689: No elements hit coastline.
15:22:10 DEBUG   opendrift:1683: No elements to deactivate
15:22:10 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:10 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:10 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:10 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:10 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:10 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:10 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:10 DEBUG   opendrift.models.physics_methods:878:    min: 3.684568, mean: 4.798512, max: 5.189577
15:22:10 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:10 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.052123, dN_50: 0.004091
15:22:10 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:10 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.013313468992532324
15:22:10 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:10 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:10 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:10 DEBUG   opendrift.models.physics_methods:732: Advecting 2138 of 6000 elements above 0.100m with wind-sheared ocean current (0.061962 m/s - 0.182203 m/s)
15:22:10 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:10 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006608216858477313 and 0.472667798760554 m/s
15:22:10 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:10 DEBUG   opendrift:2085: ======================================================================
15:22:10 INFO    opendrift:2086: 2025-09-30 12:21:17.242042 - step 70 of 120 - 6000 active elements (0 deactivated)
15:22:10 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:10 DEBUG   opendrift:2094: ======================================================================
15:22:10 DEBUG   opendrift:2105:                34.44058498782847 <- latitude -> 35.18169030624941
15:22:10 DEBUG   opendrift:2105:                23.09200557141877 <- longitude -> 23.620844172490408
15:22:10 DEBUG   opendrift:2105:                -90.44266730522772 <- z -> 0.0
15:22:10 DEBUG   opendrift:2106: ---------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:10 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:10 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:10 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:10 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:10 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:10 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:10 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:10 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:10 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 12:00:00 (before)
                2025-09-30 15:00:00 (after)
15:22:10 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:11 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:11 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:11 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:11 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:11 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:11 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 16x27x21) for time after (2025-09-30 15:00:00)
15:22:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:11 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:11 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 12:00:00, weight 0.88) and
                      after (2025-09-30 15:00:00, weight 0.12) in time
15:22:11 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:11 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:11 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:11 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:11 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:11 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 12:00:00 (before)
                2025-09-30 15:00:00 (after)
15:22:11 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:11 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:11 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:11 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:11 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:11 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2025-09-30 15:00:00)
15:22:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:11 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:11 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 12:00:00, weight 0.88) and
                      after (2025-09-30 15:00:00, weight 0.12) in time
15:22:11 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:11 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:11 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:11 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:11 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:11 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:11 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:11 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.419611 (min) 0.0837997 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.442201 (min) 0.0714584 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.12639 (min) 3.83154 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.53668 (min) -4.16498 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:11 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.503476, mean: 0.848258, max: 1.000916
15:22:11 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:11 DEBUG   opendrift.models.physics_methods:878:    min: 3.865619, mean: 5.009853, max: 5.450401
15:22:11 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.865619, mean: 5.009853, max: 5.450401
15:22:11 DEBUG   opendrift:689: No elements hit coastline.
15:22:11 DEBUG   opendrift:1683: No elements to deactivate
15:22:11 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:11 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:11 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:11 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:11 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:11 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:11 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:11 DEBUG   opendrift.models.physics_methods:878:    min: 3.865619, mean: 5.009853, max: 5.450401
15:22:11 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:11 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.052580, dN_50: 0.004126
15:22:11 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:11 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.014684915518157413
15:22:11 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:11 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:11 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:11 DEBUG   opendrift.models.physics_methods:732: Advecting 2137 of 6000 elements above 0.100m with wind-sheared ocean current (0.120857 m/s - 0.191361 m/s)
15:22:11 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:11 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022706637229197016 and 0.4736276003604062 m/s
15:22:11 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:11 DEBUG   opendrift:2085: ======================================================================
15:22:11 INFO    opendrift:2086: 2025-09-30 13:21:17.242042 - step 71 of 120 - 6000 active elements (0 deactivated)
15:22:11 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:11 DEBUG   opendrift:2094: ======================================================================
15:22:11 DEBUG   opendrift:2105:                34.44184785159829 <- latitude -> 35.17844430712509
15:22:11 DEBUG   opendrift:2105:                23.078665506472035 <- longitude -> 23.619566624495054
15:22:11 DEBUG   opendrift:2105:                -89.38927330484357 <- z -> 0.0
15:22:11 DEBUG   opendrift:2106: ---------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:11 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:11 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:11 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:11 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:11 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:11 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:11 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:11 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:11 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:11 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:11 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:11 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:11 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:11 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 12:00:00 (before)
                2025-09-30 15:00:00 (after)
15:22:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:11 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:11 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 12:00:00, weight 0.55) and
                      after (2025-09-30 15:00:00, weight 0.45) in time
15:22:11 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:11 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:11 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:11 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:11 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:11 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:11 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 12:00:00 (before)
                2025-09-30 15:00:00 (after)
15:22:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:11 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:11 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 12:00:00, weight 0.55) and
                      after (2025-09-30 15:00:00, weight 0.45) in time
15:22:11 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:11 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:11 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:11 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:11 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:11 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:11 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:11 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.427289 (min) 0.051837 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.446123 (min) 0.0719583 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.30928 (min) 3.74553 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.91984 (min) -4.43455 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:11 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:11 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.566752, mean: 0.949017, max: 1.187281
15:22:11 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:11 DEBUG   opendrift.models.physics_methods:878:    min: 4.101344, mean: 5.298128, max: 5.936170
15:22:11 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.101344, mean: 5.298128, max: 5.936170
15:22:11 DEBUG   opendrift:689: No elements hit coastline.
15:22:11 DEBUG   opendrift:1683: No elements to deactivate
15:22:11 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:11 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:11 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:11 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:11 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:11 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:11 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:11 DEBUG   opendrift.models.physics_methods:878:    min: 4.101344, mean: 5.298128, max: 5.936170
15:22:11 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:11 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.052063, dN_50: 0.004086
15:22:11 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:11 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01741837843124536
15:22:11 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:11 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:11 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:11 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2138 surface elements
15:22:11 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2137 surface elements
15:22:12 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2136 surface elements
15:22:12 DEBUG   opendrift.models.physics_methods:732: Advecting 2136 of 6000 elements above 0.100m with wind-sheared ocean current (0.119543 m/s - 0.208416 m/s)
15:22:12 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:12 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020564711994003424 and 0.4820662417133035 m/s
15:22:12 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:12 DEBUG   opendrift:2085: ======================================================================
15:22:12 INFO    opendrift:2086: 2025-09-30 14:21:17.242042 - step 72 of 120 - 6000 active elements (0 deactivated)
15:22:12 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:12 DEBUG   opendrift:2094: ======================================================================
15:22:12 DEBUG   opendrift:2105:                34.43846142200619 <- latitude -> 35.181932255748414
15:22:12 DEBUG   opendrift:2105:                23.06179700539098 <- longitude -> 23.61806845333015
15:22:12 DEBUG   opendrift:2105:                -88.56697775956323 <- z -> 0.0
15:22:12 DEBUG   opendrift:2106: ---------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:12 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:12 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:12 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:12 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:12 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:12 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:12 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:12 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:12 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:12 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:12 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:12 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:12 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:12 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 12:00:00 (before)
                2025-09-30 15:00:00 (after)
15:22:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:12 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:12 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:12 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:12 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 12:00:00, weight 0.22) and
                      after (2025-09-30 15:00:00, weight 0.78) in time
15:22:12 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:12 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:12 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:12 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:12 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:12 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 12:00:00 (before)
                2025-09-30 15:00:00 (after)
15:22:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 12:00:00) in space  (linearNDFast)
15:22:12 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:12 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:12 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:12 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 12:00:00, weight 0.22) and
                      after (2025-09-30 15:00:00, weight 0.78) in time
15:22:12 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:12 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:12 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:12 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:12 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:12 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:12 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:12 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.436502 (min) 0.0323694 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.503246 (min) 0.0749821 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.42879 (min) 4.08574 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.30961 (min) -4.69644 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:12 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:12 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.632616, mean: 1.053241, max: 1.384347
15:22:12 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:12 DEBUG   opendrift.models.physics_methods:878:    min: 4.333108, mean: 5.579826, max: 6.409913
15:22:12 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.333108, mean: 5.579826, max: 6.409913
15:22:12 DEBUG   opendrift:689: No elements hit coastline.
15:22:12 DEBUG   opendrift:1683: No elements to deactivate
15:22:12 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:12 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:12 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:12 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:12 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:12 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:12 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:12 DEBUG   opendrift.models.physics_methods:878:    min: 4.333108, mean: 5.579825, max: 6.409913
15:22:12 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:12 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.051724, dN_50: 0.004059
15:22:12 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:12 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.02030880612184712
15:22:12 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:12 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:12 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:12 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2135 surface elements
15:22:12 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2134 surface elements
15:22:12 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2133 surface elements
15:22:12 DEBUG   opendrift.models.physics_methods:732: Advecting 2135 of 6000 elements above 0.100m with wind-sheared ocean current (0.020578 m/s - 0.225049 m/s)
15:22:12 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:12 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014569705931252752 and 0.4960424585884437 m/s
15:22:12 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:12 DEBUG   opendrift:2085: ======================================================================
15:22:12 INFO    opendrift:2086: 2025-09-30 15:21:17.242042 - step 73 of 120 - 6000 active elements (0 deactivated)
15:22:12 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:12 DEBUG   opendrift:2094: ======================================================================
15:22:12 DEBUG   opendrift:2105:                34.43427907636211 <- latitude -> 35.187952946564245
15:22:12 DEBUG   opendrift:2105:                23.039344429950493 <- longitude -> 23.617107380072838
15:22:12 DEBUG   opendrift:2105:                -86.9504028218022 <- z -> 0.0
15:22:12 DEBUG   opendrift:2106: ---------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:12 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:12 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:12 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:12 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:12 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:12 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:12 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:12 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:12 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:12 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:12 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:12 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:12 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:12 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:12 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:12 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 15:00:00 (before)
                2025-09-30 18:00:00 (after)
15:22:12 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:12 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:13 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:13 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:13 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:13 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:13 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 16x27x20) for time after (2025-09-30 18:00:00)
15:22:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:13 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:13 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 15:00:00, weight 0.88) and
                      after (2025-09-30 18:00:00, weight 0.12) in time
15:22:13 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:13 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:13 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:13 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:13 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:13 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 15:00:00 (before)
                2025-09-30 18:00:00 (after)
15:22:13 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:13 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:13 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:13 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:13 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:13 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2025-09-30 18:00:00)
15:22:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:13 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:13 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 15:00:00, weight 0.88) and
                      after (2025-09-30 18:00:00, weight 0.12) in time
15:22:13 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:13 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:13 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:13 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:13 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:13 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:13 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:13 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.447166 (min) 0.0334658 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.497493 (min) 0.089171 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.29746 (min) 4.18772 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.64271 (min) -4.82276 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:13 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.656382, mean: 1.090663, max: 1.516440
15:22:13 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:13 DEBUG   opendrift.models.physics_methods:878:    min: 4.413751, mean: 5.675777, max: 6.708760
15:22:13 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.413751, mean: 5.675777, max: 6.708760
15:22:13 DEBUG   opendrift:689: No elements hit coastline.
15:22:13 DEBUG   opendrift:1683: No elements to deactivate
15:22:13 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:13 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:13 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:13 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:13 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:13 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:13 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:13 DEBUG   opendrift.models.physics_methods:878:    min: 4.413751, mean: 5.675776, max: 6.708760
15:22:13 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:13 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.052493, dN_50: 0.004120
15:22:13 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:13 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.022246251320404576
15:22:13 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:13 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:13 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:13 DEBUG   opendrift.models.physics_methods:732: Advecting 2136 of 6000 elements above 0.100m with wind-sheared ocean current (0.099734 m/s - 0.235541 m/s)
15:22:13 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:13 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0032247101702266804 and 0.4437068753226804 m/s
15:22:13 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:13 DEBUG   opendrift:2085: ======================================================================
15:22:13 INFO    opendrift:2086: 2025-09-30 16:21:17.242042 - step 74 of 120 - 6000 active elements (0 deactivated)
15:22:13 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:13 DEBUG   opendrift:2094: ======================================================================
15:22:13 DEBUG   opendrift:2105:                34.43028395956907 <- latitude -> 35.186230888795166
15:22:13 DEBUG   opendrift:2105:                23.02286625327102 <- longitude -> 23.61907505502553
15:22:13 DEBUG   opendrift:2105:                -86.24458922070826 <- z -> 0.0
15:22:13 DEBUG   opendrift:2106: ---------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:13 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:13 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:13 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:13 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:13 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:13 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:13 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:13 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:13 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:13 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:13 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:13 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:13 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:13 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 15:00:00 (before)
                2025-09-30 18:00:00 (after)
15:22:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:13 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:13 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 15:00:00, weight 0.55) and
                      after (2025-09-30 18:00:00, weight 0.45) in time
15:22:13 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:13 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:13 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:13 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:13 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:13 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:13 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 15:00:00 (before)
                2025-09-30 18:00:00 (after)
15:22:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:13 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:13 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 15:00:00, weight 0.55) and
                      after (2025-09-30 18:00:00, weight 0.45) in time
15:22:13 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:13 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:13 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:13 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:13 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:13 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:13 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:13 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.458691 (min) 0.0129825 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.467556 (min) 0.10693 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.895723 (min) 3.76892 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.78261 (min) -4.74198 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:13 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:13 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.616825, mean: 1.005224, max: 1.475699
15:22:13 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:13 DEBUG   opendrift.models.physics_methods:878:    min: 4.278688, mean: 5.445526, max: 6.618026
15:22:13 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.278688, mean: 5.445526, max: 6.618026
15:22:13 DEBUG   opendrift:689: No elements hit coastline.
15:22:13 DEBUG   opendrift:1683: No elements to deactivate
15:22:13 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:13 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:13 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:13 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:13 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:13 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:13 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:13 DEBUG   opendrift.models.physics_methods:878:    min: 4.278688, mean: 5.445525, max: 6.618026
15:22:13 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:13 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.055109, dN_50: 0.004325
15:22:13 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:13 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.021648684292633592
15:22:13 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:13 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:13 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:14 DEBUG   opendrift.models.physics_methods:732: Advecting 2138 of 6000 elements above 0.100m with wind-sheared ocean current (0.101954 m/s - 0.232355 m/s)
15:22:14 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:14 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014750869169321947 and 0.4488142497854939 m/s
15:22:14 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:14 DEBUG   opendrift:2085: ======================================================================
15:22:14 INFO    opendrift:2086: 2025-09-30 17:21:17.242042 - step 75 of 120 - 6000 active elements (0 deactivated)
15:22:14 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:14 DEBUG   opendrift:2094: ======================================================================
15:22:14 DEBUG   opendrift:2105:                34.42410993891473 <- latitude -> 35.18981394050431
15:22:14 DEBUG   opendrift:2105:                23.00757724429238 <- longitude -> 23.614623822083452
15:22:14 DEBUG   opendrift:2105:                -85.11517901441403 <- z -> 0.0
15:22:14 DEBUG   opendrift:2106: ---------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:14 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:14 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:14 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:14 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:14 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:14 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:14 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:14 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:14 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:14 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:14 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:14 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:14 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:14 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 15:00:00 (before)
                2025-09-30 18:00:00 (after)
15:22:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:14 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:14 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 15:00:00, weight 0.22) and
                      after (2025-09-30 18:00:00, weight 0.78) in time
15:22:14 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:14 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:14 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:14 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:14 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:14 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 15:00:00 (before)
                2025-09-30 18:00:00 (after)
15:22:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 15:00:00) in space  (linearNDFast)
15:22:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:14 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:14 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 15:00:00, weight 0.22) and
                      after (2025-09-30 18:00:00, weight 0.78) in time
15:22:14 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:14 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:14 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:14 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:14 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:14 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:14 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:14 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.539298 (min) 0.0105755 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.44582 (min) 0.125931 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.417796 (min) 3.3533 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.92478 (min) -4.65597 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:14 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.581788, mean: 0.924413, max: 1.448513
15:22:14 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:14 DEBUG   opendrift.models.physics_methods:878:    min: 4.155392, mean: 5.217625, max: 6.556783
15:22:14 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.155392, mean: 5.217625, max: 6.556783
15:22:14 DEBUG   opendrift:689: No elements hit coastline.
15:22:14 DEBUG   opendrift:1683: No elements to deactivate
15:22:14 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:14 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:14 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:14 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:14 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:14 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:14 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:14 DEBUG   opendrift.models.physics_methods:878:    min: 4.155392, mean: 5.217625, max: 6.556783
15:22:14 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:14 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.057799, dN_50: 0.004536
15:22:14 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:14 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.021249947836615855
15:22:14 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:14 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:14 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:14 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2136 surface elements
15:22:14 DEBUG   opendrift.models.physics_methods:732: Advecting 2135 of 6000 elements above 0.100m with wind-sheared ocean current (0.160055 m/s - 0.230205 m/s)
15:22:14 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:14 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011855506684656696 and 0.4420048441297224 m/s
15:22:14 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:14 DEBUG   opendrift:2085: ======================================================================
15:22:14 INFO    opendrift:2086: 2025-09-30 18:21:17.242042 - step 76 of 120 - 6000 active elements (0 deactivated)
15:22:14 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:14 DEBUG   opendrift:2094: ======================================================================
15:22:14 DEBUG   opendrift:2105:                34.419928799034835 <- latitude -> 35.19820547065079
15:22:14 DEBUG   opendrift:2105:                22.98326757537965 <- longitude -> 23.61560728327795
15:22:14 DEBUG   opendrift:2105:                -83.99327323748027 <- z -> 0.0
15:22:14 DEBUG   opendrift:2106: ---------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:14 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:14 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:14 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:14 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:14 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:14 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:14 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:14 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:14 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:14 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:14 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:14 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:14 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:14 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 18:00:00 (before)
                2025-09-30 21:00:00 (after)
15:22:14 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:14 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:14 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:14 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:14 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:14 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:14 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 17x27x20) for time after (2025-09-30 21:00:00)
15:22:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:14 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:14 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 18:00:00, weight 0.88) and
                      after (2025-09-30 21:00:00, weight 0.12) in time
15:22:14 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:14 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:14 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:14 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:14 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:14 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:14 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 18:00:00 (before)
                2025-09-30 21:00:00 (after)
15:22:14 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:14 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:14 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:14 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:14 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:14 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-09-30 21:00:00)
15:22:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:14 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:14 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 18:00:00, weight 0.88) and
                      after (2025-09-30 21:00:00, weight 0.12) in time
15:22:14 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:14 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:14 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:14 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:14 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:14 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:14 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:14 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.596354 (min) 0.0112461 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.409002 (min) 0.15577 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.11049 (min) 2.71098 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.81462 (min) -4.60486 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:14 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:15 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.556130, mean: 0.834073, max: 1.320286
15:22:15 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:15 DEBUG   opendrift.models.physics_methods:878:    min: 4.062727, mean: 4.957909, max: 6.259845
15:22:15 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.062727, mean: 4.957909, max: 6.259845
15:22:15 DEBUG   opendrift:689: No elements hit coastline.
15:22:15 DEBUG   opendrift:1683: No elements to deactivate
15:22:15 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:15 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:15 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:15 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:15 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:15 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:15 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:15 DEBUG   opendrift.models.physics_methods:878:    min: 4.062726, mean: 4.957909, max: 6.259845
15:22:15 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:15 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.061225, dN_50: 0.004805
15:22:15 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:15 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.019369199812319868
15:22:15 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:15 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:15 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:15 DEBUG   opendrift.models.physics_methods:732: Advecting 2139 of 6000 elements above 0.100m with wind-sheared ocean current (0.004941 m/s - 0.219780 m/s)
15:22:15 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:15 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008637224357893708 and 0.40770382933081495 m/s
15:22:15 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:15 DEBUG   opendrift:2085: ======================================================================
15:22:15 INFO    opendrift:2086: 2025-09-30 19:21:17.242042 - step 77 of 120 - 6000 active elements (0 deactivated)
15:22:15 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:15 DEBUG   opendrift:2094: ======================================================================
15:22:15 DEBUG   opendrift:2105:                34.41642294705034 <- latitude -> 35.200033962837516
15:22:15 DEBUG   opendrift:2105:                22.961987666202024 <- longitude -> 23.612605542533764
15:22:15 DEBUG   opendrift:2105:                -82.88012979915955 <- z -> 0.0
15:22:15 DEBUG   opendrift:2106: ---------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:15 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:15 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 18:00:00 (before)
                2025-09-30 21:00:00 (after)
15:22:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:15 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:15 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 18:00:00, weight 0.55) and
                      after (2025-09-30 21:00:00, weight 0.45) in time
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:15 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 18:00:00 (before)
                2025-09-30 21:00:00 (after)
15:22:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:15 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:15 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 18:00:00, weight 0.55) and
                      after (2025-09-30 21:00:00, weight 0.45) in time
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:15 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:15 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:15 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:15 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:15 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.634496 (min) 0.0090017 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.370019 (min) 0.177721 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.518049 (min) 2.67859 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.02167 (min) -4.51009 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:15 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.519255, mean: 0.732788, max: 0.957242
15:22:15 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:15 DEBUG   opendrift.models.physics_methods:878:    min: 3.925724, mean: 4.657581, max: 5.330164
15:22:15 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.925724, mean: 4.657581, max: 5.330164
15:22:15 DEBUG   opendrift:689: No elements hit coastline.
15:22:15 DEBUG   opendrift:1683: No elements to deactivate
15:22:15 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:15 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:15 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:15 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:15 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:15 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:15 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:15 DEBUG   opendrift.models.physics_methods:878:    min: 3.925724, mean: 4.657581, max: 5.330163
15:22:15 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:15 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.066090, dN_50: 0.005187
15:22:15 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:15 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.014044340396954718
15:22:15 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:15 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:15 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:15 DEBUG   opendrift.models.physics_methods:732: Advecting 2139 of 6000 elements above 0.100m with wind-sheared ocean current (0.128826 m/s - 0.187139 m/s)
15:22:15 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:15 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002417766513515703 and 0.4518652933650653 m/s
15:22:15 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:15 DEBUG   opendrift:2085: ======================================================================
15:22:15 INFO    opendrift:2086: 2025-09-30 20:21:17.242042 - step 78 of 120 - 6000 active elements (0 deactivated)
15:22:15 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:15 DEBUG   opendrift:2094: ======================================================================
15:22:15 DEBUG   opendrift:2105:                34.40981519383648 <- latitude -> 35.19888975297851
15:22:15 DEBUG   opendrift:2105:                22.943594845206686 <- longitude -> 23.603012443477933
15:22:15 DEBUG   opendrift:2105:                -82.07413106507374 <- z -> 0.0
15:22:15 DEBUG   opendrift:2106: ---------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:15 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:15 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 18:00:00 (before)
                2025-09-30 21:00:00 (after)
15:22:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:15 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:15 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 18:00:00, weight 0.22) and
                      after (2025-09-30 21:00:00, weight 0.78) in time
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:15 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 18:00:00 (before)
                2025-09-30 21:00:00 (after)
15:22:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 18:00:00) in space  (linearNDFast)
15:22:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:15 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:15 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 18:00:00, weight 0.22) and
                      after (2025-09-30 21:00:00, weight 0.78) in time
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:15 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:15 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:15 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:15 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:15 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.666667 (min) 0.0101945 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.344015 (min) 0.206374 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.900842 (min) 2.91037 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.30297 (min) -4.06728 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:15 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:15 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.406954, mean: 0.650399, max: 0.712132
15:22:15 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:15 DEBUG   opendrift.models.physics_methods:878:    min: 3.475381, mean: 4.392133, max: 4.597373
15:22:15 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.475381, mean: 4.392133, max: 4.597373
15:22:15 DEBUG   opendrift:689: No elements hit coastline.
15:22:15 DEBUG   opendrift:1683: No elements to deactivate
15:22:15 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:15 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:15 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:15 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:15 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:15 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:15 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:15 DEBUG   opendrift.models.physics_methods:878:    min: 3.475381, mean: 4.392132, max: 4.597373
15:22:15 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:15 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.071225, dN_50: 0.005590
15:22:15 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:15 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.010449233094212904
15:22:15 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:15 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:15 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:15 DEBUG   opendrift.models.physics_methods:732: Advecting 2140 of 6000 elements above 0.100m with wind-sheared ocean current (0.122019 m/s - 0.160676 m/s)
15:22:15 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:15 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002087991725624819 and 0.43864849271270356 m/s
15:22:15 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:15 DEBUG   opendrift:2085: ======================================================================
15:22:15 INFO    opendrift:2086: 2025-09-30 21:21:17.242042 - step 79 of 120 - 6000 active elements (0 deactivated)
15:22:15 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:15 DEBUG   opendrift:2094: ======================================================================
15:22:15 DEBUG   opendrift:2105:                34.409121717345485 <- latitude -> 35.19977863486749
15:22:15 DEBUG   opendrift:2105:                22.93483761057898 <- longitude -> 23.592482725510393
15:22:15 DEBUG   opendrift:2105:                -81.01709572959153 <- z -> 0.0
15:22:15 DEBUG   opendrift:2106: ---------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:15 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:15 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:15 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:15 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:15 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:15 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:15 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:15 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:15 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 21:00:00 (before)
                2025-10-01 00:00:00 (after)
15:22:15 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:15 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:16 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:16 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:16 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:16 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:16 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 18x27x20) for time after (2025-10-01 00:00:00)
15:22:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 21:00:00, weight 0.88) and
                      after (2025-10-01 00:00:00, weight 0.12) in time
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:16 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 21:00:00 (before)
                2025-10-01 00:00:00 (after)
15:22:16 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:16 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:16 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:16 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:16 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:16 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-10-01 00:00:00)
15:22:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 21:00:00, weight 0.88) and
                      after (2025-10-01 00:00:00, weight 0.12) in time
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:16 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.579956 (min) 0.00499515 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.335093 (min) 0.22515 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -1.04867 (min) 3.12411 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.94892 (min) -3.79241 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:16 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.357171, mean: 0.635634, max: 0.757403
15:22:16 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:16 DEBUG   opendrift.models.physics_methods:878:    min: 3.255874, mean: 4.340376, max: 4.741254
15:22:16 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.255874, mean: 4.340376, max: 4.741254
15:22:16 DEBUG   opendrift:689: No elements hit coastline.
15:22:16 DEBUG   opendrift:1683: No elements to deactivate
15:22:16 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:16 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:16 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:16 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:16 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:16 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:16 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:16 DEBUG   opendrift.models.physics_methods:878:    min: 3.255874, mean: 4.340376, max: 4.741253
15:22:16 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:16 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.074843, dN_50: 0.005874
15:22:16 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:16 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.011113243858335073
15:22:16 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:16 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:16 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:16 DEBUG   opendrift.models.physics_methods:732: Advecting 2141 of 6000 elements above 0.100m with wind-sheared ocean current (0.114312 m/s - 0.165445 m/s)
15:22:16 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:16 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00124022669809644 and 0.42770870160433777 m/s
15:22:16 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:16 DEBUG   opendrift:2085: ======================================================================
15:22:16 INFO    opendrift:2086: 2025-09-30 22:21:17.242042 - step 80 of 120 - 6000 active elements (0 deactivated)
15:22:16 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:16 DEBUG   opendrift:2094: ======================================================================
15:22:16 DEBUG   opendrift:2105:                34.39980067012875 <- latitude -> 35.20177205725572
15:22:16 DEBUG   opendrift:2105:                22.92288976899724 <- longitude -> 23.57854676745444
15:22:16 DEBUG   opendrift:2105:                -80.26823923543894 <- z -> 0.0
15:22:16 DEBUG   opendrift:2106: ---------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:16 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:16 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 21:00:00 (before)
                2025-10-01 00:00:00 (after)
15:22:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 21:00:00, weight 0.55) and
                      after (2025-10-01 00:00:00, weight 0.45) in time
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:16 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 21:00:00 (before)
                2025-10-01 00:00:00 (after)
15:22:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 21:00:00, weight 0.55) and
                      after (2025-10-01 00:00:00, weight 0.45) in time
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:16 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.552127 (min) 3.05841e-05 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.322998 (min) 0.225256 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.733172 (min) 3.39243 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.04677 (min) -3.86525 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:16 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.368527, mean: 0.726630, max: 0.909584
15:22:16 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:16 DEBUG   opendrift.models.physics_methods:878:    min: 3.307228, mean: 4.636031, max: 5.195782
15:22:16 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.307228, mean: 4.636031, max: 5.195782
15:22:16 DEBUG   opendrift:689: No elements hit coastline.
15:22:16 DEBUG   opendrift:1683: No elements to deactivate
15:22:16 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:16 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:16 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:16 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:16 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:16 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:16 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:16 DEBUG   opendrift.models.physics_methods:878:    min: 3.307228, mean: 4.636031, max: 5.195782
15:22:16 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:16 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.075286, dN_50: 0.005908
15:22:16 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:16 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.013345315870939428
15:22:16 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:16 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:16 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:16 DEBUG   opendrift.models.physics_methods:732: Advecting 2145 of 6000 elements above 0.100m with wind-sheared ocean current (0.031197 m/s - 0.182421 m/s)
15:22:16 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:16 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006278438647349281 and 0.4771005229423154 m/s
15:22:16 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:16 DEBUG   opendrift:2085: ======================================================================
15:22:16 INFO    opendrift:2086: 2025-09-30 23:21:17.242042 - step 81 of 120 - 6000 active elements (0 deactivated)
15:22:16 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:16 DEBUG   opendrift:2094: ======================================================================
15:22:16 DEBUG   opendrift:2105:                34.38714744293043 <- latitude -> 35.203906948255224
15:22:16 DEBUG   opendrift:2105:                22.909207951938846 <- longitude -> 23.566698272243638
15:22:16 DEBUG   opendrift:2105:                -79.22720696847736 <- z -> 0.0
15:22:16 DEBUG   opendrift:2106: ---------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:16 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:16 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 21:00:00 (before)
                2025-10-01 00:00:00 (after)
15:22:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 21:00:00, weight 0.22) and
                      after (2025-10-01 00:00:00, weight 0.78) in time
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:16 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:16 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:16 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:16 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-09-30 21:00:00 (before)
                2025-10-01 00:00:00 (after)
15:22:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-09-30 21:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:16 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-09-30 21:00:00, weight 0.22) and
                      after (2025-10-01 00:00:00, weight 0.78) in time
15:22:16 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:16 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:16 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:16 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:16 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.487103 (min) 0.0166884 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.318242 (min) 0.305773 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.423834 (min) 3.62198 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.50294 (min) -3.72709 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:16 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:16 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.346142, mean: 0.827487, max: 1.066060
15:22:16 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:16 DEBUG   opendrift.models.physics_methods:878:    min: 3.205213, mean: 4.941364, max: 5.624972
15:22:16 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.205213, mean: 4.941364, max: 5.624972
15:22:16 DEBUG   opendrift:689: No elements hit coastline.
15:22:17 DEBUG   opendrift:1683: No elements to deactivate
15:22:17 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:17 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:17 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:17 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:17 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:17 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:17 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:17 DEBUG   opendrift.models.physics_methods:878:    min: 3.205213, mean: 4.941363, max: 5.624972
15:22:17 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:17 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.075636, dN_50: 0.005936
15:22:17 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:17 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01564039678968484
15:22:17 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:17 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:17 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:17 DEBUG   opendrift.models.physics_methods:732: Advecting 2148 of 6000 elements above 0.100m with wind-sheared ocean current (0.048718 m/s - 0.197306 m/s)
15:22:17 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:17 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002672182542742612 and 0.43627284119716353 m/s
15:22:17 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:17 DEBUG   opendrift:2085: ======================================================================
15:22:17 INFO    opendrift:2086: 2025-10-01 00:21:17.242042 - step 82 of 120 - 6000 active elements (0 deactivated)
15:22:17 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:17 DEBUG   opendrift:2094: ======================================================================
15:22:17 DEBUG   opendrift:2105:                34.376300166890395 <- latitude -> 35.20402302843246
15:22:17 DEBUG   opendrift:2105:                22.88464847390145 <- longitude -> 23.55742621686144
15:22:17 DEBUG   opendrift:2105:                -78.47666143660133 <- z -> 0.0
15:22:17 DEBUG   opendrift:2106: ---------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:17 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:17 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:17 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:17 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:17 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:17 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:17 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:17 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:17 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:17 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:17 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:17 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:17 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:17 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:17 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:17 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:17 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:17 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 00:00:00 (before)
                2025-10-01 03:00:00 (after)
15:22:17 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:17 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:17 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:17 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:17 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:17 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:17 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 17x29x19) for time after (2025-10-01 03:00:00)
15:22:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:17 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:17 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:17 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:17 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 00:00:00, weight 0.88) and
                      after (2025-10-01 03:00:00, weight 0.12) in time
15:22:17 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:17 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:17 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:17 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:17 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:17 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:17 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:17 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 00:00:00 (before)
                2025-10-01 03:00:00 (after)
15:22:17 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:17 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:17 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:17 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:17 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:17 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-10-01 03:00:00)
15:22:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:17 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:17 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:17 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:17 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 00:00:00, weight 0.88) and
                      after (2025-10-01 03:00:00, weight 0.12) in time
15:22:17 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:17 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:17 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:17 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:17 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:17 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:17 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:17 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.471275 (min) 0.019562 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.300092 (min) 0.361552 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.254471 (min) 3.41481 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.93599 (min) -3.6803 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:17 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:17 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.334791, mean: 0.901692, max: 1.150758
15:22:17 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:17 DEBUG   opendrift.models.physics_methods:878:    min: 3.152217, mean: 5.157362, max: 5.844154
15:22:17 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.152217, mean: 5.157362, max: 5.844154
15:22:17 DEBUG   opendrift:689: No elements hit coastline.
15:22:17 DEBUG   opendrift:1683: No elements to deactivate
15:22:17 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:17 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:17 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:17 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:17 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:17 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:17 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:17 DEBUG   opendrift.models.physics_methods:878:    min: 3.152217, mean: 5.157362, max: 5.844154
15:22:17 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:17 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.076026, dN_50: 0.005966
15:22:17 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:17 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.016882691231478616
15:22:17 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:17 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:17 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:18 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2146 surface elements
15:22:18 DEBUG   opendrift.models.physics_methods:732: Advecting 2151 of 6000 elements above 0.100m with wind-sheared ocean current (0.097473 m/s - 0.205167 m/s)
15:22:18 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:18 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015741976871025494 and 0.46893661348350435 m/s
15:22:18 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:18 DEBUG   opendrift:2085: ======================================================================
15:22:18 INFO    opendrift:2086: 2025-10-01 01:21:17.242042 - step 83 of 120 - 6000 active elements (0 deactivated)
15:22:18 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:18 DEBUG   opendrift:2094: ======================================================================
15:22:18 DEBUG   opendrift:2105:                34.37338424240568 <- latitude -> 35.20272922951665
15:22:18 DEBUG   opendrift:2105:                22.86984537794785 <- longitude -> 23.54851764513747
15:22:18 DEBUG   opendrift:2105:                -77.3878208066372 <- z -> 0.0
15:22:18 DEBUG   opendrift:2106: ---------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:18 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:18 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 00:00:00 (before)
                2025-10-01 03:00:00 (after)
15:22:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:18 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:18 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 00:00:00, weight 0.55) and
                      after (2025-10-01 03:00:00, weight 0.45) in time
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:18 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 00:00:00 (before)
                2025-10-01 03:00:00 (after)
15:22:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:18 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:18 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 00:00:00, weight 0.55) and
                      after (2025-10-01 03:00:00, weight 0.45) in time
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:18 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:18 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:18 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:18 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:18 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.472143 (min) 0.0194558 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.287832 (min) 0.389818 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.327903 (min) 2.42496 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.34766 (min) -3.90103 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:18 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.377009, mean: 0.932376, max: 1.135860
15:22:18 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:18 DEBUG   opendrift.models.physics_methods:878:    min: 3.345073, mean: 5.250566, max: 5.806201
15:22:18 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.345073, mean: 5.250566, max: 5.806201
15:22:18 DEBUG   opendrift:689: No elements hit coastline.
15:22:18 DEBUG   opendrift:1683: No elements to deactivate
15:22:18 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:18 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:18 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:18 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:18 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:18 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:18 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:18 DEBUG   opendrift.models.physics_methods:878:    min: 3.345073, mean: 5.250566, max: 5.806201
15:22:18 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:18 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.076412, dN_50: 0.005997
15:22:18 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:18 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01666418067796201
15:22:18 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:18 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:18 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:18 DEBUG   opendrift.models.physics_methods:732: Advecting 2153 of 6000 elements above 0.100m with wind-sheared ocean current (0.091321 m/s - 0.203853 m/s)
15:22:18 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:18 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0019060043800467334 and 0.43008807980567504 m/s
15:22:18 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:18 DEBUG   opendrift:2085: ======================================================================
15:22:18 INFO    opendrift:2086: 2025-10-01 02:21:17.242042 - step 84 of 120 - 6000 active elements (0 deactivated)
15:22:18 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:18 DEBUG   opendrift:2094: ======================================================================
15:22:18 DEBUG   opendrift:2105:                34.369243125643564 <- latitude -> 35.20980929738793
15:22:18 DEBUG   opendrift:2105:                22.846674203396322 <- longitude -> 23.54141556388018
15:22:18 DEBUG   opendrift:2105:                -76.60682064374134 <- z -> 0.0
15:22:18 DEBUG   opendrift:2106: ---------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:18 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:18 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 00:00:00 (before)
                2025-10-01 03:00:00 (after)
15:22:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:18 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:18 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 00:00:00, weight 0.22) and
                      after (2025-10-01 03:00:00, weight 0.78) in time
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:18 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 00:00:00 (before)
                2025-10-01 03:00:00 (after)
15:22:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 00:00:00) in space  (linearNDFast)
15:22:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:18 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:18 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 00:00:00, weight 0.22) and
                      after (2025-10-01 03:00:00, weight 0.78) in time
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:18 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:18 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:18 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:18 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:18 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.458187 (min) 0.0114918 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.275258 (min) 0.358786 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.45188 (min) 1.41151 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.74232 (min) -4.06892 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:18 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:18 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.412303, mean: 0.991113, max: 1.167115
15:22:18 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:18 DEBUG   opendrift.models.physics_methods:878:    min: 3.498147, mean: 5.416170, max: 5.885542
15:22:18 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.498147, mean: 5.416170, max: 5.885542
15:22:18 DEBUG   opendrift:689: No elements hit coastline.
15:22:18 DEBUG   opendrift:1683: No elements to deactivate
15:22:18 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:18 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:18 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:18 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:18 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:18 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:18 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:18 DEBUG   opendrift.models.physics_methods:878:    min: 3.498147, mean: 5.416170, max: 5.885542
15:22:18 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:18 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.076545, dN_50: 0.006007
15:22:18 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:18 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.017122605792391384
15:22:18 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:18 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:18 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:18 DEBUG   opendrift.models.physics_methods:732: Advecting 2156 of 6000 elements above 0.100m with wind-sheared ocean current (0.002183 m/s - 0.206638 m/s)
15:22:18 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:18 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001310706160315397 and 0.4349095438296586 m/s
15:22:18 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:18 DEBUG   opendrift:2085: ======================================================================
15:22:18 INFO    opendrift:2086: 2025-10-01 03:21:17.242042 - step 85 of 120 - 6000 active elements (0 deactivated)
15:22:18 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:18 DEBUG   opendrift:2094: ======================================================================
15:22:18 DEBUG   opendrift:2105:                34.36069137312643 <- latitude -> 35.20646936221554
15:22:18 DEBUG   opendrift:2105:                22.8310021591627 <- longitude -> 23.53737433890967
15:22:18 DEBUG   opendrift:2105:                -75.23491063978194 <- z -> 0.0
15:22:18 DEBUG   opendrift:2106: ---------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:18 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:18 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:18 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:18 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:18 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:18 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:18 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:18 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:18 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 03:00:00 (before)
                2025-10-01 06:00:00 (after)
15:22:18 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:19 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:19 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:19 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:19 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:19 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:19 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 18x30x19) for time after (2025-10-01 06:00:00)
15:22:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:19 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:19 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 03:00:00, weight 0.88) and
                      after (2025-10-01 06:00:00, weight 0.12) in time
15:22:19 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:19 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:19 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:19 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:19 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:19 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 03:00:00 (before)
                2025-10-01 06:00:00 (after)
15:22:19 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:19 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:19 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:19 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:19 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:19 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-10-01 06:00:00)
15:22:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:19 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:19 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 03:00:00, weight 0.88) and
                      after (2025-10-01 06:00:00, weight 0.12) in time
15:22:19 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:19 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:19 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:19 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:19 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:19 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:19 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:19 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.460087 (min) 0.00512712 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.265108 (min) 0.31483 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.489498 (min) 1.13981 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.87337 (min) -4.19634 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:19 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.439083, mean: 1.000386, max: 1.176439
15:22:19 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:19 DEBUG   opendrift.models.physics_methods:878:    min: 3.609965, mean: 5.441432, max: 5.909005
15:22:19 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.609965, mean: 5.441432, max: 5.909005
15:22:19 DEBUG   opendrift:689: No elements hit coastline.
15:22:19 DEBUG   opendrift:1683: No elements to deactivate
15:22:19 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:19 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:19 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:19 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:19 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:19 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:19 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:19 DEBUG   opendrift.models.physics_methods:878:    min: 3.609965, mean: 5.441432, max: 5.909005
15:22:19 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:19 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.078260, dN_50: 0.006142
15:22:19 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:19 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01725936262732688
15:22:19 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:19 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:19 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:19 DEBUG   opendrift.models.physics_methods:732: Advecting 2158 of 6000 elements above 0.100m with wind-sheared ocean current (0.004099 m/s - 0.207022 m/s)
15:22:19 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:19 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016859481881622174 and 0.4697775072729364 m/s
15:22:19 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:19 DEBUG   opendrift:2085: ======================================================================
15:22:19 INFO    opendrift:2086: 2025-10-01 04:21:17.242042 - step 86 of 120 - 6000 active elements (0 deactivated)
15:22:19 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:19 DEBUG   opendrift:2094: ======================================================================
15:22:19 DEBUG   opendrift:2105:                34.35374525219661 <- latitude -> 35.2077345173205
15:22:19 DEBUG   opendrift:2105:                22.80878381335203 <- longitude -> 23.539105797637543
15:22:19 DEBUG   opendrift:2105:                -74.78723690515415 <- z -> 0.0
15:22:19 DEBUG   opendrift:2106: ---------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:19 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:19 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:19 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:19 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:19 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:19 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:19 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:19 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:19 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:19 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:19 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:19 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:19 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:19 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 03:00:00 (before)
                2025-10-01 06:00:00 (after)
15:22:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:19 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:19 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 03:00:00, weight 0.55) and
                      after (2025-10-01 06:00:00, weight 0.45) in time
15:22:19 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:19 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:19 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:19 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:19 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:19 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:19 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 03:00:00 (before)
                2025-10-01 06:00:00 (after)
15:22:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:19 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:19 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 03:00:00, weight 0.55) and
                      after (2025-10-01 06:00:00, weight 0.45) in time
15:22:19 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:19 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:19 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:19 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:19 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:19 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:19 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:19 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.473202 (min) 0.0136941 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.259487 (min) 0.278077 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.514405 (min) 1.40158 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.51893 (min) -4.0758 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:19 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:19 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.415168, mean: 0.882419, max: 1.061609
15:22:19 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:19 DEBUG   opendrift.models.physics_methods:878:    min: 3.510278, mean: 5.108567, max: 5.613218
15:22:19 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.510278, mean: 5.108567, max: 5.613218
15:22:19 DEBUG   opendrift:689: No elements hit coastline.
15:22:20 DEBUG   opendrift:1683: No elements to deactivate
15:22:20 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:20 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:20 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:20 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:20 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:20 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:20 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:20 DEBUG   opendrift.models.physics_methods:878:    min: 3.510278, mean: 5.108567, max: 5.613218
15:22:20 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:20 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.083557, dN_50: 0.006558
15:22:20 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:20 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.015575116506214683
15:22:20 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:20 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:20 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:20 DEBUG   opendrift.models.physics_methods:732: Advecting 2158 of 6000 elements above 0.100m with wind-sheared ocean current (0.104338 m/s - 0.195626 m/s)
15:22:20 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:20 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021991614125434046 and 0.4286220762363329 m/s
15:22:20 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:20 DEBUG   opendrift:2085: ======================================================================
15:22:20 INFO    opendrift:2086: 2025-10-01 05:21:17.242042 - step 87 of 120 - 6000 active elements (0 deactivated)
15:22:20 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:20 DEBUG   opendrift:2094: ======================================================================
15:22:20 DEBUG   opendrift:2105:                34.34824939183806 <- latitude -> 35.212057997236876
15:22:20 DEBUG   opendrift:2105:                22.79572970073666 <- longitude -> 23.536939839397235
15:22:20 DEBUG   opendrift:2105:                -73.56776744450806 <- z -> 0.0
15:22:20 DEBUG   opendrift:2106: ---------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:20 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:20 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:20 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:20 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:20 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:20 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:20 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:20 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:20 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:20 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:20 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:20 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:20 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:20 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 03:00:00 (before)
                2025-10-01 06:00:00 (after)
15:22:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:20 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:20 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:20 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:20 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 03:00:00, weight 0.22) and
                      after (2025-10-01 06:00:00, weight 0.78) in time
15:22:20 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:20 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:20 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:20 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:20 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:20 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 03:00:00 (before)
                2025-10-01 06:00:00 (after)
15:22:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 03:00:00) in space  (linearNDFast)
15:22:20 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:20 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:20 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:20 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 03:00:00, weight 0.22) and
                      after (2025-10-01 06:00:00, weight 0.78) in time
15:22:20 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:20 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:20 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:20 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:20 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:20 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:20 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:20 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.500692 (min) 0.0343925 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.247888 (min) 0.2978 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.567826 (min) 1.63228 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -6.15961 (min) -3.93032 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:20 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:20 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.387937, mean: 0.771149, max: 0.951071
15:22:20 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:20 DEBUG   opendrift.models.physics_methods:878:    min: 3.393206, mean: 4.772601, max: 5.312954
15:22:20 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.393206, mean: 4.772601, max: 5.312954
15:22:20 DEBUG   opendrift:689: No elements hit coastline.
15:22:20 DEBUG   opendrift:1683: No elements to deactivate
15:22:20 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:20 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:20 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:20 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:20 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:20 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:20 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:20 DEBUG   opendrift.models.physics_methods:878:    min: 3.393206, mean: 4.772601, max: 5.312954
15:22:20 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:20 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.089441, dN_50: 0.007019
15:22:20 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:20 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.013953822000003186
15:22:20 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:20 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:20 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:20 DEBUG   opendrift.models.physics_methods:732: Advecting 2159 of 6000 elements above 0.100m with wind-sheared ocean current (0.040844 m/s - 0.185143 m/s)
15:22:20 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:20 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00286363794387341 and 0.5041930911674757 m/s
15:22:20 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:20 DEBUG   opendrift:2085: ======================================================================
15:22:20 INFO    opendrift:2086: 2025-10-01 06:21:17.242042 - step 88 of 120 - 6000 active elements (0 deactivated)
15:22:20 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:20 DEBUG   opendrift:2094: ======================================================================
15:22:20 DEBUG   opendrift:2105:                34.34753418590409 <- latitude -> 35.2114933148256
15:22:20 DEBUG   opendrift:2105:                22.772560573156646 <- longitude -> 23.533872541970503
15:22:20 DEBUG   opendrift:2105:                -72.70413546461046 <- z -> 0.0
15:22:20 DEBUG   opendrift:2106: ---------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:20 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:20 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:20 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:20 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:20 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:20 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:20 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:20 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:20 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:20 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:20 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:20 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:20 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:20 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 06:00:00 (before)
                2025-10-01 09:00:00 (after)
15:22:20 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:20 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:20 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:20 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:20 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:20 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:20 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 19x30x19) for time after (2025-10-01 09:00:00)
15:22:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:20 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:20 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:20 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:20 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 06:00:00, weight 0.88) and
                      after (2025-10-01 09:00:00, weight 0.12) in time
15:22:20 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:20 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:20 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:20 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:20 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:20 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:20 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:20 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 06:00:00 (before)
                2025-10-01 09:00:00 (after)
15:22:20 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:21 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:21 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:21 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:21 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:21 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-10-01 09:00:00)
15:22:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 06:00:00, weight 0.88) and
                      after (2025-10-01 09:00:00, weight 0.12) in time
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:21 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.505307 (min) 0.0440733 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.235565 (min) 0.313799 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.439111 (min) 1.88575 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.73535 (min) -3.90203 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:21 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.379299, mean: 0.670515, max: 0.830973
15:22:21 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:21 DEBUG   opendrift.models.physics_methods:878:    min: 3.355214, mean: 4.448949, max: 4.966187
15:22:21 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.355214, mean: 4.448949, max: 4.966187
15:22:21 DEBUG   opendrift:689: No elements hit coastline.
15:22:21 DEBUG   opendrift:1683: No elements to deactivate
15:22:21 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:21 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:21 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:21 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:21 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:21 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:21 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:21 DEBUG   opendrift.models.physics_methods:878:    min: 3.355214, mean: 4.448949, max: 4.966187
15:22:21 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:21 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.095301, dN_50: 0.007479
15:22:21 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:21 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.012192312030746218
15:22:21 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:21 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:21 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:21 DEBUG   opendrift.models.physics_methods:732: Advecting 2159 of 6000 elements above 0.100m with wind-sheared ocean current (0.129065 m/s - 0.172575 m/s)
15:22:21 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:21 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00010955146658270836 and 0.42017592004148496 m/s
15:22:21 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:21 DEBUG   opendrift:2085: ======================================================================
15:22:21 INFO    opendrift:2086: 2025-10-01 07:21:17.242042 - step 89 of 120 - 6000 active elements (0 deactivated)
15:22:21 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:21 DEBUG   opendrift:2094: ======================================================================
15:22:21 DEBUG   opendrift:2105:                34.34272061000294 <- latitude -> 35.21434465032251
15:22:21 DEBUG   opendrift:2105:                22.75378793389524 <- longitude -> 23.5373631393393
15:22:21 DEBUG   opendrift:2105:                -71.65922210437348 <- z -> 0.0
15:22:21 DEBUG   opendrift:2106: ---------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:21 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:21 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 06:00:00 (before)
                2025-10-01 09:00:00 (after)
15:22:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 06:00:00, weight 0.55) and
                      after (2025-10-01 09:00:00, weight 0.45) in time
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:21 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 06:00:00 (before)
                2025-10-01 09:00:00 (after)
15:22:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 06:00:00, weight 0.55) and
                      after (2025-10-01 09:00:00, weight 0.45) in time
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:21 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.499893 (min) 0.0350827 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.250948 (min) 0.32304 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.0881176 (min) 2.10178 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -5.18624 (min) -3.95499 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:21 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.389522, mean: 0.585463, max: 0.706266
15:22:21 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:21 DEBUG   opendrift.models.physics_methods:878:    min: 3.400130, mean: 4.160268, max: 4.578400
15:22:21 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.400130, mean: 4.160268, max: 4.578400
15:22:21 DEBUG   opendrift:689: No elements hit coastline.
15:22:21 DEBUG   opendrift:1683: No elements to deactivate
15:22:21 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:21 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:21 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:21 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:21 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:21 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:21 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:21 DEBUG   opendrift.models.physics_methods:878:    min: 3.400130, mean: 4.160268, max: 4.578400
15:22:21 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:21 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.100181, dN_50: 0.007862
15:22:21 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:21 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.010363199279275523
15:22:21 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:21 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:21 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:21 DEBUG   opendrift.models.physics_methods:732: Advecting 2161 of 6000 elements above 0.100m with wind-sheared ocean current (0.043648 m/s - 0.160745 m/s)
15:22:21 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:21 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017535503768980605 and 0.47908382173916075 m/s
15:22:21 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:21 DEBUG   opendrift:2085: ======================================================================
15:22:21 INFO    opendrift:2086: 2025-10-01 08:21:17.242042 - step 90 of 120 - 6000 active elements (0 deactivated)
15:22:21 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:21 DEBUG   opendrift:2094: ======================================================================
15:22:21 DEBUG   opendrift:2105:                34.33457775098406 <- latitude -> 35.21432029459138
15:22:21 DEBUG   opendrift:2105:                22.730960186308646 <- longitude -> 23.53452656197817
15:22:21 DEBUG   opendrift:2105:                -70.95372707120731 <- z -> 0.0
15:22:21 DEBUG   opendrift:2106: ---------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:21 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:21 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 06:00:00 (before)
                2025-10-01 09:00:00 (after)
15:22:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 06:00:00, weight 0.22) and
                      after (2025-10-01 09:00:00, weight 0.78) in time
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:21 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 06:00:00 (before)
                2025-10-01 09:00:00 (after)
15:22:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 06:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:21 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 06:00:00, weight 0.22) and
                      after (2025-10-01 09:00:00, weight 0.78) in time
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:21 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:21 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.50574 (min) 0.0673902 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.278384 (min) 0.340411 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.291505 (min) 2.34843 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.7138 (min) -3.85249 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:21 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:21 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.376300, mean: 0.510381, max: 0.681373
15:22:21 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:21 DEBUG   opendrift.models.physics_methods:878:    min: 3.341927, mean: 3.886282, max: 4.496991
15:22:21 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.341927, mean: 3.886282, max: 4.496991
15:22:21 DEBUG   opendrift:689: No elements hit coastline.
15:22:21 DEBUG   opendrift:1683: No elements to deactivate
15:22:21 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:21 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:21 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:21 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:21 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:21 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:21 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:21 DEBUG   opendrift.models.physics_methods:878:    min: 3.341927, mean: 3.886282, max: 4.496991
15:22:21 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:21 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.105238, dN_50: 0.008259
15:22:21 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:21 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.009998085730115853
15:22:21 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:21 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:21 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:21 DEBUG   opendrift.models.physics_methods:732: Advecting 2165 of 6000 elements above 0.100m with wind-sheared ocean current (0.029044 m/s - 0.157887 m/s)
15:22:21 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:21 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0031942751042075422 and 0.45174135874741206 m/s
15:22:21 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:21 DEBUG   opendrift:2085: ======================================================================
15:22:21 INFO    opendrift:2086: 2025-10-01 09:21:17.242042 - step 91 of 120 - 6000 active elements (0 deactivated)
15:22:21 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:21 DEBUG   opendrift:2094: ======================================================================
15:22:21 DEBUG   opendrift:2105:                34.33206593842973 <- latitude -> 35.21277263697566
15:22:21 DEBUG   opendrift:2105:                22.707721723861535 <- longitude -> 23.532808689272954
15:22:21 DEBUG   opendrift:2105:                -69.80739780737491 <- z -> 0.0
15:22:21 DEBUG   opendrift:2106: ---------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:21 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:21 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:21 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:21 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:21 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:21 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:21 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:21 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:21 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 09:00:00 (before)
                2025-10-01 12:00:00 (after)
15:22:21 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:22 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:22 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:22 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:22 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:22 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:22 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 19x30x18) for time after (2025-10-01 12:00:00)
15:22:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:22 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:22 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:22 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:22 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 09:00:00, weight 0.88) and
                      after (2025-10-01 12:00:00, weight 0.12) in time
15:22:22 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:22 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:22 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:22 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:22 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:22 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:22 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:22 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:22 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:22 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:22 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 09:00:00 (before)
                2025-10-01 12:00:00 (after)
15:22:22 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:22 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:23 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:23 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:23 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:23 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-10-01 12:00:00)
15:22:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 09:00:00, weight 0.88) and
                      after (2025-10-01 12:00:00, weight 0.12) in time
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:23 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.523443 (min) 0.0828409 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.325664 (min) 0.373806 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.591911 (min) 2.53114 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.3925 (min) -3.70324 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:23 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.357378, mean: 0.429432, max: 0.622806
15:22:23 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:23 DEBUG   opendrift.models.physics_methods:878:    min: 3.256816, mean: 3.566384, max: 4.299382
15:22:23 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.256816, mean: 3.566384, max: 4.299382
15:22:23 DEBUG   opendrift:689: No elements hit coastline.
15:22:23 DEBUG   opendrift:1683: No elements to deactivate
15:22:23 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:23 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:23 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:23 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:23 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:23 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:23 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:23 DEBUG   opendrift.models.physics_methods:878:    min: 3.256816, mean: 3.566384, max: 4.299382
15:22:23 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:23 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.111932, dN_50: 0.008784
15:22:23 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:23 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.009139069686288678
15:22:23 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:23 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:23 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:23 DEBUG   opendrift.models.physics_methods:732: Advecting 2166 of 6000 elements above 0.100m with wind-sheared ocean current (0.026378 m/s - 0.150949 m/s)
15:22:23 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:23 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016033038288473596 and 0.43159375677021905 m/s
15:22:23 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:23 DEBUG   opendrift:2085: ======================================================================
15:22:23 INFO    opendrift:2086: 2025-10-01 10:21:17.242042 - step 92 of 120 - 6000 active elements (0 deactivated)
15:22:23 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:23 DEBUG   opendrift:2094: ======================================================================
15:22:23 DEBUG   opendrift:2105:                34.32671595639002 <- latitude -> 35.2205763339443
15:22:23 DEBUG   opendrift:2105:                22.68875232705804 <- longitude -> 23.530267837448427
15:22:23 DEBUG   opendrift:2105:                -69.21168741187239 <- z -> 0.0
15:22:23 DEBUG   opendrift:2106: ---------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:23 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:23 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 09:00:00 (before)
                2025-10-01 12:00:00 (after)
15:22:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 09:00:00, weight 0.55) and
                      after (2025-10-01 12:00:00, weight 0.45) in time
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:23 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 09:00:00 (before)
                2025-10-01 12:00:00 (after)
15:22:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 09:00:00, weight 0.55) and
                      after (2025-10-01 12:00:00, weight 0.45) in time
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:23 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.521485 (min) 0.0746454 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.39637 (min) 0.412024 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.661992 (min) 2.61589 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -3.89107 (min) -3.12129 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:23 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.300759, mean: 0.336199, max: 0.516216
15:22:23 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:23 DEBUG   opendrift.models.physics_methods:878:    min: 2.987714, mean: 3.156861, max: 3.914220
15:22:23 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.987714, mean: 3.156861, max: 3.914220
15:22:23 DEBUG   opendrift:689: No elements hit coastline.
15:22:23 DEBUG   opendrift:1683: No elements to deactivate
15:22:23 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:23 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:23 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:23 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:23 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:23 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:23 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:23 DEBUG   opendrift.models.physics_methods:878:    min: 2.987714, mean: 3.156861, max: 3.914220
15:22:23 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:23 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.122089, dN_50: 0.009582
15:22:23 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:23 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007575680758808266
15:22:23 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:23 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:23 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:23 DEBUG   opendrift.models.physics_methods:732: Advecting 2166 of 6000 elements above 0.100m with wind-sheared ocean current (0.016312 m/s - 0.137426 m/s)
15:22:23 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:23 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001387238854945657 and 0.4934371139603493 m/s
15:22:23 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:23 DEBUG   opendrift:2085: ======================================================================
15:22:23 INFO    opendrift:2086: 2025-10-01 11:21:17.242042 - step 93 of 120 - 6000 active elements (0 deactivated)
15:22:23 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:23 DEBUG   opendrift:2094: ======================================================================
15:22:23 DEBUG   opendrift:2105:                34.31441025817386 <- latitude -> 35.221199420213985
15:22:23 DEBUG   opendrift:2105:                22.667644230741544 <- longitude -> 23.532811792512685
15:22:23 DEBUG   opendrift:2105:                -68.75160367299499 <- z -> 0.0
15:22:23 DEBUG   opendrift:2106: ---------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:23 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:23 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 09:00:00 (before)
                2025-10-01 12:00:00 (after)
15:22:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 09:00:00, weight 0.22) and
                      after (2025-10-01 12:00:00, weight 0.78) in time
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:23 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 09:00:00 (before)
                2025-10-01 12:00:00 (after)
15:22:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 09:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:23 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 09:00:00, weight 0.22) and
                      after (2025-10-01 12:00:00, weight 0.78) in time
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:23 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:23 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.512975 (min) 0.113013 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.462968 (min) 0.456446 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.790221 (min) 2.70695 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -3.54855 (min) -2.36796 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:23 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:23 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.203405, mean: 0.260929, max: 0.435560
15:22:23 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:23 DEBUG   opendrift.models.physics_methods:878:    min: 2.457030, mean: 2.778176, max: 3.595454
15:22:23 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.457030, mean: 2.778176, max: 3.595454
15:22:23 DEBUG   opendrift:689: No elements hit coastline.
15:22:23 DEBUG   opendrift:1683: No elements to deactivate
15:22:23 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:23 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:23 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:23 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:23 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:23 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:23 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:23 DEBUG   opendrift.models.physics_methods:878:    min: 2.457030, mean: 2.778176, max: 3.595454
15:22:23 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:23 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.133349, dN_50: 0.010465
15:22:23 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:23 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.006392682310078774
15:22:23 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:23 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:23 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:23 DEBUG   opendrift.models.physics_methods:732: Advecting 2168 of 6000 elements above 0.100m with wind-sheared ocean current (0.064139 m/s - 0.126234 m/s)
15:22:23 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:23 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005524073059725985 and 0.43149785409241903 m/s
15:22:23 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:23 DEBUG   opendrift:2085: ======================================================================
15:22:23 INFO    opendrift:2086: 2025-10-01 12:21:17.242042 - step 94 of 120 - 6000 active elements (0 deactivated)
15:22:23 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:23 DEBUG   opendrift:2094: ======================================================================
15:22:23 DEBUG   opendrift:2105:                34.300745249702615 <- latitude -> 35.218193088256946
15:22:23 DEBUG   opendrift:2105:                22.64661019473699 <- longitude -> 23.529140475590097
15:22:23 DEBUG   opendrift:2105:                -68.011069090225 <- z -> 0.0
15:22:23 DEBUG   opendrift:2106: ---------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:23 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:23 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:23 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:23 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:23 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:23 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:23 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:23 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:23 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 12:00:00 (before)
                2025-10-01 15:00:00 (after)
15:22:23 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:24 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:24 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:24 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:24 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:24 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:24 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 20x31x18) for time after (2025-10-01 15:00:00)
15:22:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:24 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:24 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:24 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:24 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 12:00:00, weight 0.88) and
                      after (2025-10-01 15:00:00, weight 0.12) in time
15:22:24 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:24 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:24 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:24 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:24 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:24 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 12:00:00 (before)
                2025-10-01 15:00:00 (after)
15:22:24 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:24 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:24 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:24 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:24 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:24 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-10-01 15:00:00)
15:22:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:24 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:24 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:24 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:24 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 12:00:00, weight 0.88) and
                      after (2025-10-01 15:00:00, weight 0.12) in time
15:22:24 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:24 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:24 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:24 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:24 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:24 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:24 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:24 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.639265 (min) 0.118149 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.496027 (min) 0.502153 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.901764 (min) 2.87445 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -3.38375 (min) -2.02301 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:24 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:24 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.177059, mean: 0.247032, max: 0.420250
15:22:24 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:24 DEBUG   opendrift.models.physics_methods:878:    min: 2.292391, mean: 2.699479, max: 3.531698
15:22:24 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.292391, mean: 2.699479, max: 3.531698
15:22:24 DEBUG   opendrift:689: No elements hit coastline.
15:22:24 DEBUG   opendrift:1683: No elements to deactivate
15:22:24 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:24 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:24 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:24 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:24 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:24 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:24 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:24 DEBUG   opendrift.models.physics_methods:878:    min: 2.292391, mean: 2.699479, max: 3.531698
15:22:24 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:24 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.137781, dN_50: 0.010813
15:22:24 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:24 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.006168127971406697
15:22:24 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:24 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:24 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:24 DEBUG   opendrift.models.physics_methods:732: Advecting 2172 of 6000 elements above 0.100m with wind-sheared ocean current (0.008576 m/s - 0.123996 m/s)
15:22:24 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:24 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002036552497886011 and 0.4120155055067829 m/s
15:22:24 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:24 DEBUG   opendrift:2085: ======================================================================
15:22:24 INFO    opendrift:2086: 2025-10-01 13:21:17.242042 - step 95 of 120 - 6000 active elements (0 deactivated)
15:22:24 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:24 DEBUG   opendrift:2094: ======================================================================
15:22:24 DEBUG   opendrift:2105:                34.290322537328265 <- latitude -> 35.21694146789535
15:22:24 DEBUG   opendrift:2105:                22.634241303981362 <- longitude -> 23.52699877128333
15:22:24 DEBUG   opendrift:2105:                -66.97470016774147 <- z -> 0.0
15:22:24 DEBUG   opendrift:2106: ---------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:24 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:24 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:24 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:24 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:24 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:24 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:24 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:24 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:24 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:24 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:24 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:24 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:24 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:24 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 12:00:00 (before)
                2025-10-01 15:00:00 (after)
15:22:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:24 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:24 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:24 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:24 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 12:00:00, weight 0.55) and
                      after (2025-10-01 15:00:00, weight 0.45) in time
15:22:24 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:24 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:24 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:24 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:24 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:24 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:24 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:24 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 12:00:00 (before)
                2025-10-01 15:00:00 (after)
15:22:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:25 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:25 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 12:00:00, weight 0.55) and
                      after (2025-10-01 15:00:00, weight 0.45) in time
15:22:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:25 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:25 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:25 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:25 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:25 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:25 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.706103 (min) 0.06791 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.488539 (min) 0.498732 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.89758 (min) 3.08322 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -3.6908 (min) -2.53581 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:25 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.255450, mean: 0.326021, max: 0.508248
15:22:25 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:25 DEBUG   opendrift.models.physics_methods:878:    min: 2.753485, mean: 3.105041, max: 3.883895
15:22:25 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.753485, mean: 3.105041, max: 3.883895
15:22:25 DEBUG   opendrift:689: No elements hit coastline.
15:22:25 DEBUG   opendrift:1683: No elements to deactivate
15:22:25 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:25 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:25 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:25 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:25 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:25 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:25 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:25 DEBUG   opendrift.models.physics_methods:878:    min: 2.753485, mean: 3.105041, max: 3.883895
15:22:25 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:25 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.129753, dN_50: 0.010183
15:22:25 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:25 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007458817205330984
15:22:25 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:25 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:25 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:25 DEBUG   opendrift.models.physics_methods:732: Advecting 2171 of 6000 elements above 0.100m with wind-sheared ocean current (0.026155 m/s - 0.136361 m/s)
15:22:25 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:25 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002025634379548517 and 0.46933198100721024 m/s
15:22:25 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:25 DEBUG   opendrift:2085: ======================================================================
15:22:25 INFO    opendrift:2086: 2025-10-01 14:21:17.242042 - step 96 of 120 - 6000 active elements (0 deactivated)
15:22:25 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:25 DEBUG   opendrift:2094: ======================================================================
15:22:25 DEBUG   opendrift:2105:                34.28634656621295 <- latitude -> 35.21710129182628
15:22:25 DEBUG   opendrift:2105:                22.614464746638216 <- longitude -> 23.527026470154595
15:22:25 DEBUG   opendrift:2105:                -66.28666970730391 <- z -> 0.0
15:22:25 DEBUG   opendrift:2106: ---------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:25 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:25 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 12:00:00 (before)
                2025-10-01 15:00:00 (after)
15:22:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:25 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:25 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 12:00:00, weight 0.22) and
                      after (2025-10-01 15:00:00, weight 0.78) in time
15:22:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:25 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 12:00:00 (before)
                2025-10-01 15:00:00 (after)
15:22:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 12:00:00) in space  (linearNDFast)
15:22:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:25 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:25 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 12:00:00, weight 0.22) and
                      after (2025-10-01 15:00:00, weight 0.78) in time
15:22:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:25 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:25 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:25 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:25 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:25 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:25 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.766699 (min) 0.0515506 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.484094 (min) 0.486478 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.882606 (min) 3.16266 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.06093 (min) -3.05517 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:25 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:25 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.341808, mean: 0.415597, max: 0.588386
15:22:25 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:25 DEBUG   opendrift.models.physics_methods:878:    min: 3.185084, mean: 3.508098, max: 4.178887
15:22:25 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.185084, mean: 3.508098, max: 4.178887
15:22:25 DEBUG   opendrift:689: No elements hit coastline.
15:22:25 DEBUG   opendrift:1683: No elements to deactivate
15:22:25 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:25 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:25 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:25 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:25 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:25 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:25 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:25 DEBUG   opendrift.models.physics_methods:878:    min: 3.185084, mean: 3.508098, max: 4.178887
15:22:25 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:25 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.123278, dN_50: 0.009675
15:22:25 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:25 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.008634214869272929
15:22:25 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:25 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:25 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:25 DEBUG   opendrift.models.physics_methods:732: Advecting 2169 of 6000 elements above 0.100m with wind-sheared ocean current (0.111827 m/s - 0.146718 m/s)
15:22:25 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:25 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002133451421612682 and 0.46212223535195446 m/s
15:22:25 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:25 DEBUG   opendrift:2085: ======================================================================
15:22:25 INFO    opendrift:2086: 2025-10-01 15:21:17.242042 - step 97 of 120 - 6000 active elements (0 deactivated)
15:22:25 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:25 DEBUG   opendrift:2094: ======================================================================
15:22:25 DEBUG   opendrift:2105:                34.27780563828054 <- latitude -> 35.22101834742518
15:22:25 DEBUG   opendrift:2105:                22.591555986988347 <- longitude -> 23.52596243943772
15:22:25 DEBUG   opendrift:2105:                -65.34518524807417 <- z -> 0.0
15:22:25 DEBUG   opendrift:2106: ---------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:25 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:25 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 15:00:00 (before)
                2025-10-01 18:00:00 (after)
15:22:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:25 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:25 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:25 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:25 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 21x32x18) for time after (2025-10-01 18:00:00)
15:22:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:25 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:25 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 15:00:00, weight 0.88) and
                      after (2025-10-01 18:00:00, weight 0.12) in time
15:22:25 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:25 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:25 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:25 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:25 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:25 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:25 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:25 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 15:00:00 (before)
                2025-10-01 18:00:00 (after)
15:22:25 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:26 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:26 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:26 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:26 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:26 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-10-01 18:00:00)
15:22:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 15:00:00, weight 0.88) and
                      after (2025-10-01 18:00:00, weight 0.12) in time
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:26 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.781678 (min) 0.045346 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.495348 (min) 0.483895 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.816705 (min) 3.29216 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.23713 (min) -3.29041 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:26 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.361989, mean: 0.474313, max: 0.671566
15:22:26 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:26 DEBUG   opendrift.models.physics_methods:878:    min: 3.277760, mean: 3.748228, max: 4.464511
15:22:26 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.277760, mean: 3.748228, max: 4.464511
15:22:26 DEBUG   opendrift:689: No elements hit coastline.
15:22:26 DEBUG   opendrift:1683: No elements to deactivate
15:22:26 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:26 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:26 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:26 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:26 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:26 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:26 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:26 DEBUG   opendrift.models.physics_methods:878:    min: 3.277760, mean: 3.748228, max: 4.464511
15:22:26 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:26 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.120756, dN_50: 0.009477
15:22:26 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:26 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.009854244172257842
15:22:26 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:26 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:26 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:26 DEBUG   opendrift.models.physics_methods:732: Advecting 2174 of 6000 elements above 0.100m with wind-sheared ocean current (0.001032 m/s - 0.156747 m/s)
15:22:26 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:26 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002415306360793885 and 0.4551959258709369 m/s
15:22:26 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:26 DEBUG   opendrift:2085: ======================================================================
15:22:26 INFO    opendrift:2086: 2025-10-01 16:21:17.242042 - step 98 of 120 - 6000 active elements (0 deactivated)
15:22:26 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:26 DEBUG   opendrift:2094: ======================================================================
15:22:26 DEBUG   opendrift:2105:                34.27319311633904 <- latitude -> 35.22930883490515
15:22:26 DEBUG   opendrift:2105:                22.575765483473106 <- longitude -> 23.52262746440709
15:22:26 DEBUG   opendrift:2105:                -64.10725546467596 <- z -> 0.0
15:22:26 DEBUG   opendrift:2106: ---------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:26 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:26 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 15:00:00 (before)
                2025-10-01 18:00:00 (after)
15:22:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 15:00:00, weight 0.55) and
                      after (2025-10-01 18:00:00, weight 0.45) in time
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:26 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 15:00:00 (before)
                2025-10-01 18:00:00 (after)
15:22:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 15:00:00, weight 0.55) and
                      after (2025-10-01 18:00:00, weight 0.45) in time
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:26 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.740126 (min) 0.00911661 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.43543 (min) 0.490771 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.670635 (min) 3.41726 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.19218 (min) -3.04084 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:26 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.356133, mean: 0.463195, max: 0.719599
15:22:26 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:26 DEBUG   opendrift.models.physics_methods:878:    min: 3.251140, mean: 3.702841, max: 4.621415
15:22:26 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.251140, mean: 3.702841, max: 4.621415
15:22:26 DEBUG   opendrift:689: No elements hit coastline.
15:22:26 DEBUG   opendrift:1683: No elements to deactivate
15:22:26 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:26 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:26 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:26 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:26 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:26 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:26 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:26 DEBUG   opendrift.models.physics_methods:878:    min: 3.251140, mean: 3.702841, max: 4.621415
15:22:26 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:26 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.123612, dN_50: 0.009701
15:22:26 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:26 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.010558763368924903
15:22:26 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:26 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:26 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:26 DEBUG   opendrift.models.physics_methods:732: Advecting 2172 of 6000 elements above 0.100m with wind-sheared ocean current (0.001639 m/s - 0.162255 m/s)
15:22:26 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:26 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001804477260558216 and 0.42637238634484154 m/s
15:22:26 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:26 DEBUG   opendrift:2085: ======================================================================
15:22:26 INFO    opendrift:2086: 2025-10-01 17:21:17.242042 - step 99 of 120 - 6000 active elements (0 deactivated)
15:22:26 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:26 DEBUG   opendrift:2094: ======================================================================
15:22:26 DEBUG   opendrift:2105:                34.270026079468735 <- latitude -> 35.23490413793437
15:22:26 DEBUG   opendrift:2105:                22.56110522909026 <- longitude -> 23.529060917157324
15:22:26 DEBUG   opendrift:2105:                -63.05970324830105 <- z -> 0.0
15:22:26 DEBUG   opendrift:2106: ---------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:26 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:26 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 15:00:00 (before)
                2025-10-01 18:00:00 (after)
15:22:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 15:00:00, weight 0.22) and
                      after (2025-10-01 18:00:00, weight 0.78) in time
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:26 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:26 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:26 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:26 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 15:00:00 (before)
                2025-10-01 18:00:00 (after)
15:22:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 15:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:26 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 15:00:00, weight 0.22) and
                      after (2025-10-01 18:00:00, weight 0.78) in time
15:22:26 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:26 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:26 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:26 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:26 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.748984 (min) 0.00619228 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.409116 (min) 0.50609 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.544285 (min) 3.60717 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.35253 (min) -2.77909 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:26 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:26 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.350021, mean: 0.454536, max: 0.786122
15:22:26 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:26 DEBUG   opendrift.models.physics_methods:878:    min: 3.223124, mean: 3.666947, max: 4.830306
15:22:26 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.223124, mean: 3.666947, max: 4.830306
15:22:26 DEBUG   opendrift:689: No elements hit coastline.
15:22:26 DEBUG   opendrift:1683: No elements to deactivate
15:22:26 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:26 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:26 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:26 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:26 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:26 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:26 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:26 DEBUG   opendrift.models.physics_methods:878:    min: 3.223124, mean: 3.666947, max: 4.830306
15:22:26 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:26 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.126399, dN_50: 0.009920
15:22:27 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:27 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.011534472855315695
15:22:27 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:27 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:27 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:27 DEBUG   opendrift.models.physics_methods:732: Advecting 2173 of 6000 elements above 0.100m with wind-sheared ocean current (0.113162 m/s - 0.169589 m/s)
15:22:27 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:27 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0032562326131906514 and 0.4681391040911701 m/s
15:22:27 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:27 DEBUG   opendrift:2085: ======================================================================
15:22:27 INFO    opendrift:2086: 2025-10-01 18:21:17.242042 - step 100 of 120 - 6000 active elements (0 deactivated)
15:22:27 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:27 DEBUG   opendrift:2094: ======================================================================
15:22:27 DEBUG   opendrift:2105:                34.263392763439974 <- latitude -> 35.23916786156737
15:22:27 DEBUG   opendrift:2105:                22.542448862791886 <- longitude -> 23.52206646596643
15:22:27 DEBUG   opendrift:2105:                -62.10026503423237 <- z -> 0.0
15:22:27 DEBUG   opendrift:2106: ---------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:27 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:27 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:27 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 18:00:00 (before)
                2025-10-01 21:00:00 (after)
15:22:27 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:27 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:27 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:27 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:27 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:27 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:27 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 22x32x18) for time after (2025-10-01 21:00:00)
15:22:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:27 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:27 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 18:00:00, weight 0.88) and
                      after (2025-10-01 21:00:00, weight 0.12) in time
15:22:27 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:27 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:27 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:27 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:27 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:27 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:27 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:27 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:27 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 18:00:00 (before)
                2025-10-01 21:00:00 (after)
15:22:27 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:27 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:28 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:28 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:28 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:28 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 9x8x1) for time after (2025-10-01 21:00:00)
15:22:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 18:00:00, weight 0.88) and
                      after (2025-10-01 21:00:00, weight 0.12) in time
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:28 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.693538 (min) 0.0231601 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.379374 (min) 0.610122 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.386305 (min) 3.5878 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.44532 (min) -2.66522 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:28 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.334108, mean: 0.436343, max: 0.800378
15:22:28 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:28 DEBUG   opendrift.models.physics_methods:878:    min: 3.149002, mean: 3.592202, max: 4.873905
15:22:28 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.149002, mean: 3.592202, max: 4.873905
15:22:28 DEBUG   opendrift:689: No elements hit coastline.
15:22:28 DEBUG   opendrift:1683: No elements to deactivate
15:22:28 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:28 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:28 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:28 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:28 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:28 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:28 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:28 DEBUG   opendrift.models.physics_methods:878:    min: 3.149003, mean: 3.592202, max: 4.873906
15:22:28 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:28 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.130085, dN_50: 0.010209
15:22:28 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:28 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01174356208470705
15:22:28 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:28 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:28 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:28 DEBUG   opendrift.models.physics_methods:732: Advecting 2181 of 6000 elements above 0.100m with wind-sheared ocean current (0.100234 m/s - 0.171120 m/s)
15:22:28 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:28 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001822731127597373 and 0.44788603356407874 m/s
15:22:28 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:28 DEBUG   opendrift:2085: ======================================================================
15:22:28 INFO    opendrift:2086: 2025-10-01 19:21:17.242042 - step 101 of 120 - 6000 active elements (0 deactivated)
15:22:28 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:28 DEBUG   opendrift:2094: ======================================================================
15:22:28 DEBUG   opendrift:2105:                34.25753387944063 <- latitude -> 35.23920117515763
15:22:28 DEBUG   opendrift:2105:                22.5319643542442 <- longitude -> 23.517977645302544
15:22:28 DEBUG   opendrift:2105:                -60.668264580001896 <- z -> 0.0
15:22:28 DEBUG   opendrift:2106: ---------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:28 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:28 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 18:00:00 (before)
                2025-10-01 21:00:00 (after)
15:22:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 18:00:00, weight 0.55) and
                      after (2025-10-01 21:00:00, weight 0.45) in time
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:28 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 18:00:00 (before)
                2025-10-01 21:00:00 (after)
15:22:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 18:00:00, weight 0.55) and
                      after (2025-10-01 21:00:00, weight 0.45) in time
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:28 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.6119 (min) -0.000906394 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.315474 (min) 0.616032 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.211797 (min) 3.26111 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.4648 (min) -2.75727 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:28 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.246254, mean: 0.400152, max: 0.752003
15:22:28 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:28 DEBUG   opendrift.models.physics_methods:878:    min: 2.703468, mean: 3.439978, max: 4.724320
15:22:28 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.703468, mean: 3.439978, max: 4.724320
15:22:28 DEBUG   opendrift:689: No elements hit coastline.
15:22:28 DEBUG   opendrift:1683: No elements to deactivate
15:22:28 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:28 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:28 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:28 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:28 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:28 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:28 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:28 DEBUG   opendrift.models.physics_methods:878:    min: 2.703469, mean: 3.439979, max: 4.724320
15:22:28 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:28 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.135658, dN_50: 0.010646
15:22:28 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:28 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.011034035633633069
15:22:28 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:28 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:28 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:28 DEBUG   opendrift.models.physics_methods:732: Advecting 2188 of 6000 elements above 0.100m with wind-sheared ocean current (0.000628 m/s - 0.165868 m/s)
15:22:28 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:28 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00083980561964861 and 0.43070556546581745 m/s
15:22:28 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:28 DEBUG   opendrift:2085: ======================================================================
15:22:28 INFO    opendrift:2086: 2025-10-01 20:21:17.242042 - step 102 of 120 - 6000 active elements (0 deactivated)
15:22:28 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:28 DEBUG   opendrift:2094: ======================================================================
15:22:28 DEBUG   opendrift:2105:                34.25185709055586 <- latitude -> 35.24216573290912
15:22:28 DEBUG   opendrift:2105:                22.511611231175372 <- longitude -> 23.515600652977813
15:22:28 DEBUG   opendrift:2105:                -59.383440244266616 <- z -> 0.0
15:22:28 DEBUG   opendrift:2106: ---------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:28 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:28 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 18:00:00 (before)
                2025-10-01 21:00:00 (after)
15:22:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 18:00:00, weight 0.22) and
                      after (2025-10-01 21:00:00, weight 0.78) in time
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:28 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:28 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:28 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:28 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 18:00:00 (before)
                2025-10-01 21:00:00 (after)
15:22:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 18:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:28 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 18:00:00, weight 0.22) and
                      after (2025-10-01 21:00:00, weight 0.78) in time
15:22:28 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:28 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:28 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:28 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:28 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.547306 (min) 0.00978248 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.261548 (min) 0.649192 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.0122873 (min) 2.92808 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.53804 (min) -2.3248 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:28 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:28 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.160014, mean: 0.368069, max: 0.717520
15:22:28 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:28 DEBUG   opendrift.models.physics_methods:878:    min: 2.179256, mean: 3.298903, max: 4.614733
15:22:28 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.179256, mean: 3.298903, max: 4.614733
15:22:28 DEBUG   opendrift:689: No elements hit coastline.
15:22:28 DEBUG   opendrift:1683: No elements to deactivate
15:22:28 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:28 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:28 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:28 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:28 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:28 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:28 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:28 DEBUG   opendrift.models.physics_methods:878:    min: 2.179256, mean: 3.298903, max: 4.614733
15:22:28 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:28 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.141388, dN_50: 0.011096
15:22:28 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:28 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.010528264156771659
15:22:28 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:28 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:28 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:29 DEBUG   opendrift.models.physics_methods:732: Advecting 2187 of 6000 elements above 0.100m with wind-sheared ocean current (0.008839 m/s - 0.162021 m/s)
15:22:29 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:29 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018853337128431843 and 0.4528033164427942 m/s
15:22:29 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:29 DEBUG   opendrift:2085: ======================================================================
15:22:29 INFO    opendrift:2086: 2025-10-01 21:21:17.242042 - step 103 of 120 - 6000 active elements (0 deactivated)
15:22:29 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:29 DEBUG   opendrift:2094: ======================================================================
15:22:29 DEBUG   opendrift:2105:                34.24669774305089 <- latitude -> 35.24302647624603
15:22:29 DEBUG   opendrift:2105:                22.498541068246812 <- longitude -> 23.514377456728507
15:22:29 DEBUG   opendrift:2105:                -58.433159273819804 <- z -> 0.0
15:22:29 DEBUG   opendrift:2106: ---------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:29 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:29 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:29 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 21:00:00 (before)
                2025-10-02 00:00:00 (after)
15:22:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:29 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:29 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:29 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:29 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 22x33x17) for time after (2025-10-02 00:00:00)
15:22:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:29 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:29 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 21:00:00, weight 0.88) and
                      after (2025-10-02 00:00:00, weight 0.12) in time
15:22:29 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:29 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:29 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:29 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:29 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:29 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:29 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:29 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:29 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 21:00:00 (before)
                2025-10-02 00:00:00 (after)
15:22:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:29 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:30 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:30 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:30 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:30 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 10x8x1) for time after (2025-10-02 00:00:00)
15:22:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 21:00:00, weight 0.88) and
                      after (2025-10-02 00:00:00, weight 0.12) in time
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:30 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.497387 (min) -0.00405346 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.23514 (min) 0.648503 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: -0.0280983 (min) 2.61442 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -4.36968 (min) -1.68583 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:30 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.095216, mean: 0.326469, max: 0.637860
15:22:30 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:30 DEBUG   opendrift.models.physics_methods:878:    min: 1.681067, mean: 3.106828, max: 4.351033
15:22:30 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.681067, mean: 3.106828, max: 4.351033
15:22:30 DEBUG   opendrift:689: No elements hit coastline.
15:22:30 DEBUG   opendrift:1683: No elements to deactivate
15:22:30 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:30 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:30 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:30 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:30 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:30 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:30 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:30 DEBUG   opendrift.models.physics_methods:878:    min: 1.681067, mean: 3.106828, max: 4.351033
15:22:30 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:30 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.149666, dN_50: 0.011746
15:22:30 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:30 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.009359871889419433
15:22:30 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:30 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:30 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:30 DEBUG   opendrift.models.physics_methods:732: Advecting 2189 of 6000 elements above 0.100m with wind-sheared ocean current (0.064459 m/s - 0.152762 m/s)
15:22:30 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:30 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015421143748725402 and 0.406708720958442 m/s
15:22:30 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:30 DEBUG   opendrift:2085: ======================================================================
15:22:30 INFO    opendrift:2086: 2025-10-01 22:21:17.242042 - step 104 of 120 - 6000 active elements (0 deactivated)
15:22:30 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:30 DEBUG   opendrift:2094: ======================================================================
15:22:30 DEBUG   opendrift:2105:                34.23803870216286 <- latitude -> 35.24149816176177
15:22:30 DEBUG   opendrift:2105:                22.47746101915109 <- longitude -> 23.51041476048643
15:22:30 DEBUG   opendrift:2105:                -57.66651566691897 <- z -> 0.0
15:22:30 DEBUG   opendrift:2106: ---------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:30 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:30 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 21:00:00 (before)
                2025-10-02 00:00:00 (after)
15:22:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 21:00:00, weight 0.55) and
                      after (2025-10-02 00:00:00, weight 0.45) in time
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:30 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 21:00:00 (before)
                2025-10-02 00:00:00 (after)
15:22:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 21:00:00, weight 0.55) and
                      after (2025-10-02 00:00:00, weight 0.45) in time
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:30 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.430904 (min) -0.00799232 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.196562 (min) 0.595397 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.202085 (min) 2.51349 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -3.89446 (min) -1.03446 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:30 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.058352, mean: 0.266981, max: 0.528519
15:22:30 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:30 DEBUG   opendrift.models.physics_methods:878:    min: 1.316005, mean: 2.806024, max: 3.960588
15:22:30 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.316005, mean: 2.806024, max: 3.960588
15:22:30 DEBUG   opendrift:689: No elements hit coastline.
15:22:30 DEBUG   opendrift:1683: No elements to deactivate
15:22:30 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:30 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:30 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:30 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:30 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:30 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:30 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:30 DEBUG   opendrift.models.physics_methods:878:    min: 1.316005, mean: 2.806024, max: 3.960588
15:22:30 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:30 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.164304, dN_50: 0.012895
15:22:30 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:30 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.007756127893637535
15:22:30 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:30 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:30 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:30 DEBUG   opendrift.models.physics_methods:732: Advecting 2191 of 6000 elements above 0.100m with wind-sheared ocean current (0.009263 m/s - 0.139054 m/s)
15:22:30 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:30 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015182774344323713 and 0.4520098594721824 m/s
15:22:30 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:30 DEBUG   opendrift:2085: ======================================================================
15:22:30 INFO    opendrift:2086: 2025-10-01 23:21:17.242042 - step 105 of 120 - 6000 active elements (0 deactivated)
15:22:30 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:30 DEBUG   opendrift:2094: ======================================================================
15:22:30 DEBUG   opendrift:2105:                34.236235737408144 <- latitude -> 35.24023693646046
15:22:30 DEBUG   opendrift:2105:                22.464989136749608 <- longitude -> 23.508817239892096
15:22:30 DEBUG   opendrift:2105:                -56.62489013231646 <- z -> 0.0
15:22:30 DEBUG   opendrift:2106: ---------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:30 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:30 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 21:00:00 (before)
                2025-10-02 00:00:00 (after)
15:22:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 21:00:00, weight 0.22) and
                      after (2025-10-02 00:00:00, weight 0.78) in time
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:30 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:30 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:30 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:30 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-01 21:00:00 (before)
                2025-10-02 00:00:00 (after)
15:22:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-01 21:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:30 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-01 21:00:00, weight 0.22) and
                      after (2025-10-02 00:00:00, weight 0.78) in time
15:22:30 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:30 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:30 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:30 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:30 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.421233 (min) -0.00295924 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.169099 (min) 0.550891 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.431583 (min) 2.46519 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -3.44724 (min) -0.405633 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:30 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:30 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.042839, mean: 0.214818, max: 0.441832
15:22:30 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:30 DEBUG   opendrift.models.physics_methods:878:    min: 1.127584, mean: 2.504413, max: 3.621248
15:22:30 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.127584, mean: 2.504413, max: 3.621248
15:22:30 DEBUG   opendrift:689: No elements hit coastline.
15:22:30 DEBUG   opendrift:1683: No elements to deactivate
15:22:30 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:30 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:30 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:30 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:30 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:30 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:30 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:30 DEBUG   opendrift.models.physics_methods:878:    min: 1.127584, mean: 2.504413, max: 3.621248
15:22:30 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:30 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.183069, dN_50: 0.014367
15:22:30 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:30 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.0064846735326092465
15:22:30 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:30 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:30 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:31 DEBUG   opendrift.models.physics_methods:732: Advecting 2190 of 6000 elements above 0.100m with wind-sheared ocean current (0.012796 m/s - 0.127140 m/s)
15:22:31 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:31 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002474050307406196 and 0.431142765303631 m/s
15:22:31 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:31 DEBUG   opendrift:2085: ======================================================================
15:22:31 INFO    opendrift:2086: 2025-10-02 00:21:17.242042 - step 106 of 120 - 6000 active elements (0 deactivated)
15:22:31 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:31 DEBUG   opendrift:2094: ======================================================================
15:22:31 DEBUG   opendrift:2105:                34.234083057879495 <- latitude -> 35.24051727564731
15:22:31 DEBUG   opendrift:2105:                22.455275670669604 <- longitude -> 23.509641124917433
15:22:31 DEBUG   opendrift:2105:                -55.81107230231749 <- z -> 0.0
15:22:31 DEBUG   opendrift:2106: ---------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:31 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:31 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 00:00:00 (before)
                2025-10-02 03:00:00 (after)
15:22:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:31 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:31 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:31 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:31 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 23x33x17) for time after (2025-10-02 03:00:00)
15:22:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:31 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:31 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 00:00:00, weight 0.88) and
                      after (2025-10-02 03:00:00, weight 0.12) in time
15:22:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:31 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 00:00:00 (before)
                2025-10-02 03:00:00 (after)
15:22:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:31 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:31 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:31 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:31 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 10x8x1) for time after (2025-10-02 03:00:00)
15:22:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:31 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:31 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 00:00:00, weight 0.88) and
                      after (2025-10-02 03:00:00, weight 0.12) in time
15:22:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:31 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:31 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:31 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:31 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:31 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:31 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.402893 (min) -0.00947697 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.163424 (min) 0.492365 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.586194 (min) 2.35082 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -2.97821 (min) 0.284692 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:31 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:31 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.048343, mean: 0.161771, max: 0.353756
15:22:31 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:31 DEBUG   opendrift.models.physics_methods:878:    min: 1.197835, mean: 2.157576, max: 3.240273
15:22:31 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.197835, mean: 2.157576, max: 3.240273
15:22:31 DEBUG   opendrift:689: No elements hit coastline.
15:22:31 DEBUG   opendrift:1683: No elements to deactivate
15:22:31 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:31 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:31 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:31 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:31 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:31 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:31 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:31 DEBUG   opendrift.models.physics_methods:878:    min: 1.197835, mean: 2.157577, max: 3.240273
15:22:31 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:31 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.209003, dN_50: 0.016403
15:22:31 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:31 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.005192838473877883
15:22:31 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:31 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:31 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:31 DEBUG   opendrift.models.physics_methods:732: Advecting 2189 of 6000 elements above 0.100m with wind-sheared ocean current (0.048651 m/s - 0.113764 m/s)
15:22:31 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:31 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021937081066287552 and 0.48351860572699124 m/s
15:22:31 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:31 DEBUG   opendrift:2085: ======================================================================
15:22:31 INFO    opendrift:2086: 2025-10-02 01:21:17.242042 - step 107 of 120 - 6000 active elements (0 deactivated)
15:22:31 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:31 DEBUG   opendrift:2094: ======================================================================
15:22:31 DEBUG   opendrift:2105:                34.229159478521595 <- latitude -> 35.24426573244914
15:22:31 DEBUG   opendrift:2105:                22.444414863482347 <- longitude -> 23.513169528317146
15:22:31 DEBUG   opendrift:2105:                -55.3141504270638 <- z -> 0.0
15:22:31 DEBUG   opendrift:2106: ---------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:31 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:31 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 00:00:00 (before)
                2025-10-02 03:00:00 (after)
15:22:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:31 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:31 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 00:00:00, weight 0.55) and
                      after (2025-10-02 03:00:00, weight 0.45) in time
15:22:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:31 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:31 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:31 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:31 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:31 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:31 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:31 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 00:00:00 (before)
                2025-10-02 03:00:00 (after)
15:22:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:31 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:31 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 00:00:00, weight 0.55) and
                      after (2025-10-02 03:00:00, weight 0.45) in time
15:22:31 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:32 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:32 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:32 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.368872 (min) -0.0122277 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.168886 (min) 0.462814 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.606475 (min) 2.24197 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -2.44922 (min) 1.10009 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:32 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.040776, mean: 0.112196, max: 0.257387
15:22:32 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:32 DEBUG   opendrift.models.physics_methods:878:    min: 1.100096, mean: 1.798923, max: 2.763906
15:22:32 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.100096, mean: 1.798923, max: 2.763906
15:22:32 DEBUG   opendrift:689: No elements hit coastline.
15:22:32 DEBUG   opendrift:1683: No elements to deactivate
15:22:32 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:32 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:32 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:32 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:32 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:32 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:32 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:32 DEBUG   opendrift.models.physics_methods:878:    min: 1.100096, mean: 1.798923, max: 2.763906
15:22:32 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:32 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.240344, dN_50: 0.018862
15:22:32 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:32 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.0037793719083662612
15:22:32 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:32 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:32 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:32 DEBUG   opendrift.models.physics_methods:732: Advecting 2189 of 6000 elements above 0.100m with wind-sheared ocean current (0.045623 m/s - 0.097039 m/s)
15:22:32 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:32 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017594773186513444 and 0.45804193223410383 m/s
15:22:32 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:32 DEBUG   opendrift:2085: ======================================================================
15:22:32 INFO    opendrift:2086: 2025-10-02 02:21:17.242042 - step 108 of 120 - 6000 active elements (0 deactivated)
15:22:32 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:32 DEBUG   opendrift:2094: ======================================================================
15:22:32 DEBUG   opendrift:2105:                34.22367574449033 <- latitude -> 35.24720676947967
15:22:32 DEBUG   opendrift:2105:                22.43480579032815 <- longitude -> 23.514666305592648
15:22:32 DEBUG   opendrift:2105:                -54.23709452744373 <- z -> 0.0
15:22:32 DEBUG   opendrift:2106: ---------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:32 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:32 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 00:00:00 (before)
                2025-10-02 03:00:00 (after)
15:22:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:32 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:32 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 00:00:00, weight 0.22) and
                      after (2025-10-02 03:00:00, weight 0.78) in time
15:22:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:32 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 00:00:00 (before)
                2025-10-02 03:00:00 (after)
15:22:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 00:00:00) in space  (linearNDFast)
15:22:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:32 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:32 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 00:00:00, weight 0.22) and
                      after (2025-10-02 03:00:00, weight 0.78) in time
15:22:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:32 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:32 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:32 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:32 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.368949 (min) 0.00252338 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.16695 (min) 0.473811 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.63935 (min) 2.42745 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -1.92605 (min) 1.91782 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:32 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:32 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.015020, mean: 0.087837, max: 0.235436
15:22:32 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:32 DEBUG   opendrift.models.physics_methods:878:    min: 0.667668, mean: 1.600773, max: 2.643418
15:22:32 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.667668, mean: 1.600773, max: 2.643418
15:22:32 DEBUG   opendrift:689: No elements hit coastline.
15:22:32 DEBUG   opendrift:1683: No elements to deactivate
15:22:32 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:32 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:32 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:32 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:32 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:32 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:32 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:32 DEBUG   opendrift.models.physics_methods:878:    min: 0.667668, mean: 1.600773, max: 2.643419
15:22:32 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:32 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.262906, dN_50: 0.020633
15:22:32 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:32 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.00345740329056238
15:22:32 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:32 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:32 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:32 DEBUG   opendrift.models.physics_methods:732: Advecting 2189 of 6000 elements above 0.100m with wind-sheared ocean current (0.043467 m/s - 0.080889 m/s)
15:22:32 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:32 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016700736896748454 and 0.4569000017345448 m/s
15:22:32 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:32 DEBUG   opendrift:2085: ======================================================================
15:22:32 INFO    opendrift:2086: 2025-10-02 03:21:17.242042 - step 109 of 120 - 6000 active elements (0 deactivated)
15:22:32 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:32 DEBUG   opendrift:2094: ======================================================================
15:22:32 DEBUG   opendrift:2105:                34.21629874156728 <- latitude -> 35.24936820727682
15:22:32 DEBUG   opendrift:2105:                22.413759853609516 <- longitude -> 23.51581683727246
15:22:32 DEBUG   opendrift:2105:                -53.300972353170216 <- z -> 0.0
15:22:32 DEBUG   opendrift:2106: ---------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:32 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:32 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:32 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:32 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:32 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:32 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:32 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:32 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:32 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 03:00:00 (before)
                2025-10-02 06:00:00 (after)
15:22:32 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:33 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:33 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:33 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:33 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 23x34x17) for time after (2025-10-02 06:00:00)
15:22:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:33 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:33 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 03:00:00, weight 0.88) and
                      after (2025-10-02 06:00:00, weight 0.12) in time
15:22:33 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:33 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:33 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:33 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:33 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:33 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:33 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:33 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:33 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:33 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:33 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 03:00:00 (before)
                2025-10-02 06:00:00 (after)
15:22:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:33 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:33 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:33 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 10x8x1) for time after (2025-10-02 06:00:00)
15:22:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:33 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:33 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 03:00:00, weight 0.88) and
                      after (2025-10-02 06:00:00, weight 0.12) in time
15:22:33 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:33 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:33 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:33 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:33 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:33 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:33 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:33 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:33 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.38825 (min) 0.0525412 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.179712 (min) 0.478306 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 0.899775 (min) 2.98827 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -1.22803 (min) 2.73088 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:33 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:33 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.023972, mean: 0.107121, max: 0.403131
15:22:33 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:33 DEBUG   opendrift.models.physics_methods:878:    min: 0.843492, mean: 1.770285, max: 3.459017
15:22:33 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.843492, mean: 1.770285, max: 3.459017
15:22:33 DEBUG   opendrift:689: No elements hit coastline.
15:22:33 DEBUG   opendrift:1683: No elements to deactivate
15:22:33 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:33 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:33 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:33 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:33 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:33 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:33 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:33 DEBUG   opendrift.models.physics_methods:878:    min: 0.843492, mean: 1.770285, max: 3.459017
15:22:33 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:33 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.246751, dN_50: 0.019365
15:22:33 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:33 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.005917035889500913
15:22:33 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:33 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:33 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:34 DEBUG   opendrift.models.physics_methods:732: Advecting 2189 of 6000 elements above 0.100m with wind-sheared ocean current (0.051930 m/s - 0.078308 m/s)
15:22:34 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:34 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025602435223366143 and 0.5213781346660366 m/s
15:22:34 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:34 DEBUG   opendrift:2085: ======================================================================
15:22:34 INFO    opendrift:2086: 2025-10-02 04:21:17.242042 - step 110 of 120 - 6000 active elements (0 deactivated)
15:22:34 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:34 DEBUG   opendrift:2094: ======================================================================
15:22:34 DEBUG   opendrift:2105:                34.214936742818786 <- latitude -> 35.25416442043536
15:22:34 DEBUG   opendrift:2105:                22.396325303665257 <- longitude -> 23.513193362392624
15:22:34 DEBUG   opendrift:2105:                -52.5507976099404 <- z -> 0.0
15:22:34 DEBUG   opendrift:2106: ---------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:34 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:34 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 03:00:00 (before)
                2025-10-02 06:00:00 (after)
15:22:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:34 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:34 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 03:00:00, weight 0.55) and
                      after (2025-10-02 06:00:00, weight 0.45) in time
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:34 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 03:00:00 (before)
                2025-10-02 06:00:00 (after)
15:22:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:34 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:34 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 03:00:00, weight 0.55) and
                      after (2025-10-02 06:00:00, weight 0.45) in time
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:34 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:34 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.400578 (min) 0.0750194 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.194186 (min) 0.48069 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 1.5591 (min) 3.62971 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: -0.078836 (min) 3.45633 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:34 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.095439, mean: 0.208353, max: 0.617977
15:22:34 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:34 DEBUG   opendrift.models.physics_methods:878:    min: 1.683029, mean: 2.470346, max: 4.282680
15:22:34 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.683029, mean: 2.470346, max: 4.282680
15:22:34 DEBUG   opendrift:689: No elements hit coastline.
15:22:34 DEBUG   opendrift:1683: No elements to deactivate
15:22:34 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:34 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:34 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:34 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:34 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:34 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:34 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:34 DEBUG   opendrift.models.physics_methods:878:    min: 1.683028, mean: 2.470346, max: 4.282680
15:22:34 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:34 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.198427, dN_50: 0.015573
15:22:34 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:34 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.009068233915311601
15:22:34 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:34 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:34 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:34 DEBUG   opendrift.models.physics_methods:732: Advecting 2189 of 6000 elements above 0.100m with wind-sheared ocean current (0.066843 m/s - 0.109317 m/s)
15:22:34 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:34 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002000248961585391 and 0.4823770272054967 m/s
15:22:34 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:34 DEBUG   opendrift:2085: ======================================================================
15:22:34 INFO    opendrift:2086: 2025-10-02 05:21:17.242042 - step 111 of 120 - 6000 active elements (0 deactivated)
15:22:34 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:34 DEBUG   opendrift:2094: ======================================================================
15:22:34 DEBUG   opendrift:2105:                34.2169729162739 <- latitude -> 35.25684237817479
15:22:34 DEBUG   opendrift:2105:                22.379320087132303 <- longitude -> 23.508365820746068
15:22:34 DEBUG   opendrift:2105:                -51.703044437513135 <- z -> 0.0
15:22:34 DEBUG   opendrift:2106: ---------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:34 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:34 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 03:00:00 (before)
                2025-10-02 06:00:00 (after)
15:22:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:34 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:34 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 03:00:00, weight 0.22) and
                      after (2025-10-02 06:00:00, weight 0.78) in time
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:34 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 03:00:00 (before)
                2025-10-02 06:00:00 (after)
15:22:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 03:00:00) in space  (linearNDFast)
15:22:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:34 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:34 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 03:00:00, weight 0.22) and
                      after (2025-10-02 06:00:00, weight 0.78) in time
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:34 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:34 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:34 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.425873 (min) 0.115316 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.21889 (min) 0.496079 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 2.2231 (min) 4.26721 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 1.02615 (min) 4.18169 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:34 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:34 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.196484, mean: 0.368807, max: 0.878113
15:22:34 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:34 DEBUG   opendrift.models.physics_methods:878:    min: 2.414869, mean: 3.288973, max: 5.105106
15:22:34 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.414869, mean: 3.288973, max: 5.105106
15:22:34 DEBUG   opendrift:689: No elements hit coastline.
15:22:34 DEBUG   opendrift:1683: No elements to deactivate
15:22:34 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:34 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:34 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:34 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:34 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:34 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:34 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:34 DEBUG   opendrift.models.physics_methods:878:    min: 2.414869, mean: 3.288973, max: 5.105106
15:22:34 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:34 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.166176, dN_50: 0.013042
15:22:34 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:34 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01288372828004253
15:22:34 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:34 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:34 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:34 DEBUG   opendrift.models.physics_methods:732: Advecting 2195 of 6000 elements above 0.100m with wind-sheared ocean current (0.082624 m/s - 0.141616 m/s)
15:22:34 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:34 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021492554007407367 and 0.43190766294847177 m/s
15:22:34 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:34 DEBUG   opendrift:2085: ======================================================================
15:22:34 INFO    opendrift:2086: 2025-10-02 06:21:17.242042 - step 112 of 120 - 6000 active elements (0 deactivated)
15:22:34 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:34 DEBUG   opendrift:2094: ======================================================================
15:22:34 DEBUG   opendrift:2105:                34.22188516196698 <- latitude -> 35.26342759892749
15:22:34 DEBUG   opendrift:2105:                22.358317625689676 <- longitude -> 23.512190223471592
15:22:34 DEBUG   opendrift:2105:                -50.721284694889725 <- z -> 0.0
15:22:34 DEBUG   opendrift:2106: ---------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:34 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:34 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:34 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:34 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:34 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:34 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:34 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:34 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:34 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 06:00:00 (before)
                2025-10-02 09:00:00 (after)
15:22:34 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:35 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:35 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:35 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:35 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:35 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:35 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 24x34x17) for time after (2025-10-02 09:00:00)
15:22:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:35 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:35 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:35 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:35 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 06:00:00, weight 0.88) and
                      after (2025-10-02 09:00:00, weight 0.12) in time
15:22:35 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:35 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:35 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:35 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:35 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:35 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:35 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:35 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:35 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:35 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:35 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 06:00:00 (before)
                2025-10-02 09:00:00 (after)
15:22:35 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:35 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:36 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:36 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:36 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:36 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 10x8x1) for time after (2025-10-02 09:00:00)
15:22:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 06:00:00, weight 0.88) and
                      after (2025-10-02 09:00:00, weight 0.12) in time
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:36 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.466397 (min) 0.1298 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.269026 (min) 0.510112 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 2.82108 (min) 5.01772 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.10099 (min) 4.92062 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:36 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.335329, mean: 0.569892, max: 1.214996
15:22:36 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:36 DEBUG   opendrift.models.physics_methods:878:    min: 3.154753, mean: 4.091517, max: 6.005054
15:22:36 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.154753, mean: 4.091517, max: 6.005054
15:22:36 DEBUG   opendrift:689: No elements hit coastline.
15:22:36 DEBUG   opendrift:1683: No elements to deactivate
15:22:36 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:36 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:36 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:36 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:36 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:36 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:36 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:36 DEBUG   opendrift.models.physics_methods:878:    min: 3.154753, mean: 4.091516, max: 6.005054
15:22:36 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:36 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.146309, dN_50: 0.011482
15:22:36 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:36 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.01782487476541809
15:22:36 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:36 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:36 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:36 DEBUG   opendrift.models.physics_methods:732: Advecting 2193 of 6000 elements above 0.100m with wind-sheared ocean current (0.110762 m/s - 0.172338 m/s)
15:22:36 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:36 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012295353761782903 and 0.5163691816091757 m/s
15:22:36 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:36 DEBUG   opendrift:2085: ======================================================================
15:22:36 INFO    opendrift:2086: 2025-10-02 07:21:17.242042 - step 113 of 120 - 6000 active elements (0 deactivated)
15:22:36 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:36 DEBUG   opendrift:2094: ======================================================================
15:22:36 DEBUG   opendrift:2105:                34.22643360161971 <- latitude -> 35.26813893646085
15:22:36 DEBUG   opendrift:2105:                22.341145846169955 <- longitude -> 23.5134750786886
15:22:36 DEBUG   opendrift:2105:                -49.56492489381938 <- z -> 0.0
15:22:36 DEBUG   opendrift:2106: ---------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:36 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:36 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 06:00:00 (before)
                2025-10-02 09:00:00 (after)
15:22:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 06:00:00, weight 0.55) and
                      after (2025-10-02 09:00:00, weight 0.45) in time
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:36 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 06:00:00 (before)
                2025-10-02 09:00:00 (after)
15:22:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 06:00:00, weight 0.55) and
                      after (2025-10-02 09:00:00, weight 0.45) in time
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:36 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.476557 (min) 0.103924 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.345379 (min) 0.510582 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 3.42582 (min) 5.96365 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.78686 (min) 5.6835 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:36 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.542358, mean: 0.780885, max: 1.669536
15:22:36 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:36 DEBUG   opendrift.models.physics_methods:878:    min: 4.012108, mean: 4.791940, max: 7.039268
15:22:36 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.012108, mean: 4.791940, max: 7.039268
15:22:36 DEBUG   opendrift:689: No elements hit coastline.
15:22:36 DEBUG   opendrift:1683: No elements to deactivate
15:22:36 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:36 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:36 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:36 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:36 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:36 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:36 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:36 DEBUG   opendrift.models.physics_methods:878:    min: 4.012108, mean: 4.791940, max: 7.039268
15:22:36 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:36 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.134303, dN_50: 0.010540
15:22:36 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:36 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.024491752399747848
15:22:36 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:36 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:36 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:36 DEBUG   opendrift.models.physics_methods:732: Advecting 2199 of 6000 elements above 0.100m with wind-sheared ocean current (0.066016 m/s - 0.200542 m/s)
15:22:36 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:36 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002070378252213729 and 0.4572408692604236 m/s
15:22:36 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:36 DEBUG   opendrift:2085: ======================================================================
15:22:36 INFO    opendrift:2086: 2025-10-02 08:21:17.242042 - step 114 of 120 - 6000 active elements (0 deactivated)
15:22:36 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:36 DEBUG   opendrift:2094: ======================================================================
15:22:36 DEBUG   opendrift:2105:                34.23044455789678 <- latitude -> 35.27529347855048
15:22:36 DEBUG   opendrift:2105:                22.31681340350258 <- longitude -> 23.51543065704542
15:22:36 DEBUG   opendrift:2105:                -48.44781660245134 <- z -> 0.0
15:22:36 DEBUG   opendrift:2106: ---------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:36 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:36 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 06:00:00 (before)
                2025-10-02 09:00:00 (after)
15:22:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 06:00:00, weight 0.22) and
                      after (2025-10-02 09:00:00, weight 0.78) in time
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:36 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 06:00:00 (before)
                2025-10-02 09:00:00 (after)
15:22:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 06:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:36 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 06:00:00, weight 0.22) and
                      after (2025-10-02 09:00:00, weight 0.78) in time
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:36 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:36 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.507164 (min) 0.125974 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.445505 (min) 0.513974 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 3.98298 (min) 6.9795 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.38147 (min) 6.64769 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:36 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:36 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.797643, mean: 1.026799, max: 2.188816
15:22:36 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:36 DEBUG   opendrift.models.physics_methods:878:    min: 4.865571, mean: 5.496072, max: 8.059984
15:22:36 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.865571, mean: 5.496072, max: 8.059984
15:22:36 DEBUG   opendrift:689: No elements hit coastline.
15:22:36 DEBUG   opendrift:1683: No elements to deactivate
15:22:36 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:36 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:36 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:36 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:36 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:36 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:36 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:36 DEBUG   opendrift.models.physics_methods:878:    min: 4.865571, mean: 5.496072, max: 8.059984
15:22:36 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:36 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.125022, dN_50: 0.009812
15:22:36 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:36 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.0321081732888933
15:22:36 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:36 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:36 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:36 DEBUG   opendrift.models.physics_methods:732: Advecting 2197 of 6000 elements above 0.100m with wind-sheared ocean current (0.170828 m/s - 0.228886 m/s)
15:22:36 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:36 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0024877689430824906 and 0.4271755764296733 m/s
15:22:36 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:36 DEBUG   opendrift:2085: ======================================================================
15:22:36 INFO    opendrift:2086: 2025-10-02 09:21:17.242042 - step 115 of 120 - 6000 active elements (0 deactivated)
15:22:36 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:36 DEBUG   opendrift:2094: ======================================================================
15:22:36 DEBUG   opendrift:2105:                34.2370413617529 <- latitude -> 35.277065744180206
15:22:36 DEBUG   opendrift:2105:                22.302618558483662 <- longitude -> 23.50930897863691
15:22:36 DEBUG   opendrift:2105:                -47.47579386735669 <- z -> 0.0
15:22:36 DEBUG   opendrift:2106: ---------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:36 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:36 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:36 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:36 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:36 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:36 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:36 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:36 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:36 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 09:00:00 (before)
                2025-10-02 12:00:00 (after)
15:22:36 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:37 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:37 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:37 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:37 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:37 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:37 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 25x34x16) for time after (2025-10-02 12:00:00)
15:22:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:37 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:37 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 09:00:00, weight 0.88) and
                      after (2025-10-02 12:00:00, weight 0.12) in time
15:22:37 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:37 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:37 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:37 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:37 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:37 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:37 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:37 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:37 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:37 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:37 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 09:00:00 (before)
                2025-10-02 12:00:00 (after)
15:22:37 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:37 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:38 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:38 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:38 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:38 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 10x8x1) for time after (2025-10-02 12:00:00)
15:22:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 09:00:00, weight 0.88) and
                      after (2025-10-02 12:00:00, weight 0.12) in time
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:38 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.545874 (min) 0.15358 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.490531 (min) 0.520784 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.32591 (min) 7.62823 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.66899 (min) 7.45616 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:38 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.967217, mean: 1.243671, max: 2.526994
15:22:38 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:38 DEBUG   opendrift.models.physics_methods:878:    min: 5.357861, mean: 6.050559, max: 8.660276
15:22:38 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.357861, mean: 6.050559, max: 8.660276
15:22:38 DEBUG   opendrift:689: No elements hit coastline.
15:22:38 DEBUG   opendrift:1683: No elements to deactivate
15:22:38 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:38 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:38 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:38 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:38 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:38 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:38 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:38 DEBUG   opendrift.models.physics_methods:878:    min: 5.357862, mean: 6.050559, max: 8.660275
15:22:38 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:38 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.119694, dN_50: 0.009394
15:22:38 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:38 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.03706832548220344
15:22:38 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:38 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:38 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:38 DEBUG   opendrift.models.physics_methods:732: Advecting 2203 of 6000 elements above 0.100m with wind-sheared ocean current (0.027229 m/s - 0.251334 m/s)
15:22:38 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:38 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00039984945513743287 and 0.4439860040684126 m/s
15:22:38 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:38 DEBUG   opendrift:2085: ======================================================================
15:22:38 INFO    opendrift:2086: 2025-10-02 10:21:17.242042 - step 116 of 120 - 6000 active elements (0 deactivated)
15:22:38 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:38 DEBUG   opendrift:2094: ======================================================================
15:22:38 DEBUG   opendrift:2105:                34.23733789677372 <- latitude -> 35.2768623213362
15:22:38 DEBUG   opendrift:2105:                22.28664082631479 <- longitude -> 23.507212701885845
15:22:38 DEBUG   opendrift:2105:                -46.608389719545826 <- z -> 0.0
15:22:38 DEBUG   opendrift:2106: ---------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:38 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:38 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 09:00:00 (before)
                2025-10-02 12:00:00 (after)
15:22:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 09:00:00, weight 0.55) and
                      after (2025-10-02 12:00:00, weight 0.45) in time
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:38 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 09:00:00 (before)
                2025-10-02 12:00:00 (after)
15:22:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 09:00:00, weight 0.55) and
                      after (2025-10-02 12:00:00, weight 0.45) in time
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:38 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.558367 (min) 0.197679 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.44539 (min) 0.522144 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.22938 (min) 7.5882 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.3988 (min) 7.44114 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:38 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.908392, mean: 1.364848, max: 2.392195
15:22:38 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:38 DEBUG   opendrift.models.physics_methods:878:    min: 5.192376, mean: 6.342894, max: 8.426125
15:22:38 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.192376, mean: 6.342894, max: 8.426125
15:22:38 DEBUG   opendrift:689: No elements hit coastline.
15:22:38 DEBUG   opendrift:1683: No elements to deactivate
15:22:38 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:38 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:38 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:38 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:38 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:38 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:38 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:38 DEBUG   opendrift.models.physics_methods:878:    min: 5.192376, mean: 6.342895, max: 8.426126
15:22:38 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:38 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.118518, dN_50: 0.009301
15:22:38 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:38 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.03509118891232891
15:22:38 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:38 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:38 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:38 DEBUG   opendrift.models.physics_methods:732: Advecting 2207 of 6000 elements above 0.100m with wind-sheared ocean current (0.039693 m/s - 0.265423 m/s)
15:22:38 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:38 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030132371030587844 and 0.42767805855437807 m/s
15:22:38 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:38 DEBUG   opendrift:2085: ======================================================================
15:22:38 INFO    opendrift:2086: 2025-10-02 11:21:17.242042 - step 117 of 120 - 6000 active elements (0 deactivated)
15:22:38 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:38 DEBUG   opendrift:2094: ======================================================================
15:22:38 DEBUG   opendrift:2105:                34.23737085553711 <- latitude -> 35.27903805562174
15:22:38 DEBUG   opendrift:2105:                22.271575750793883 <- longitude -> 23.523033852923415
15:22:38 DEBUG   opendrift:2105:                -45.914870275818004 <- z -> 0.0
15:22:38 DEBUG   opendrift:2106: ---------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:38 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:38 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 09:00:00 (before)
                2025-10-02 12:00:00 (after)
15:22:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 09:00:00, weight 0.22) and
                      after (2025-10-02 12:00:00, weight 0.78) in time
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:38 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 09:00:00 (before)
                2025-10-02 12:00:00 (after)
15:22:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 09:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:38 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 09:00:00, weight 0.22) and
                      after (2025-10-02 12:00:00, weight 0.78) in time
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:38 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:38 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.561119 (min) 0.227689 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.402572 (min) 0.535191 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.12138 (min) 7.62398 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.09532 (min) 7.44745 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:38 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:38 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.859848, mean: 1.500590, max: 2.254252
15:22:38 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:38 DEBUG   opendrift.models.physics_methods:878:    min: 5.051733, mean: 6.654376, max: 8.179576
15:22:38 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.051733, mean: 6.654376, max: 8.179576
15:22:38 DEBUG   opendrift:689: No elements hit coastline.
15:22:38 DEBUG   opendrift:1683: No elements to deactivate
15:22:38 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:38 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:38 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:38 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:38 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:38 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:38 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:38 DEBUG   opendrift.models.physics_methods:878:    min: 5.051733, mean: 6.654375, max: 8.179577
15:22:38 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:38 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.117185, dN_50: 0.009197
15:22:38 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:38 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.03306794082660289
15:22:38 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:38 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:38 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:38 DEBUG   opendrift.models.physics_methods:732: Advecting 2204 of 6000 elements above 0.100m with wind-sheared ocean current (0.079230 m/s - 0.268426 m/s)
15:22:38 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:38 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030181856153054234 and 0.44776862860965655 m/s
15:22:38 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:38 DEBUG   opendrift:2085: ======================================================================
15:22:38 INFO    opendrift:2086: 2025-10-02 12:21:17.242042 - step 118 of 120 - 6000 active elements (0 deactivated)
15:22:38 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:38 DEBUG   opendrift:2094: ======================================================================
15:22:38 DEBUG   opendrift:2105:                34.23985959724768 <- latitude -> 35.28764860302774
15:22:38 DEBUG   opendrift:2105:                22.25001588812277 <- longitude -> 23.52841881194227
15:22:38 DEBUG   opendrift:2105:                -45.21871649350063 <- z -> 0.0
15:22:38 DEBUG   opendrift:2106: ---------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:38 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:38 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:38 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:38 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:38 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:38 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:38 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:38 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:38 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 12:00:00 (before)
                2025-10-02 15:00:00 (after)
15:22:38 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
15:22:39 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
15:22:39 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:39 DEBUG   opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
15:22:39 DEBUG   opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
15:22:39 DEBUG   opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:39 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 25x35x16) for time after (2025-10-02 15:00:00)
15:22:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:39 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 15:00:00) in space  (linearNDFast)
15:22:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:39 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 12:00:00, weight 0.88) and
                      after (2025-10-02 15:00:00, weight 0.12) in time
15:22:39 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:39 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:39 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:39 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:39 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:39 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:39 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:39 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:39 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:39 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:39 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 12:00:00 (before)
                2025-10-02 15:00:00 (after)
15:22:39 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
15:22:40 DEBUG   opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
15:22:40 DEBUG   opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
15:22:40 DEBUG   opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
15:22:40 DEBUG   opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
15:22:40 DEBUG   opendrift.readers.basereader.structured:313: Fetched env-block (size 10x8x1) for time after (2025-10-02 15:00:00)
15:22:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 15:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 12:00:00, weight 0.88) and
                      after (2025-10-02 15:00:00, weight 0.12) in time
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:40 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.587345 (min) 0.239082 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.39442 (min) 0.55336 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.21528 (min) 7.70706 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.96621 (min) 7.27929 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:40 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.894367, mean: 1.599767, max: 2.053472
15:22:40 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:40 DEBUG   opendrift.models.physics_methods:878:    min: 5.152137, mean: 6.877861, max: 7.806817
15:22:40 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.152137, mean: 6.877861, max: 7.806817
15:22:40 DEBUG   opendrift:689: No elements hit coastline.
15:22:40 DEBUG   opendrift:1683: No elements to deactivate
15:22:40 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:40 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:40 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:40 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:40 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:40 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:40 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:40 DEBUG   opendrift.models.physics_methods:878:    min: 5.152137, mean: 6.877862, max: 7.806817
15:22:40 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:40 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.116488, dN_50: 0.009142
15:22:40 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:40 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.030123047675902355
15:22:40 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:40 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:40 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:40 DEBUG   opendrift.models.physics_methods:732: Advecting 2209 of 6000 elements above 0.100m with wind-sheared ocean current (0.062334 m/s - 0.262729 m/s)
15:22:40 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:40 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008618147292253081 and 0.45196291556779145 m/s
15:22:40 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:40 DEBUG   opendrift:2085: ======================================================================
15:22:40 INFO    opendrift:2086: 2025-10-02 13:21:17.242042 - step 119 of 120 - 6000 active elements (0 deactivated)
15:22:40 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:40 DEBUG   opendrift:2094: ======================================================================
15:22:40 DEBUG   opendrift:2105:                34.244600488462915 <- latitude -> 35.29329319244218
15:22:40 DEBUG   opendrift:2105:                22.235283498503154 <- longitude -> 23.540519888582455
15:22:40 DEBUG   opendrift:2105:                -44.38841870001437 <- z -> 0.0
15:22:40 DEBUG   opendrift:2106: ---------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:40 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:40 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 12:00:00 (before)
                2025-10-02 15:00:00 (after)
15:22:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 15:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 12:00:00, weight 0.55) and
                      after (2025-10-02 15:00:00, weight 0.45) in time
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:40 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 12:00:00 (before)
                2025-10-02 15:00:00 (after)
15:22:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 15:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 12:00:00, weight 0.55) and
                      after (2025-10-02 15:00:00, weight 0.45) in time
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:40 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.589096 (min) 0.229076 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.349214 (min) 0.564357 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 4.76876 (min) 7.75731 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 3.1514 (min) 6.59112 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:40 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.085788, mean: 1.620320, max: 1.819033
15:22:40 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:40 DEBUG   opendrift.models.physics_methods:878:    min: 5.676782, mean: 6.930826, max: 7.347673
15:22:40 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.676782, mean: 6.930826, max: 7.347673
15:22:40 DEBUG   opendrift:689: No elements hit coastline.
15:22:40 DEBUG   opendrift:1683: No elements to deactivate
15:22:40 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:40 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:40 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:40 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:40 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:40 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:40 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:40 DEBUG   opendrift.models.physics_methods:878:    min: 5.676782, mean: 6.930826, max: 7.347673
15:22:40 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:40 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.117032, dN_50: 0.009185
15:22:40 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:40 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.026684459160403292
15:22:40 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:40 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:40 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:40 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2206 surface elements
15:22:40 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2207 surface elements
15:22:40 DEBUG   opendrift.models.physics_methods:732: Advecting 2210 of 6000 elements above 0.100m with wind-sheared ocean current (0.067732 m/s - 0.257209 m/s)
15:22:40 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:40 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016299246315648463 and 0.4430673946171603 m/s
15:22:40 DEBUG   opendrift:902: to be seeded: 0, already seeded 6000
15:22:40 DEBUG   opendrift:2085: ======================================================================
15:22:40 INFO    opendrift:2086: 2025-10-02 14:21:17.242042 - step 120 of 120 - 6000 active elements (0 deactivated)
15:22:40 DEBUG   opendrift:2092: 0 elements scheduled.
15:22:40 DEBUG   opendrift:2094: ======================================================================
15:22:40 DEBUG   opendrift:2105:                34.24850351676747 <- latitude -> 35.292241353587634
15:22:40 DEBUG   opendrift:2105:                22.21816495485409 <- longitude -> 23.554708746482053
15:22:40 DEBUG   opendrift:2105:                -43.27707119730703 <- z -> 0.0
15:22:40 DEBUG   opendrift:2106: ---------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['ocean_mixed_layer_thickness']
15:22:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader constant_reader
15:22:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:40 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
15:22:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
15:22:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:40 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 12:00:00 (before)
                2025-10-02 15:00:00 (after)
15:22:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 15:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 12:00:00, weight 0.22) and
                      after (2025-10-02 15:00:00, weight 0.78) in time
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['x_wind', 'y_wind']
15:22:40 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:598: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
15:22:40 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
15:22:40 DEBUG   opendrift.readers.basereader.structured:211: Shifting coordinates to 0-360
15:22:40 DEBUG   opendrift.readers.basereader.structured:220: Reader time:
                2025-10-02 12:00:00 (before)
                2025-10-02 15:00:00 (after)
15:22:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2025-10-02 12:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:340: Interpolating after (2025-10-02 15:00:00) in space  (linearNDFast)
15:22:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
15:22:40 DEBUG   opendrift.readers.basereader.structured:355: Interpolating before (2025-10-02 12:00:00, weight 0.22) and
                      after (2025-10-02 15:00:00, weight 0.78) in time
15:22:40 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:40 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:40 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:40 DEBUG   opendrift.models.basemodel.environment:783: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 10 for sea_water_temperature for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 34 for sea_water_salinity for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:788:       Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
15:22:40 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     x_sea_water_velocity: -0.583329 (min) 0.233585 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     y_sea_water_velocity: -0.320504 (min) 0.580928 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     x_wind: 5.34631 (min) 7.85852 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     y_wind: 2.3109 (min) 5.86521 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_height: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_significant_height: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_area_fraction: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_x_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_ice_y_velocity: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_temperature: 10 (min) 10 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_water_salinity: 34 (min) 34 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:890:     ocean_mixed_layer_thickness: 20 (min) 20 (max)
15:22:40 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:40 DEBUG   opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.296599, mean: 1.656441, max: 1.824838
15:22:40 DEBUG   opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
15:22:40 DEBUG   opendrift.models.physics_methods:878:    min: 6.203438, mean: 7.009623, max: 7.359388
15:22:40 DEBUG   opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.203438, mean: 7.009623, max: 7.359388
15:22:40 DEBUG   opendrift:689: No elements hit coastline.
15:22:40 DEBUG   opendrift:1683: No elements to deactivate
15:22:40 DEBUG   opendrift:2142: Calling OpenOil.update()
15:22:40 DEBUG   opendrift.models.openoil.openoil:716: NOAA oil weathering
15:22:40 DEBUG   opendrift.models.openoil.openoil:821:     Calculating evaporation - NOAA
15:22:40 DEBUG   opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
15:22:40 DEBUG   opendrift.models.openoil.openoil:854:     Calculating emulsification - NOAA
15:22:40 DEBUG   opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
15:22:40 DEBUG   opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
15:22:40 DEBUG   opendrift.models.physics_methods:878:    min: 6.203438, mean: 7.009623, max: 7.359388
15:22:40 DEBUG   opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
15:22:40 DEBUG   opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.117449, dN_50: 0.009217
15:22:40 DEBUG   opendrift.models.oceandrift:440: Using diffusivity from Large1994 since model diffusivities not available
15:22:40 DEBUG   opendrift.models.oceandrift:454: Diffusivities are in range 0.0 to 0.026769599231991154
15:22:40 DEBUG   opendrift.models.oceandrift:473: TSprofiles deactivated for vertical mixing
15:22:40 DEBUG   opendrift.models.oceandrift:487: Vertical mixing module:environment
15:22:40 DEBUG   opendrift.models.oceandrift:490: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
15:22:41 DEBUG   opendrift.models.openoil.openoil:1041: Entraining 1 of 2207 surface elements
15:22:41 DEBUG   opendrift.models.physics_methods:732: Advecting 2213 of 6000 elements above 0.100m with wind-sheared ocean current (0.005695 m/s - 0.257699 m/s)
15:22:41 DEBUG   opendrift.models.physics_methods:750: No Stokes drift velocity available
15:22:41 DEBUG   opendrift:1645: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002418479028936059 and 0.5039359636128283 m/s
15:22:41 DEBUG   opendrift:2180: Cleaning up
15:22:41 DEBUG   opendrift.models.basemodel.environment:592: ----------------------------------------
15:22:41 DEBUG   opendrift.models.basemodel.environment:593: Variable group ['land_binary_mask']
15:22:41 DEBUG   opendrift.models.basemodel.environment:594: ----------------------------------------
15:22:41 DEBUG   opendrift.models.basemodel.environment:598: Calling reader global_landmask
15:22:41 DEBUG   opendrift.models.basemodel.environment:599: ----------------------------------------
15:22:41 DEBUG   opendrift.models.basemodel.environment:615: Data needed for 6000 elements
15:22:41 DEBUG   opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
15:22:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
15:22:41 DEBUG   opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
15:22:41 DEBUG   opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
15:22:41 DEBUG   opendrift.models.basemodel.environment:749: Obtained data for all elements.
15:22:41 DEBUG   opendrift.models.basemodel.environment:762: ---------------------------------------
15:22:41 DEBUG   opendrift.models.basemodel.environment:763: Finished processing all variable groups
15:22:41 DEBUG   opendrift.models.basemodel.environment:888: ------------ SUMMARY -------------
15:22:41 DEBUG   opendrift.models.basemodel.environment:890:     land_binary_mask: 0 (min) 0 (max)
15:22:41 DEBUG   opendrift.models.basemodel.environment:892: ---------------------------------
15:22:41 DEBUG   opendrift:689: No elements hit coastline.
15:22:41 DEBUG   opendrift:2267: Updating minval and maxval
15:22:41 DEBUG   opendrift:2347: Writing to file
15:22:41 DEBUG   opendrift:1683: No elements to deactivate
15:22:41 DEBUG   opendrift:157: Changed mode from Mode.Run to Mode.Result
<xarray.Dataset> Size: 125MB
Dimensions:                                                                              (
                                                                                          trajectory: 6000,
                                                                                          time: 121)
Coordinates:
  * trajectory                                                                           (trajectory) int64 48kB ...
  * time                                                                                 (time) datetime64[ns] 968B ...
Data variables: (12/43)
    status                                                                               (trajectory, time) float32 3MB ...
    moving                                                                               (trajectory, time) float32 3MB ...
    age_seconds                                                                          (trajectory, time) float32 3MB ...
    origin_marker                                                                        (trajectory, time) float32 3MB ...
    lon                                                                                  (trajectory, time) float32 3MB ...
    lat                                                                                  (trajectory, time) float32 3MB ...
    ...                                                                                   ...
    sea_water_temperature                                                                (trajectory, time) float32 3MB ...
    sea_water_salinity                                                                   (trajectory, time) float32 3MB ...
    sea_floor_depth_below_sea_level                                                      (trajectory, time) float32 3MB ...
    ocean_vertical_diffusivity                                                           (trajectory, time) float32 3MB ...
    land_binary_mask                                                                     (trajectory, time) float32 3MB ...
    ocean_mixed_layer_thickness                                                          (trajectory, time) float32 3MB ...
Attributes: (12/165)
    Conventions:                                                             ...
    standard_name_vocabulary:                                                ...
    featureType:                                                             ...
    title:                                                                   ...
    summary:                                                                 ...
    keywords:                                                                ...
    ...                                                                                                               ...
    geospatial_lon_units:                                                    ...
    geospatial_lon_resolution:                                               ...
    runtime:                                                                 ...
    geospatial_vertical_min:                                                 ...
    geospatial_vertical_max:                                                 ...
    geospatial_vertical_positive:                                            ...


Plot and animate results

o.animation(color='z', markersize='mass_oil', markersize_scaling=80)
15:22:41 DEBUG   opendrift:2414: Setting up map: corners=None, fast=False, lscale=None
15:22:41 DEBUG   opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 1) with Cartopy shapereader...
15:22:52 DEBUG   opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 5) with Cartopy shapereader...
15:22:52 DEBUG   opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 6) with Cartopy shapereader...
15:22:52 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:52 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:53 DEBUG   opendrift:3061: Saving animation..
15:22:53 INFO    opendrift:4613: Saving animation to /root/project/docs/source/gallery/animations/example_oilspill_seafloor_biodegradation_0.gif...
15:22:53 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:53 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:54 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:54 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:54 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:55 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:55 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:55 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:56 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:56 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:56 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:56 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:57 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:57 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:59 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:22:59 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:01 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:01 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:03 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:03 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:03 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:04 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:04 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:04 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:07 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:07 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:07 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:09 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:09 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:10 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:10 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:10 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:10 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:11 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:11 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:11 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:12 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:12 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:12 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:13 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:13 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:14 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:14 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:14 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:15 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:15 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:15 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:16 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:16 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:16 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:17 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:17 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:17 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:18 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:18 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:18 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:19 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:19 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:19 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:20 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:20 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:21 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:21 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:21 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:21 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:22 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:22 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:22 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:22 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:23 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:23 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:23 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:24 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:24 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:24 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:25 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:25 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:25 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:25 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:26 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:26 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:26 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:27 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:27 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:27 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:28 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:28 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:28 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:28 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:29 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:29 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:29 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:29 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:30 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:30 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:30 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:31 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:31 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:31 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:32 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:32 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:32 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:32 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:33 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:33 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:33 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:34 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:34 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:34 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:35 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:35 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:35 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:35 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:36 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:36 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:36 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:36 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:37 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:37 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:37 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:38 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:38 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:38 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:39 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:39 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:39 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:39 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:40 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:40 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:40 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:41 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:41 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:41 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:42 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:42 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:42 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:42 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:43 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:43 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:43 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:44 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:44 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:44 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:45 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:45 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:45 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:46 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:46 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:46 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:47 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:47 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:47 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:47 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:48 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:48 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:48 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:48 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:49 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:49 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:49 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:50 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:50 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:50 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:51 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:51 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:51 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:51 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:52 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:52 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:52 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:52 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:53 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:53 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:54 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:54 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:54 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:54 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:55 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:55 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:55 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:55 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:56 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:56 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:57 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:57 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:57 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:57 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:59 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:59 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:23:59 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:01 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:01 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:03 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:03 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:03 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:04 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:04 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:04 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:07 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:07 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:07 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (21.80219078063965, 24.02084350585937, 34.01493453979492, 35.49591445922851)..
15:24:22 DEBUG   opendrift:4651: MPLBACKEND = agg
15:24:22 DEBUG   opendrift:4652: DISPLAY = None
15:24:22 DEBUG   opendrift:4653: Time to save animation: 0:01:28.831536
15:24:22 INFO    opendrift:3054: Time to make animation: 0:01:40.741262
../_images/example_oilspill_seafloor_biodegradation_0.gif
o.plot_oil_budget(show_watercontent_and_viscosity=False, show_wind_and_current=False)
GENERIC MEDIUM CRUDE (877.6 kg/m3) - 2025-09-27 15:21 to 2025-10-02 15:21

Custom oil budget plot

b = o.get_oil_budget()
import matplotlib.pyplot as plt
time = (o.result.time-o.result.time[0]).dt.total_seconds()/3600  # Hours since start
fig, ax = plt.subplots()
ax.plot(time, b['mass_submerged'], label='Submerged oil mass')
ax.plot(time, b['mass_surface'], label='Surface oil mass')
ax.plot(time, b['mass_biodegraded'], label='Biodegraded oil mass')
ax.set_title(f'{o.get_oil_name()},  {b["oil_density"].max():.2f} kg/m3')
plt.legend()
plt.xlabel('Time [hours]')
plt.ylabel('Mass oil [kg]')
plt.show()
GENERIC MEDIUM CRUDE,  877.57 kg/m3

Animation of vertical behaviour

o.animation_profile(markersize='mass_oil', markersize_scaling=80, color='z', alpha=.5)
15:24:22 DEBUG   opendrift:3061: Saving animation..
15:24:22 INFO    opendrift:4613: Saving animation to /root/project/docs/source/gallery/animations/example_oilspill_seafloor_biodegradation_1.gif...
15:24:45 DEBUG   opendrift:4651: MPLBACKEND = agg
15:24:45 DEBUG   opendrift:4652: DISPLAY = None
15:24:45 DEBUG   opendrift:4653: Time to save animation: 0:00:22.410520
15:24:45 INFO    opendrift:3264: Time to make animation: 0:00:22.551169
../_images/example_oilspill_seafloor_biodegradation_1.gif

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

Gallery generated by Sphinx-Gallery