Note
Go to the end to download the full example code.
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()
13:21:12 DEBUG opendrift.config:168: Adding 18 config items from __init__
13:21:12 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails
13:21:12 DEBUG opendrift.config:168: Adding 6 config items from __init__
13:21:12 INFO opendrift:513: OpenDriftSimulation initialised (version 1.14.2 / v1.14.2-79-ga5f3ce3)
13:21:12 DEBUG opendrift.config:168: Adding 17 config items from oceandrift
13:21:12 DEBUG opendrift.config:178: Overwriting config item seed:z
13:21:12 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})
13:21:12 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
13:21:12 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
13:21:12 DEBUG opendrift.models.basemodel.environment:312: Added reader LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:12 DEBUG opendrift.models.basemodel.environment:312: Added reader LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:12 INFO opendrift.config:68: set_config('drift:current_uncertainty', 0)
13:21:12 INFO opendrift.config:68: set_config('drift:wind_uncertainty', 0)
13:21:12 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)
13:21:12 INFO opendrift.models.openoil.openoil:1630: Droplet diameter is provided, and will be kept constant during simulation
13:21:12 INFO opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE
13:21:12 DEBUG opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE
13:21:12 INFO opendrift.models.openoil.openoil:1717: Using density 877.5726099999999 and viscosity 4.5431401718650355e-05 of oiltype GENERIC MEDIUM CRUDE
13:21:12 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:21:12 DEBUG opendrift.models.basemodel.environment:312: Added reader constant_reader
13:21:12 INFO opendrift.models.basemodel.environment:206: Adding a global landmask from GSHHG
13:21:12 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:21:16 DEBUG opendrift.models.basemodel.environment:312: Added reader global_landmask
13:21:16 INFO opendrift.models.basemodel.environment:229: Fallback values will be used for the following variables which have no readers:
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_surface_height: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: upward_sea_water_velocity: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_significant_height: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_stokes_drift_x_velocity: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_stokes_drift_y_velocity: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_ice_area_fraction: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_ice_x_velocity: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_ice_y_velocity: 0.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_water_temperature: 10.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_water_salinity: 34.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: sea_floor_depth_below_sea_level: 10000.000000
13:21:16 INFO opendrift.models.basemodel.environment:232: ocean_vertical_diffusivity: 0.020000
13:21:16 DEBUG opendrift:100: Changed mode from Mode.Config to Mode.Ready
13:21:16 INFO opendrift.models.openoil.openoil:1630: Droplet diameter is provided, and will be kept constant during simulation
13:21:16 INFO opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE
13:21:16 DEBUG opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE
13:21:16 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)
13:21:16 DEBUG opendrift:100: Changed mode from Mode.Ready to Mode.Run
13:21:16 DEBUG opendrift:1694:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.14.2
Platform: Linux, 6.8.0-1029-aws
4.0 GB memory
36 processors (x86_64)
NumPy version 2.3.0
SciPy version 1.15.2
Matplotlib version 3.10.3
NetCDF4 version 1.7.2
Xarray version 2025.6.1
ADIOS (adios_db) version 1.2.5
Copernicusmarine version 2.1.2
Python version 3.13.5 | packaged by conda-forge | (main, Jun 16 2025, 08:27:50) [GCC 13.3.0]
------------------------------------------------------
13:21:16 DEBUG opendrift:1707: No output file is specified, neglecting export_buffer_length
13:21:16 INFO opendrift:1722: Skipping environment variable upward_sea_water_velocity because of condition ['drift:vertical_advection', 'is', False]
13:21:16 DEBUG opendrift:1835: Finalizing environment and preparing readers for simulation coverage ([17.32011687 29.93716835 29.68006624 40.06288506]) and time (2025-06-26 13:21:12.661168 to 2025-07-01 13:21:12.661168)
13:21:16 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]
13:21:16 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]
13:21:16 DEBUG opendrift.models.basemodel.environment:168: Preparing constant_reader for extent [17.32011687 29.93716835 29.68006624 40.06288506]
13:21:16 DEBUG opendrift.readers.basereader.variables:555: Nothing more to prepare for constant_reader
13:21:16 DEBUG opendrift.models.basemodel.environment:168: Preparing global_landmask for extent [17.32011687 29.93716835 29.68006624 40.06288506]
13:21:16 DEBUG opendrift.readers.basereader.variables:555: Nothing more to prepare for global_landmask
13:21:17 DEBUG opendrift:1922: Initial self.result, size Frozen({'trajectory': 6000, 'time': 121})
13:21:17 INFO opendrift:889: Using existing reader for land_binary_mask
13:21:17 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:17 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:17 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:17 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:17 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:17 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:17 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:17 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:17 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:17 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:17 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:17 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:17 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:17 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:17 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:17 INFO opendrift:918: All points are in ocean
13:21:17 INFO opendrift:1948: Storing previous position of elements for coastline interaction
13:21:17 INFO opendrift.models.openoil.openoil:692: Oil-water surface tension is 0.031369 Nm
13:21:17 INFO opendrift.models.openoil.openoil:705: Max water fraction not available for GENERIC MEDIUM CRUDE, using default
13:21:17 DEBUG opendrift:846: to be seeded: 6000, already seeded 0
13:21:17 DEBUG opendrift:868: Released 6000 new elements.
13:21:17 DEBUG opendrift:2008: ======================================================================
13:21:17 INFO opendrift:2009: 2025-06-26 13:21:12.661168 - step 1 of 120 - 6000 active elements (0 deactivated)
13:21:17 DEBUG opendrift:2015: 0 elements scheduled.
13:21:17 DEBUG opendrift:2017: ======================================================================
13:21:17 DEBUG opendrift:2028: 34.99662780761719 <- latitude -> 35.00342559814453
13:21:17 DEBUG opendrift:2028: 23.4965763092041 <- longitude -> 23.50360679626465
13:21:17 DEBUG opendrift:2028: -150.0 <- z -> 0.0
13:21:17 DEBUG opendrift:2029: ---------------------------------
13:21:17 DEBUG opendrift.models.basemodel.environment:565: Variables not covered by any reader: ['y_sea_water_velocity', 'x_sea_water_velocity', 'y_wind', 'sea_water_salinity', 'sea_floor_depth_below_sea_level', 'sea_surface_height', 'x_wind', 'sea_water_temperature']
13:21:17 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
13:21:17 DEBUG opendrift.readers:148: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
13:21:17 INFO opendrift.readers:61: Opening file with xr.open_dataset
13:21:17 DEBUG gribapi.bindings:58: eccodes lib search: trying to find binary wheel
13:21:17 DEBUG gribapi.bindings:65: eccodes lib search: looking in /opt/conda/envs/opendrift/lib/python3.13/site-packages/eccodes.libs
13:21:17 DEBUG gribapi.bindings:65: eccodes lib search: looking in /opt/conda/envs/opendrift/lib/python3.13/site-packages/eccodes/.dylibs
13:21:17 DEBUG gribapi.bindings:65: eccodes lib search: looking in /opt/conda/envs/opendrift/lib/python3.13/site-packages/eccodes
13:21:17 DEBUG gribapi.bindings:91: eccodes lib search: did not find library from wheel; try to find as separate lib
13:21:17 DEBUG gribapi.bindings:99: eccodes lib search: findlibs returned /opt/conda/envs/opendrift/lib/libeccodes.so
13:21:17 WARNING opendrift.readers:67: Removing variables that cannot be CF decoded: ['tau']
13:21:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables.
13:21:17 INFO opendrift.readers.reader_netCDF_CF_generic:299: Grid coordinates are detected, but proj4 string not given: assuming latlong
13:21:17 INFO opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'z': 'depth', 'y': 'lat', 'x': 'lon', 'time': 'time'}
13:21:17 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
13:21:17 INFO opendrift.readers.basereader:176: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
13:21:17 INFO opendrift.readers.basereader:176: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
13:21:17 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:21:17 DEBUG opendrift.readers.basereader.variables:569: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
13:21:17 DEBUG opendrift.readers.basereader.structured:153: 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
13:21:17 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
13:21:17 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
13:21:17 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
13:21:17 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
13:21:17 DEBUG opendrift.readers.reader_lazy:56: Initialising: LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:17 DEBUG opendrift.readers:148: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
13:21:17 INFO opendrift.readers:61: Opening file with xr.open_dataset
13:21:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables.
13:21:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:262: Lon and lat are 1D arrays - using as projection coordinates
13:21:19 INFO opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'time': 'time', 'x': 'longitude', 'y': 'latitude'}
13:21:19 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
13:21:19 INFO opendrift.readers.basereader:176: Variable x_wind will be rotated from eastward_wind
13:21:19 INFO opendrift.readers.basereader:176: Variable y_wind will be rotated from northward_wind
13:21:19 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:21:19 DEBUG opendrift.readers.basereader.variables:569: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
13:21:19 DEBUG opendrift.readers.basereader.structured:153: Clearing cache for reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd before starting new simulation
13:21:19 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
13:21:19 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
13:21:19 DEBUG opendrift.readers.reader_lazy:71: Reader initialised: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:19 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
13:21:19 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:19 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:19 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:19 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:19 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:19 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:19 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:19 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:19 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:19 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21: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
13:21:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 12:00:00 (before)
2025-06-26 15:00:00 (after)
13:21:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:21 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:21 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:21 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 9x9x23) for time before (2025-06-26 12:00:00)
13:21:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:22 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:22 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:22 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x9x23) for time after (2025-06-26 15:00:00)
13:21:22 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 12:00:00) in space (linearNDFast)
13:21:22 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:22 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 15:00:00) in space (linearNDFast)
13:21:22 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:22 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 12:00:00, weight 0.55) and
after (2025-06-26 15:00:00, weight 0.45) in time
13:21:22 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:22 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:22 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:22 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:22 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:22 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:22 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:22 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21: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
13:21:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 12:00:00 (before)
2025-06-26 15:00:00 (after)
13:21:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:22 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:22 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:22 DEBUG opendrift.readers.basereader.structured:292: Fetched env-block (size 8x7x1) for time before (2025-06-26 12:00:00)
13:21:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:22 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:22 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:22 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-26 15:00:00)
13:21:22 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 12:00:00) in space (linearNDFast)
13:21:22 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:22 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 15:00:00) in space (linearNDFast)
13:21:22 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:22 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 12:00:00, weight 0.55) and
after (2025-06-26 15:00:00, weight 0.45) in time
13:21:22 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:22 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:22 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:22 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:22 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:22 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:22 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:22 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:22 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:22 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.467921 (min) -0.337175 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.131375 (min) 0.281016 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.77308 (min) 3.82481 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.1572 (min) -10.0574 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:22 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:22 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.840712, mean: 2.886873, max: 2.897240
13:21:22 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:22 DEBUG opendrift.models.physics_methods:878: min: 9.182125, mean: 9.256419, max: 9.273033
13:21:22 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 9.182125, mean: 9.256419, max: 9.273033
13:21:22 DEBUG opendrift:623: No elements hit coastline.
13:21:23 DEBUG opendrift:1626: No elements to deactivate
13:21:23 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:23 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:23 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:23 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:23 DEBUG opendrift.models.openoil.openoil:866: Emulsification not yet started
13:21:23 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:23 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:23 DEBUG opendrift.models.physics_methods:878: min: 9.182125, mean: 9.256418, max: 9.273033
13:21:23 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:23 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.000571, dN_50: 0.000045
13:21:23 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:23 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.042498819367936536
13:21:23 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:23 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:23 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1005 of 3000 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 674 of 1999 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 439 of 1330 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 292 of 896 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 203 of 612 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 142 of 416 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 84 of 277 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 82 of 203 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 46 of 130 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 30 of 90 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 25 of 66 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 11 of 46 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 15 of 42 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 15 of 36 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 8 of 28 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 11 of 26 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 8 of 22 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 16 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 15 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 6 of 14 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 10 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 10 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 11 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 6 of 12 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 8 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 11 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 14 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 13 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 6 of 10 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 8 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 10 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 12 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 12 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 12 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 18 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 8 of 21 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 14 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 13 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 6 of 13 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 11 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 12 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 13 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 13 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 9 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 11 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 9 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 8 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 8 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 7 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 11 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 9 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 9 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 9 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 10 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 12 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 11 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 6 of 16 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 6 of 12 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 7 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 10 surface elements
13:21:23 DEBUG opendrift.models.physics_methods:732: Advecting 32 of 6000 elements above 0.100m with wind-sheared ocean current (0.000604 m/s - 0.325478 m/s)
13:21:23 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:23 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014980950267377865 and 0.41109690992799774 m/s
13:21:23 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:23 DEBUG opendrift:2008: ======================================================================
13:21:23 INFO opendrift:2009: 2025-06-26 14:21:12.661168 - step 2 of 120 - 6000 active elements (0 deactivated)
13:21:23 DEBUG opendrift:2015: 0 elements scheduled.
13:21:23 DEBUG opendrift:2017: ======================================================================
13:21:23 DEBUG opendrift:2028: 34.98222947238386 <- latitude -> 35.01913385619131
13:21:23 DEBUG opendrift:2028: 23.467322150808336 <- longitude -> 23.500764681936143
13:21:23 DEBUG opendrift:2028: -150.11107878432333 <- z -> 0.0
13:21:23 DEBUG opendrift:2029: ---------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:23 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21: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
13:21:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 12:00:00 (before)
2025-06-26 15:00:00 (after)
13:21:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 12:00:00) in space (linearNDFast)
13:21:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:23 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 15:00:00) in space (linearNDFast)
13:21:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:23 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 12:00:00, weight 0.22) and
after (2025-06-26 15:00:00, weight 0.78) in time
13:21:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21: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
13:21:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 12:00:00 (before)
2025-06-26 15:00:00 (after)
13:21:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 12:00:00) in space (linearNDFast)
13:21:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:23 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 15:00:00) in space (linearNDFast)
13:21:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:23 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 12:00:00, weight 0.22) and
after (2025-06-26 15:00:00, weight 0.78) in time
13:21:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:23 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:23 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:23 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:23 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.584297 (min) -0.335424 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.133132 (min) 0.269001 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: x_wind: 4.01075 (min) 4.28065 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.0167 (min) -9.73349 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:23 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:23 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.730475, mean: 2.839630, max: 2.916031
13:21:23 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:23 DEBUG opendrift.models.physics_methods:878: min: 9.002201, mean: 9.180230, max: 9.303057
13:21:23 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 9.002201, mean: 9.180230, max: 9.303057
13:21:23 DEBUG opendrift:623: No elements hit coastline.
13:21:23 DEBUG opendrift:1626: No elements to deactivate
13:21:23 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:23 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:23 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:23 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:23 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:23 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:23 DEBUG opendrift.models.physics_methods:878: min: 9.002201, mean: 9.180230, max: 9.303057
13:21:23 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:23 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.000644, dN_50: 0.000051
13:21:23 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:23 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.04277443782983776
13:21:23 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:23 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:23 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 18 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 21 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 23 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 24 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 23 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 24 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 25 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 28 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 28 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 37 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 42 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 41 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 41 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 43 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 49 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 50 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 50 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 47 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 51 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 51 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 55 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 57 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 58 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 59 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 61 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 61 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 63 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 65 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 63 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 65 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 62 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 60 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 61 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 63 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 61 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 57 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 56 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 55 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 56 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 6 of 56 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 50 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 54 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 57 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 56 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 58 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 58 surface elements
13:21:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 5 of 61 surface elements
13:21:23 DEBUG opendrift.models.physics_methods:732: Advecting 73 of 6000 elements above 0.100m with wind-sheared ocean current (0.019449 m/s - 0.326056 m/s)
13:21:23 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:23 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006187029221147531 and 0.44917116345340774 m/s
13:21:23 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:23 DEBUG opendrift:2008: ======================================================================
13:21:23 INFO opendrift:2009: 2025-06-26 15:21:12.661168 - step 3 of 120 - 6000 active elements (0 deactivated)
13:21:23 DEBUG opendrift:2015: 0 elements scheduled.
13:21:23 DEBUG opendrift:2017: ======================================================================
13:21:23 DEBUG opendrift:2028: 34.96720950193599 <- latitude -> 35.03200141435124
13:21:23 DEBUG opendrift:2028: 23.44138277430501 <- longitude -> 23.49261112403751
13:21:23 DEBUG opendrift:2028: -149.46556383591383 <- z -> 0.0
13:21:23 DEBUG opendrift:2029: ---------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:23 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21: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
13:21:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 15:00:00 (before)
2025-06-26 18:00:00 (after)
13:21:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:25 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:25 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:25 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x9x23) for time after (2025-06-26 18:00:00)
13:21:25 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 15:00:00) in space (linearNDFast)
13:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:25 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 18:00:00) in space (linearNDFast)
13:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:25 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 15:00:00, weight 0.88) and
after (2025-06-26 18:00:00, weight 0.12) in time
13:21:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:25 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:25 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:25 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 15:00:00 (before)
2025-06-26 18:00:00 (after)
13:21:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:25 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:25 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:25 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 7x7x1) for time after (2025-06-26 18:00:00)
13:21:25 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 15:00:00) in space (linearNDFast)
13:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:25 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 18:00:00) in space (linearNDFast)
13:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:25 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 15:00:00, weight 0.88) and
after (2025-06-26 18:00:00, weight 0.12) in time
13:21:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:25 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:25 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:25 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:25 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:25 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:25 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:25 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:25 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.645478 (min) -0.328149 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.121593 (min) 0.237264 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: x_wind: 4.15122 (min) 4.58405 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.81825 (min) -9.39301 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:25 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.605398, mean: 2.761112, max: 2.884714
13:21:25 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:25 DEBUG opendrift.models.physics_methods:878: min: 8.793597, mean: 9.052207, max: 9.252967
13:21:25 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.793597, mean: 9.052207, max: 9.252967
13:21:25 DEBUG opendrift:623: No elements hit coastline.
13:21:25 DEBUG opendrift:1626: No elements to deactivate
13:21:25 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:25 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:25 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:25 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:25 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:25 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:25 DEBUG opendrift.models.physics_methods:878: min: 8.793597, mean: 9.052207, max: 9.252967
13:21:25 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:25 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.000789, dN_50: 0.000062
13:21:25 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:25 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.042315106632407104
13:21:25 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:25 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:25 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 4 of 56 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 54 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 55 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 61 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 63 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 68 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 68 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 67 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 69 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 70 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 69 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 70 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 68 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 68 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 71 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 71 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 69 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 70 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 72 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 72 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 73 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 72 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 72 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 72 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 73 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 74 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 73 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 73 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 73 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 74 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 74 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 73 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 75 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 79 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 81 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 82 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 80 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 81 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 81 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 80 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 81 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 80 surface elements
13:21:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 80 surface elements
13:21:25 DEBUG opendrift.models.physics_methods:732: Advecting 96 of 6000 elements above 0.100m with wind-sheared ocean current (0.063910 m/s - 0.323550 m/s)
13:21:25 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:25 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0028491461483782397 and 0.44629425153650665 m/s
13:21:25 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:25 DEBUG opendrift:2008: ======================================================================
13:21:25 INFO opendrift:2009: 2025-06-26 16:21:12.661168 - step 4 of 120 - 6000 active elements (0 deactivated)
13:21:25 DEBUG opendrift:2015: 0 elements scheduled.
13:21:25 DEBUG opendrift:2017: ======================================================================
13:21:25 DEBUG opendrift:2028: 34.960676264640796 <- latitude -> 35.04289623701461
13:21:25 DEBUG opendrift:2028: 23.414266473497104 <- longitude -> 23.484911707165036
13:21:25 DEBUG opendrift:2028: -148.68933465905326 <- z -> 0.0
13:21:25 DEBUG opendrift:2029: ---------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:25 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:25 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:25 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:25 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:25 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:25 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:25 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:25 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:25 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:25 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21: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
13:21:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 15:00:00 (before)
2025-06-26 18:00:00 (after)
13:21:25 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 15:00:00) in space (linearNDFast)
13:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:25 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 18:00:00) in space (linearNDFast)
13:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:25 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 15:00:00, weight 0.55) and
after (2025-06-26 18:00:00, weight 0.45) in time
13:21:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:25 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:25 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:25 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 15:00:00 (before)
2025-06-26 18:00:00 (after)
13:21:25 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 15:00:00) in space (linearNDFast)
13:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:25 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 18:00:00) in space (linearNDFast)
13:21:25 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:25 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 15:00:00, weight 0.55) and
after (2025-06-26 18:00:00, weight 0.45) in time
13:21:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:25 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:25 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:25 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:25 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:25 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:25 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:25 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:25 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:25 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.651747 (min) -0.318974 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.0953961 (min) 0.20283 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: x_wind: 4.10433 (min) 4.59285 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.52894 (min) -9.08153 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:25 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:25 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.453242, mean: 2.630963, max: 2.751450
13:21:25 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:25 DEBUG opendrift.models.physics_methods:878: min: 8.532962, mean: 8.836136, max: 9.036711
13:21:25 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.532962, mean: 8.836136, max: 9.036711
13:21:25 DEBUG opendrift:623: No elements hit coastline.
13:21:25 DEBUG opendrift:1626: No elements to deactivate
13:21:25 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:25 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:25 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:25 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:25 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:25 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:25 DEBUG opendrift.models.physics_methods:878: min: 8.532962, mean: 8.836136, max: 9.036712
13:21:25 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:25 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001000, dN_50: 0.000079
13:21:26 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:26 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.04036048111297311
13:21:26 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:26 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:26 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 82 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 80 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 78 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 76 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 75 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 74 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 74 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 73 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 73 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 75 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 77 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 79 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 80 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 80 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 80 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 79 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 79 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 79 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 78 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 78 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 79 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 80 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 79 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 78 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 77 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 75 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 74 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 73 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 74 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 77 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 79 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 79 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 82 surface elements
13:21:26 DEBUG opendrift.models.physics_methods:732: Advecting 97 of 6000 elements above 0.100m with wind-sheared ocean current (0.017101 m/s - 0.316701 m/s)
13:21:26 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:26 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009101120910275361 and 0.4309464221600793 m/s
13:21:26 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:26 DEBUG opendrift:2008: ======================================================================
13:21:26 INFO opendrift:2009: 2025-06-26 17:21:12.661168 - step 5 of 120 - 6000 active elements (0 deactivated)
13:21:26 DEBUG opendrift:2015: 0 elements scheduled.
13:21:26 DEBUG opendrift:2017: ======================================================================
13:21:26 DEBUG opendrift:2028: 34.94509415841242 <- latitude -> 35.04878660355565
13:21:26 DEBUG opendrift:2028: 23.390488222065144 <- longitude -> 23.47238760419694
13:21:26 DEBUG opendrift:2028: -148.07339420671423 <- z -> 0.0
13:21:26 DEBUG opendrift:2029: ---------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:26 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:26 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:26 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 15:00:00 (before)
2025-06-26 18:00:00 (after)
13:21:26 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 15:00:00) in space (linearNDFast)
13:21:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:26 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 18:00:00) in space (linearNDFast)
13:21:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:26 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 15:00:00, weight 0.22) and
after (2025-06-26 18:00:00, weight 0.78) in time
13:21:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 15:00:00 (before)
2025-06-26 18:00:00 (after)
13:21:26 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 15:00:00) in space (linearNDFast)
13:21:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:26 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 18:00:00) in space (linearNDFast)
13:21:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:26 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 15:00:00, weight 0.22) and
after (2025-06-26 18:00:00, weight 0.78) in time
13:21:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:26 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:26 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:26 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:26 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:26 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.648203 (min) -0.307572 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.118393 (min) 0.240906 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: x_wind: 4.09398 (min) 4.56416 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.36205 (min) -8.86223 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:26 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:26 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.344880, mean: 2.517439, max: 2.668571
13:21:26 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:26 DEBUG opendrift.models.physics_methods:878: min: 8.342379, mean: 8.643282, max: 8.899569
13:21:26 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.342379, mean: 8.643282, max: 8.899569
13:21:26 DEBUG opendrift:623: No elements hit coastline.
13:21:26 DEBUG opendrift:1626: No elements to deactivate
13:21:26 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:26 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:26 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:26 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:26 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:26 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:26 DEBUG opendrift.models.physics_methods:878: min: 8.342379, mean: 8.643282, max: 8.899569
13:21:26 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:26 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001258, dN_50: 0.000099
13:21:26 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:26 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03914487028672502
13:21:26 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:26 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:26 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 82 surface elements
13:21:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 89 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 89 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 89 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 88 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 87 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 88 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 94 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 93 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 92 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 92 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 91 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 91 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 90 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 93 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 92 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 93 surface elements
13:21:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 100 surface elements
13:21:27 DEBUG opendrift.models.physics_methods:732: Advecting 108 of 6000 elements above 0.100m with wind-sheared ocean current (0.012488 m/s - 0.312459 m/s)
13:21:27 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:27 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003380636729584489 and 0.46612251038291197 m/s
13:21:27 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:27 DEBUG opendrift:2008: ======================================================================
13:21:27 INFO opendrift:2009: 2025-06-26 18:21:12.661168 - step 6 of 120 - 6000 active elements (0 deactivated)
13:21:27 DEBUG opendrift:2015: 0 elements scheduled.
13:21:27 DEBUG opendrift:2017: ======================================================================
13:21:27 DEBUG opendrift:2028: 34.93189984637638 <- latitude -> 35.059107768723614
13:21:27 DEBUG opendrift:2028: 23.368855524544287 <- longitude -> 23.463884263425676
13:21:27 DEBUG opendrift:2028: -147.41129032824153 <- z -> 0.0
13:21:27 DEBUG opendrift:2029: ---------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:27 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:27 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:27 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:27 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:27 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:27 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:27 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 18:00:00 (before)
2025-06-26 21:00:00 (after)
13:21:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:28 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:28 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:28 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 10x11x23) for time after (2025-06-26 21:00:00)
13:21:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 18:00:00) in space (linearNDFast)
13:21:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:28 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 21:00:00) in space (linearNDFast)
13:21:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:28 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 18:00:00, weight 0.88) and
after (2025-06-26 21:00:00, weight 0.12) in time
13:21:28 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:28 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:28 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:28 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:28 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:28 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:28 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 18:00:00 (before)
2025-06-26 21:00:00 (after)
13:21:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:28 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:28 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:28 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 7x7x1) for time after (2025-06-26 21:00:00)
13:21:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 18:00:00) in space (linearNDFast)
13:21:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:28 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 21:00:00) in space (linearNDFast)
13:21:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:28 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 18:00:00, weight 0.88) and
after (2025-06-26 21:00:00, weight 0.12) in time
13:21:28 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:28 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:28 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:28 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:28 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:28 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:28 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:28 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:28 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.640237 (min) -0.309937 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.105328 (min) 0.268719 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.98361 (min) 4.50748 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.2013 (min) -8.62347 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:28 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.219742, mean: 2.399863, max: 2.570976
13:21:28 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:28 DEBUG opendrift.models.physics_methods:878: min: 8.116725, mean: 8.438955, max: 8.735315
13:21:28 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.116725, mean: 8.438955, max: 8.735315
13:21:28 DEBUG opendrift:623: No elements hit coastline.
13:21:28 DEBUG opendrift:1626: No elements to deactivate
13:21:28 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:28 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:28 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:28 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:28 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:28 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:28 DEBUG opendrift.models.physics_methods:878: min: 8.116725, mean: 8.438954, max: 8.735315
13:21:28 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:28 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001564, dN_50: 0.000123
13:21:28 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:28 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0377134177973571
13:21:28 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:28 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:28 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 104 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 103 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 104 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 103 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 102 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 101 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 100 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 101 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 103 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 102 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 103 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 104 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 104 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 101 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 105 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 104 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 103 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 101 surface elements
13:21:28 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 101 surface elements
13:21:28 DEBUG opendrift.models.physics_methods:732: Advecting 111 of 6000 elements above 0.100m with wind-sheared ocean current (0.012035 m/s - 0.306692 m/s)
13:21:28 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:28 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018902470799185673 and 0.484272765339782 m/s
13:21:28 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:28 DEBUG opendrift:2008: ======================================================================
13:21:28 INFO opendrift:2009: 2025-06-26 19:21:12.661168 - step 7 of 120 - 6000 active elements (0 deactivated)
13:21:28 DEBUG opendrift:2015: 0 elements scheduled.
13:21:28 DEBUG opendrift:2017: ======================================================================
13:21:28 DEBUG opendrift:2028: 34.9146258992375 <- latitude -> 35.06315394689752
13:21:28 DEBUG opendrift:2028: 23.340464590754785 <- longitude -> 23.455353332537186
13:21:28 DEBUG opendrift:2028: -146.61813081305945 <- z -> 0.0
13:21:28 DEBUG opendrift:2029: ---------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:28 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:28 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:28 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:28 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:28 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:28 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:28 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:28 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:28 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:28 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:28 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:28 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:28 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:28 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:28 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:28 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:28 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 18:00:00 (before)
2025-06-26 21:00:00 (after)
13:21:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 18:00:00) in space (linearNDFast)
13:21:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:28 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 21:00:00) in space (linearNDFast)
13:21:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:28 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 18:00:00, weight 0.55) and
after (2025-06-26 21:00:00, weight 0.45) in time
13:21:28 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:28 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:28 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:28 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:28 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:28 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:28 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 18:00:00 (before)
2025-06-26 21:00:00 (after)
13:21:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 18:00:00) in space (linearNDFast)
13:21:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:28 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 21:00:00) in space (linearNDFast)
13:21:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:28 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 18:00:00, weight 0.55) and
after (2025-06-26 21:00:00, weight 0.45) in time
13:21:28 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:28 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:28 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:28 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:28 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:28 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:28 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:28 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:28 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:28 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.648436 (min) -0.339892 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.0536181 (min) 0.236355 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.78573 (min) 4.37651 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.93307 (min) -8.32623 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:28 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:28 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.065058, mean: 2.256573, max: 2.434260
13:21:28 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:28 DEBUG opendrift.models.physics_methods:878: min: 7.828810, mean: 8.183069, max: 8.499885
13:21:28 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.828810, mean: 8.183069, max: 8.499885
13:21:28 DEBUG opendrift:623: No elements hit coastline.
13:21:28 DEBUG opendrift:1626: No elements to deactivate
13:21:28 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:28 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:28 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:28 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:28 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:28 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:28 DEBUG opendrift.models.physics_methods:878: min: 7.828810, mean: 8.183069, max: 8.499885
13:21:28 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:29 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.001926, dN_50: 0.000151
13:21:29 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:29 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.035708160923909556
13:21:29 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:29 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:29 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 103 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 102 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 105 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 108 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 111 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 111 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 113 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 112 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 111 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 111 surface elements
13:21:29 DEBUG opendrift.models.physics_methods:732: Advecting 125 of 6000 elements above 0.100m with wind-sheared ocean current (0.024913 m/s - 0.298426 m/s)
13:21:29 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:29 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002694005446996871 and 0.5081921870952719 m/s
13:21:29 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:29 DEBUG opendrift:2008: ======================================================================
13:21:29 INFO opendrift:2009: 2025-06-26 20:21:12.661168 - step 8 of 120 - 6000 active elements (0 deactivated)
13:21:29 DEBUG opendrift:2015: 0 elements scheduled.
13:21:29 DEBUG opendrift:2017: ======================================================================
13:21:29 DEBUG opendrift:2028: 34.89837538504815 <- latitude -> 35.06526437958966
13:21:29 DEBUG opendrift:2028: 23.323825327263652 <- longitude -> 23.441863839757684
13:21:29 DEBUG opendrift:2028: -146.0560212619726 <- z -> 0.0
13:21:29 DEBUG opendrift:2029: ---------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:29 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 18:00:00 (before)
2025-06-26 21:00:00 (after)
13:21:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 18:00:00) in space (linearNDFast)
13:21:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:29 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 21:00:00) in space (linearNDFast)
13:21:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:29 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 18:00:00, weight 0.22) and
after (2025-06-26 21:00:00, weight 0.78) in time
13:21:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 18:00:00 (before)
2025-06-26 21:00:00 (after)
13:21:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 18:00:00) in space (linearNDFast)
13:21:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:29 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-26 21:00:00) in space (linearNDFast)
13:21:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:29 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 18:00:00, weight 0.22) and
after (2025-06-26 21:00:00, weight 0.78) in time
13:21:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:29 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:29 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:29 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:29 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.656934 (min) -0.276019 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.136759 (min) 0.240417 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.62953 (min) 4.27488 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.70033 (min) -8.03049 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:29 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:29 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.928418, mean: 2.118512, max: 2.311673
13:21:29 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:29 DEBUG opendrift.models.physics_methods:878: min: 7.565370, mean: 7.928696, max: 8.283097
13:21:29 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.565370, mean: 7.928696, max: 8.283097
13:21:29 DEBUG opendrift:623: No elements hit coastline.
13:21:29 DEBUG opendrift:1626: No elements to deactivate
13:21:29 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:29 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:29 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:29 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:29 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:29 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:29 DEBUG opendrift.models.physics_methods:878: min: 7.565370, mean: 7.928695, max: 8.283097
13:21:29 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:29 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002336, dN_50: 0.000183
13:21:29 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:29 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03391014673910658
13:21:29 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:29 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:29 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 112 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 111 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 111 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 112 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 113 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 118 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 118 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 121 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 120 surface elements
13:21:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 120 surface elements
13:21:29 DEBUG opendrift.models.physics_methods:732: Advecting 127 of 6000 elements above 0.100m with wind-sheared ocean current (0.033985 m/s - 0.290815 m/s)
13:21:29 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:29 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00046644282696632 and 0.4751726078838968 m/s
13:21:29 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:29 DEBUG opendrift:2008: ======================================================================
13:21:29 INFO opendrift:2009: 2025-06-26 21:21:12.661168 - step 9 of 120 - 6000 active elements (0 deactivated)
13:21:29 DEBUG opendrift:2015: 0 elements scheduled.
13:21:29 DEBUG opendrift:2017: ======================================================================
13:21:29 DEBUG opendrift:2028: 34.88425603192932 <- latitude -> 35.07007600000203
13:21:29 DEBUG opendrift:2028: 23.299464048495917 <- longitude -> 23.43006694863685
13:21:29 DEBUG opendrift:2028: -145.13650784981417 <- z -> 0.0
13:21:29 DEBUG opendrift:2029: ---------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:29 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 21:00:00 (before)
2025-06-27 00:00:00 (after)
13:21:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:30 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:30 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:30 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 11x12x23) for time after (2025-06-27 00:00:00)
13:21:30 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 21:00:00) in space (linearNDFast)
13:21:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:30 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 00:00:00) in space (linearNDFast)
13:21:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:30 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 21:00:00, weight 0.88) and
after (2025-06-27 00:00:00, weight 0.12) in time
13:21:30 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:30 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:30 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:30 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:30 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:30 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:30 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 21:00:00 (before)
2025-06-27 00:00:00 (after)
13:21:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:30 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:30 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:30 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 7x7x1) for time after (2025-06-27 00:00:00)
13:21:30 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 21:00:00) in space (linearNDFast)
13:21:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:30 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 00:00:00) in space (linearNDFast)
13:21:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:30 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 21:00:00, weight 0.88) and
after (2025-06-27 00:00:00, weight 0.12) in time
13:21:30 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:30 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:30 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:30 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:30 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:30 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:30 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:30 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:30 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.618844 (min) -0.226901 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.181965 (min) 0.214537 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.34817 (min) 4.01379 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.33502 (min) -7.7102 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:30 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.760909, mean: 1.935562, max: 2.103347
13:21:30 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:30 DEBUG opendrift.models.physics_methods:878: min: 7.229329, mean: 7.578540, max: 7.901054
13:21:30 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.229329, mean: 7.578540, max: 7.901054
13:21:30 DEBUG opendrift:623: No elements hit coastline.
13:21:30 DEBUG opendrift:1626: No elements to deactivate
13:21:30 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:30 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:30 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:30 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:30 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:30 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:30 DEBUG opendrift.models.physics_methods:878: min: 7.229329, mean: 7.578539, max: 7.901054
13:21:30 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:30 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.002819, dN_50: 0.000221
13:21:30 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:30 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.030854570437657387
13:21:30 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:30 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:30 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 122 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 122 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 121 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 125 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 126 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 129 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 132 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 131 surface elements
13:21:30 DEBUG opendrift.models.physics_methods:732: Advecting 149 of 6000 elements above 0.100m with wind-sheared ocean current (0.031168 m/s - 0.277402 m/s)
13:21:30 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:30 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025685760291628518 and 0.42276818859269666 m/s
13:21:30 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:30 DEBUG opendrift:2008: ======================================================================
13:21:30 INFO opendrift:2009: 2025-06-26 22:21:12.661168 - step 10 of 120 - 6000 active elements (0 deactivated)
13:21:30 DEBUG opendrift:2015: 0 elements scheduled.
13:21:30 DEBUG opendrift:2017: ======================================================================
13:21:30 DEBUG opendrift:2028: 34.88170844830457 <- latitude -> 35.07772366024818
13:21:30 DEBUG opendrift:2028: 23.27929244706817 <- longitude -> 23.417966366904103
13:21:30 DEBUG opendrift:2028: -144.32554022494548 <- z -> 0.0
13:21:30 DEBUG opendrift:2029: ---------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:30 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:30 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:30 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:30 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:30 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:30 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:30 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:30 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:30 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:30 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:30 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:30 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:30 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:30 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:30 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:30 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:30 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 21:00:00 (before)
2025-06-27 00:00:00 (after)
13:21:30 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 21:00:00) in space (linearNDFast)
13:21:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:30 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 00:00:00) in space (linearNDFast)
13:21:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:30 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 21:00:00, weight 0.55) and
after (2025-06-27 00:00:00, weight 0.45) in time
13:21:30 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:30 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:30 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:30 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:30 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:30 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:30 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 21:00:00 (before)
2025-06-27 00:00:00 (after)
13:21:30 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 21:00:00) in space (linearNDFast)
13:21:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:30 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 00:00:00) in space (linearNDFast)
13:21:30 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:30 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 21:00:00, weight 0.55) and
after (2025-06-27 00:00:00, weight 0.45) in time
13:21:30 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:30 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:30 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:30 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:30 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:30 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:30 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:30 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:30 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:30 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.578731 (min) -0.165128 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.201934 (min) 0.203332 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.80696 (min) 3.54546 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.91461 (min) -7.31749 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:30 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:30 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.511048, mean: 1.691438, max: 1.844053
13:21:30 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:30 DEBUG opendrift.models.physics_methods:878: min: 6.696823, mean: 7.084435, max: 7.398033
13:21:30 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.696823, mean: 7.084435, max: 7.398033
13:21:30 DEBUG opendrift:623: No elements hit coastline.
13:21:30 DEBUG opendrift:1626: No elements to deactivate
13:21:30 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:30 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:30 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:30 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:30 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:30 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:30 DEBUG opendrift.models.physics_methods:878: min: 6.696823, mean: 7.084435, max: 7.398033
13:21:30 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:30 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.003401, dN_50: 0.000267
13:21:30 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:30 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.027051436878383704
13:21:30 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:30 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:30 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 137 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 140 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 143 surface elements
13:21:30 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 145 surface elements
13:21:31 DEBUG opendrift.models.physics_methods:732: Advecting 153 of 6000 elements above 0.100m with wind-sheared ocean current (0.031013 m/s - 0.259294 m/s)
13:21:31 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:31 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012327289283346158 and 0.4831221654354385 m/s
13:21:31 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:31 DEBUG opendrift:2008: ======================================================================
13:21:31 INFO opendrift:2009: 2025-06-26 23:21:12.661168 - step 11 of 120 - 6000 active elements (0 deactivated)
13:21:31 DEBUG opendrift:2015: 0 elements scheduled.
13:21:31 DEBUG opendrift:2017: ======================================================================
13:21:31 DEBUG opendrift:2028: 34.885644750306845 <- latitude -> 35.07771103115925
13:21:31 DEBUG opendrift:2028: 23.260412556445537 <- longitude -> 23.40004585687733
13:21:31 DEBUG opendrift:2028: -143.54269727806053 <- z -> 0.0
13:21:31 DEBUG opendrift:2029: ---------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:31 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:31 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:31 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 21:00:00 (before)
2025-06-27 00:00:00 (after)
13:21:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 21:00:00) in space (linearNDFast)
13:21:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:31 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 00:00:00) in space (linearNDFast)
13:21:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:31 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 21:00:00, weight 0.22) and
after (2025-06-27 00:00:00, weight 0.78) in time
13:21:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-26 21:00:00 (before)
2025-06-27 00:00:00 (after)
13:21:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-26 21:00:00) in space (linearNDFast)
13:21:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:31 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 00:00:00) in space (linearNDFast)
13:21:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:31 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-26 21:00:00, weight 0.22) and
after (2025-06-27 00:00:00, weight 0.78) in time
13:21:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:31 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:31 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:31 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:31 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.603149 (min) -0.16702 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.198291 (min) 0.165704 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.35162 (min) 3.2089 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.51082 (min) -6.95781 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:31 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.330490, mean: 1.487698, max: 1.611880
13:21:31 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:31 DEBUG opendrift.models.physics_methods:878: min: 6.283988, mean: 6.643839, max: 6.916653
13:21:31 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.283988, mean: 6.643839, max: 6.916653
13:21:31 DEBUG opendrift:623: No elements hit coastline.
13:21:31 DEBUG opendrift:1626: No elements to deactivate
13:21:31 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:31 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:31 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:31 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:31 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:31 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:31 DEBUG opendrift.models.physics_methods:878: min: 6.283988, mean: 6.643840, max: 6.916653
13:21:31 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:31 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004031, dN_50: 0.000316
13:21:31 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:31 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.023646093147556377
13:21:31 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:31 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:31 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:31 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 146 surface elements
13:21:31 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 147 surface elements
13:21:31 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 146 surface elements
13:21:31 DEBUG opendrift.models.physics_methods:732: Advecting 170 of 6000 elements above 0.100m with wind-sheared ocean current (0.031539 m/s - 0.242685 m/s)
13:21:31 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:31 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0036066258604353536 and 0.4322542143635402 m/s
13:21:31 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:31 DEBUG opendrift:2008: ======================================================================
13:21:31 INFO opendrift:2009: 2025-06-27 00:21:12.661168 - step 12 of 120 - 6000 active elements (0 deactivated)
13:21:31 DEBUG opendrift:2015: 0 elements scheduled.
13:21:31 DEBUG opendrift:2017: ======================================================================
13:21:31 DEBUG opendrift:2028: 34.89117761654431 <- latitude -> 35.08507258282274
13:21:31 DEBUG opendrift:2028: 23.240937790160892 <- longitude -> 23.381726321727864
13:21:31 DEBUG opendrift:2028: -142.6526842569377 <- z -> 0.0
13:21:31 DEBUG opendrift:2029: ---------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:31 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:31 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:31 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 00:00:00 (before)
2025-06-27 03:00:00 (after)
13:21:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:31 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:31 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:31 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 11x13x23) for time after (2025-06-27 03:00:00)
13:21:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 00:00:00) in space (linearNDFast)
13:21:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:31 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 03:00:00) in space (linearNDFast)
13:21:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:31 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 00:00:00, weight 0.88) and
after (2025-06-27 03:00:00, weight 0.12) in time
13:21:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 00:00:00 (before)
2025-06-27 03:00:00 (after)
13:21:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:31 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:31 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:31 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 7x7x1) for time after (2025-06-27 03:00:00)
13:21:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 00:00:00) in space (linearNDFast)
13:21:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:31 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 03:00:00) in space (linearNDFast)
13:21:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:31 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 00:00:00, weight 0.88) and
after (2025-06-27 03:00:00, weight 0.12) in time
13:21:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:31 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:31 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:31 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:31 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:31 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.659984 (min) -0.0650298 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.230515 (min) 0.175715 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.03574 (min) 2.95646 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.31718 (min) -6.7413 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:31 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:31 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.219898, mean: 1.384468, max: 1.494014
13:21:31 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:31 DEBUG opendrift.models.physics_methods:878: min: 6.017156, mean: 6.408904, max: 6.658967
13:21:31 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.017156, mean: 6.408904, max: 6.658967
13:21:31 DEBUG opendrift:623: No elements hit coastline.
13:21:31 DEBUG opendrift:1626: No elements to deactivate
13:21:31 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:31 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:31 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:31 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:31 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:31 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:31 DEBUG opendrift.models.physics_methods:878: min: 6.017156, mean: 6.408904, max: 6.658967
13:21:31 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:31 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.004631, dN_50: 0.000363
13:21:31 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:31 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02191730969759687
13:21:31 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:31 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:31 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:31 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 157 surface elements
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 156 surface elements
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 160 surface elements
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 162 surface elements
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 162 surface elements
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 163 surface elements
13:21:32 DEBUG opendrift.models.physics_methods:732: Advecting 172 of 6000 elements above 0.100m with wind-sheared ocean current (0.015003 m/s - 0.233680 m/s)
13:21:32 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:32 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016584042501132461 and 0.548761666460489 m/s
13:21:32 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:32 DEBUG opendrift:2008: ======================================================================
13:21:32 INFO opendrift:2009: 2025-06-27 01:21:12.661168 - step 13 of 120 - 6000 active elements (0 deactivated)
13:21:32 DEBUG opendrift:2015: 0 elements scheduled.
13:21:32 DEBUG opendrift:2017: ======================================================================
13:21:32 DEBUG opendrift:2028: 34.8796475433291 <- latitude -> 35.08403858213836
13:21:32 DEBUG opendrift:2028: 23.210661229917402 <- longitude -> 23.369678394361713
13:21:32 DEBUG opendrift:2028: -141.72149042133884 <- z -> 0.0
13:21:32 DEBUG opendrift:2029: ---------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:32 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 00:00:00 (before)
2025-06-27 03:00:00 (after)
13:21:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 00:00:00) in space (linearNDFast)
13:21:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:32 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 03:00:00) in space (linearNDFast)
13:21:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:32 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 00:00:00, weight 0.55) and
after (2025-06-27 03:00:00, weight 0.45) in time
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 00:00:00 (before)
2025-06-27 03:00:00 (after)
13:21:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 00:00:00) in space (linearNDFast)
13:21:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:32 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 03:00:00) in space (linearNDFast)
13:21:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:32 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 00:00:00, weight 0.55) and
after (2025-06-27 03:00:00, weight 0.45) in time
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:32 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:32 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:32 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.656024 (min) 0.00762478 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.211023 (min) 0.171585 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.97297 (min) 2.84939 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.45786 (min) -6.82902 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:32 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.246824, mean: 1.406865, max: 1.548196
13:21:32 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:32 DEBUG opendrift.models.physics_methods:878: min: 6.083200, mean: 6.460298, max: 6.778639
13:21:32 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.083200, mean: 6.460298, max: 6.778639
13:21:32 DEBUG opendrift:623: No elements hit coastline.
13:21:32 DEBUG opendrift:1626: No elements to deactivate
13:21:32 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:32 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:32 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:32 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:32 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:32 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:32 DEBUG opendrift.models.physics_methods:878: min: 6.083200, mean: 6.460298, max: 6.778638
13:21:32 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:32 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005135, dN_50: 0.000403
13:21:32 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:32 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.022712013239214016
13:21:32 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:32 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:32 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 167 surface elements
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 166 surface elements
13:21:32 DEBUG opendrift.models.physics_methods:732: Advecting 176 of 6000 elements above 0.100m with wind-sheared ocean current (0.064988 m/s - 0.237885 m/s)
13:21:32 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:32 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0031794033224070706 and 0.41406711411002206 m/s
13:21:32 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:32 DEBUG opendrift:2008: ======================================================================
13:21:32 INFO opendrift:2009: 2025-06-27 02:21:12.661168 - step 14 of 120 - 6000 active elements (0 deactivated)
13:21:32 DEBUG opendrift:2015: 0 elements scheduled.
13:21:32 DEBUG opendrift:2017: ======================================================================
13:21:32 DEBUG opendrift:2028: 34.86680264709704 <- latitude -> 35.09046353113958
13:21:32 DEBUG opendrift:2028: 23.19100397603688 <- longitude -> 23.363720977018723
13:21:32 DEBUG opendrift:2028: -140.9729893417188 <- z -> 0.0
13:21:32 DEBUG opendrift:2029: ---------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:32 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 00:00:00 (before)
2025-06-27 03:00:00 (after)
13:21:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 00:00:00) in space (linearNDFast)
13:21:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:32 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 03:00:00) in space (linearNDFast)
13:21:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:32 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 00:00:00, weight 0.22) and
after (2025-06-27 03:00:00, weight 0.78) in time
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 00:00:00 (before)
2025-06-27 03:00:00 (after)
13:21:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 00:00:00) in space (linearNDFast)
13:21:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:32 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 03:00:00) in space (linearNDFast)
13:21:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:32 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 00:00:00, weight 0.22) and
after (2025-06-27 03:00:00, weight 0.78) in time
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:32 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:32 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:32 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.686452 (min) -0.00918201 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.243241 (min) 0.181046 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.79758 (min) 2.71885 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.64245 (min) -6.84239 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:32 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:32 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.233476, mean: 1.421410, max: 1.614650
13:21:32 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:32 DEBUG opendrift.models.physics_methods:878: min: 6.050552, mean: 6.493308, max: 6.922593
13:21:32 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.050552, mean: 6.493308, max: 6.922593
13:21:32 DEBUG opendrift:623: No elements hit coastline.
13:21:32 DEBUG opendrift:1626: No elements to deactivate
13:21:32 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:32 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:32 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:32 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:32 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:32 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:32 DEBUG opendrift.models.physics_methods:878: min: 6.050552, mean: 6.493309, max: 6.922593
13:21:32 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:32 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.005709, dN_50: 0.000448
13:21:32 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:32 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02368672409521526
13:21:32 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:32 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:32 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 168 surface elements
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 172 surface elements
13:21:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 177 surface elements
13:21:32 DEBUG opendrift.models.physics_methods:732: Advecting 182 of 6000 elements above 0.100m with wind-sheared ocean current (0.012861 m/s - 0.242309 m/s)
13:21:32 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:32 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009287328801532704 and 0.4216900599101886 m/s
13:21:32 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:32 DEBUG opendrift:2008: ======================================================================
13:21:32 INFO opendrift:2009: 2025-06-27 03:21:12.661168 - step 15 of 120 - 6000 active elements (0 deactivated)
13:21:32 DEBUG opendrift:2015: 0 elements scheduled.
13:21:32 DEBUG opendrift:2017: ======================================================================
13:21:32 DEBUG opendrift:2028: 34.85881038951135 <- latitude -> 35.09980628376334
13:21:32 DEBUG opendrift:2028: 23.16828392813293 <- longitude -> 23.36289922619161
13:21:32 DEBUG opendrift:2028: -139.99214021265337 <- z -> 0.0
13:21:32 DEBUG opendrift:2029: ---------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:32 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 03:00:00 (before)
2025-06-27 06:00:00 (after)
13:21:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:33 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:33 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:33 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 12x14x23) for time after (2025-06-27 06:00:00)
13:21:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 03:00:00) in space (linearNDFast)
13:21:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:33 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 06:00:00) in space (linearNDFast)
13:21:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:33 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 03:00:00, weight 0.88) and
after (2025-06-27 06:00:00, weight 0.12) in time
13:21:33 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:33 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:33 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:33 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:33 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:33 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:33 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:33 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 03:00:00 (before)
2025-06-27 06:00:00 (after)
13:21:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:33 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:33 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:33 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 7x7x1) for time after (2025-06-27 06:00:00)
13:21:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 03:00:00) in space (linearNDFast)
13:21:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:33 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 06:00:00) in space (linearNDFast)
13:21:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:33 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 03:00:00, weight 0.88) and
after (2025-06-27 06:00:00, weight 0.12) in time
13:21:33 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:33 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:33 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:33 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:33 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:33 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:33 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.647559 (min) 0.0487662 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.213142 (min) 0.174654 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.60737 (min) 2.66597 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.84918 (min) -6.9338 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:33 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:33 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.250496, mean: 1.455122, max: 1.687307
13:21:33 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:33 DEBUG opendrift.models.physics_methods:878: min: 6.092151, mean: 6.569584, max: 7.076631
13:21:33 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.092151, mean: 6.569584, max: 7.076631
13:21:33 DEBUG opendrift:623: No elements hit coastline.
13:21:34 DEBUG opendrift:1626: No elements to deactivate
13:21:34 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:34 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:34 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:34 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:34 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:34 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:34 DEBUG opendrift.models.physics_methods:878: min: 6.092151, mean: 6.569583, max: 7.076632
13:21:34 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:34 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.006320, dN_50: 0.000496
13:21:34 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:34 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.024752394050016904
13:21:34 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:34 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:34 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:34 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 187 surface elements
13:21:34 DEBUG opendrift.models.physics_methods:732: Advecting 194 of 6000 elements above 0.100m with wind-sheared ocean current (0.007341 m/s - 0.247943 m/s)
13:21:34 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:34 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005100047373104568 and 0.4270118932567999 m/s
13:21:34 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:34 DEBUG opendrift:2008: ======================================================================
13:21:34 INFO opendrift:2009: 2025-06-27 04:21:12.661168 - step 16 of 120 - 6000 active elements (0 deactivated)
13:21:34 DEBUG opendrift:2015: 0 elements scheduled.
13:21:34 DEBUG opendrift:2017: ======================================================================
13:21:34 DEBUG opendrift:2028: 34.84479900867734 <- latitude -> 35.09900958649333
13:21:34 DEBUG opendrift:2028: 23.146219335388544 <- longitude -> 23.364893381051246
13:21:34 DEBUG opendrift:2028: -138.95815110623892 <- z -> 0.0
13:21:34 DEBUG opendrift:2029: ---------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:34 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 03:00:00 (before)
2025-06-27 06:00:00 (after)
13:21:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 03:00:00) in space (linearNDFast)
13:21:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:34 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 06:00:00) in space (linearNDFast)
13:21:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:34 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 03:00:00, weight 0.55) and
after (2025-06-27 06:00:00, weight 0.45) in time
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 03:00:00 (before)
2025-06-27 06:00:00 (after)
13:21:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 03:00:00) in space (linearNDFast)
13:21:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:34 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 06:00:00) in space (linearNDFast)
13:21:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:34 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 03:00:00, weight 0.55) and
after (2025-06-27 06:00:00, weight 0.45) in time
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:34 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:34 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:34 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.610914 (min) 0.0242143 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.220251 (min) 0.149093 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.52704 (min) 2.76823 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.05516 (min) -7.17587 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:34 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.327289, mean: 1.537043, max: 1.764394
13:21:34 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:34 DEBUG opendrift.models.physics_methods:878: min: 6.276426, mean: 6.751886, max: 7.236480
13:21:34 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.276426, mean: 6.751886, max: 7.236480
13:21:34 DEBUG opendrift:623: No elements hit coastline.
13:21:34 DEBUG opendrift:1626: No elements to deactivate
13:21:34 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:34 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:34 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:34 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:34 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:34 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:34 DEBUG opendrift.models.physics_methods:878: min: 6.276426, mean: 6.751885, max: 7.236480
13:21:34 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:34 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.006931, dN_50: 0.000544
13:21:34 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:34 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02588305166226106
13:21:34 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:34 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:34 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:34 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 192 surface elements
13:21:34 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 195 surface elements
13:21:34 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 198 surface elements
13:21:34 DEBUG opendrift.models.physics_methods:732: Advecting 210 of 6000 elements above 0.100m with wind-sheared ocean current (0.013071 m/s - 0.253157 m/s)
13:21:34 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:34 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014494091226621582 and 0.4697654080508513 m/s
13:21:34 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:34 DEBUG opendrift:2008: ======================================================================
13:21:34 INFO opendrift:2009: 2025-06-27 05:21:12.661168 - step 17 of 120 - 6000 active elements (0 deactivated)
13:21:34 DEBUG opendrift:2015: 0 elements scheduled.
13:21:34 DEBUG opendrift:2017: ======================================================================
13:21:34 DEBUG opendrift:2028: 34.82579713822739 <- latitude -> 35.103280202822404
13:21:34 DEBUG opendrift:2028: 23.12066529489753 <- longitude -> 23.373448888817528
13:21:34 DEBUG opendrift:2028: -137.84164840512756 <- z -> 0.0
13:21:34 DEBUG opendrift:2029: ---------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:34 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 03:00:00 (before)
2025-06-27 06:00:00 (after)
13:21:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 03:00:00) in space (linearNDFast)
13:21:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:34 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 06:00:00) in space (linearNDFast)
13:21:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:34 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 03:00:00, weight 0.22) and
after (2025-06-27 06:00:00, weight 0.78) in time
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 03:00:00 (before)
2025-06-27 06:00:00 (after)
13:21:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 03:00:00) in space (linearNDFast)
13:21:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:34 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 06:00:00) in space (linearNDFast)
13:21:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:34 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 03:00:00, weight 0.22) and
after (2025-06-27 06:00:00, weight 0.78) in time
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:34 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:34 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:34 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.590905 (min) -0.0169539 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.283614 (min) 0.129272 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.39014 (min) 2.90222 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.32131 (min) -7.37269 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:34 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:34 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.387376, mean: 1.623553, max: 1.842999
13:21:34 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:34 DEBUG opendrift.models.physics_methods:878: min: 6.416922, mean: 6.939262, max: 7.395919
13:21:34 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.416922, mean: 6.939262, max: 7.395919
13:21:34 DEBUG opendrift:623: No elements hit coastline.
13:21:34 DEBUG opendrift:1626: No elements to deactivate
13:21:34 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:34 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:34 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:34 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:34 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:34 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:34 DEBUG opendrift.models.physics_methods:878: min: 6.416922, mean: 6.939262, max: 7.395919
13:21:34 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:34 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.007623, dN_50: 0.000598
13:21:34 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:34 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.027035978820332564
13:21:34 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:34 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:34 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:34 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 200 surface elements
13:21:34 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 210 surface elements
13:21:34 DEBUG opendrift.models.physics_methods:732: Advecting 222 of 6000 elements above 0.100m with wind-sheared ocean current (0.002185 m/s - 0.257726 m/s)
13:21:34 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:34 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013195804675399266 and 0.4108523094592168 m/s
13:21:34 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:34 DEBUG opendrift:2008: ======================================================================
13:21:34 INFO opendrift:2009: 2025-06-27 06:21:12.661168 - step 18 of 120 - 6000 active elements (0 deactivated)
13:21:34 DEBUG opendrift:2015: 0 elements scheduled.
13:21:34 DEBUG opendrift:2017: ======================================================================
13:21:34 DEBUG opendrift:2028: 34.80704996766555 <- latitude -> 35.107220455075776
13:21:34 DEBUG opendrift:2028: 23.10742273852335 <- longitude -> 23.37634319255651
13:21:34 DEBUG opendrift:2028: -137.1212151927544 <- z -> 0.0
13:21:34 DEBUG opendrift:2029: ---------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:34 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 06:00:00 (before)
2025-06-27 09:00:00 (after)
13:21:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:36 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:36 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:36 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 12x15x23) for time after (2025-06-27 09:00:00)
13:21:36 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 06:00:00) in space (linearNDFast)
13:21:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:36 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 09:00:00) in space (linearNDFast)
13:21:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:36 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 06:00:00, weight 0.88) and
after (2025-06-27 09:00:00, weight 0.12) in time
13:21:36 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:36 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:36 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:36 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:36 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:36 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:36 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:36 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:36 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 06:00:00 (before)
2025-06-27 09:00:00 (after)
13:21:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:36 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:36 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:36 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 7x7x1) for time after (2025-06-27 09:00:00)
13:21:36 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 06:00:00) in space (linearNDFast)
13:21:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:36 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 09:00:00) in space (linearNDFast)
13:21:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 06:00:00, weight 0.88) and
after (2025-06-27 09:00:00, weight 0.12) in time
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:37 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:37 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.561589 (min) -0.0838649 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.350084 (min) 0.10061 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.21955 (min) 2.87106 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.50282 (min) -7.55407 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:37 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.440360, mean: 1.700307, max: 1.899759
13:21:37 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:37 DEBUG opendrift.models.physics_methods:878: min: 6.538303, mean: 7.101270, max: 7.508943
13:21:37 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.538303, mean: 7.101270, max: 7.508943
13:21:37 DEBUG opendrift:623: No elements hit coastline.
13:21:37 DEBUG opendrift:1626: No elements to deactivate
13:21:37 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:37 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:37 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:37 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:37 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:37 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:37 DEBUG opendrift.models.physics_methods:878: min: 6.538303, mean: 7.101270, max: 7.508943
13:21:37 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:37 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.008337, dN_50: 0.000654
13:21:37 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:37 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02786848576654621
13:21:37 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:37 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:37 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:37 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 218 surface elements
13:21:37 DEBUG opendrift.models.physics_methods:732: Advecting 238 of 6000 elements above 0.100m with wind-sheared ocean current (0.003728 m/s - 0.260444 m/s)
13:21:37 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:37 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015994281269202948 and 0.4697421923561874 m/s
13:21:37 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:37 DEBUG opendrift:2008: ======================================================================
13:21:37 INFO opendrift:2009: 2025-06-27 07:21:12.661168 - step 19 of 120 - 6000 active elements (0 deactivated)
13:21:37 DEBUG opendrift:2015: 0 elements scheduled.
13:21:37 DEBUG opendrift:2017: ======================================================================
13:21:37 DEBUG opendrift:2028: 34.79136412767422 <- latitude -> 35.09971083999201
13:21:37 DEBUG opendrift:2028: 23.091718797065585 <- longitude -> 23.38031970351252
13:21:37 DEBUG opendrift:2028: -136.2487555659759 <- z -> 0.0
13:21:37 DEBUG opendrift:2029: ---------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:37 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:37 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:37 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 06:00:00 (before)
2025-06-27 09:00:00 (after)
13:21:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 06:00:00) in space (linearNDFast)
13:21:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 09:00:00) in space (linearNDFast)
13:21:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 06:00:00, weight 0.55) and
after (2025-06-27 09:00:00, weight 0.45) in time
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 06:00:00 (before)
2025-06-27 09:00:00 (after)
13:21:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 06:00:00) in space (linearNDFast)
13:21:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 09:00:00) in space (linearNDFast)
13:21:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 06:00:00, weight 0.55) and
after (2025-06-27 09:00:00, weight 0.45) in time
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:37 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:37 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.564545 (min) -0.129086 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.408079 (min) 0.0687575 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.08891 (min) 2.6217 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.62403 (min) -7.75739 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:37 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.515890, mean: 1.765135, max: 1.918505
13:21:37 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:37 DEBUG opendrift.models.physics_methods:878: min: 6.707542, mean: 7.234944, max: 7.545900
13:21:37 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.707542, mean: 7.234944, max: 7.545900
13:21:37 DEBUG opendrift:623: No elements hit coastline.
13:21:37 DEBUG opendrift:1626: No elements to deactivate
13:21:37 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:37 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:37 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:37 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:37 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:37 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:37 DEBUG opendrift.models.physics_methods:878: min: 6.707542, mean: 7.234944, max: 7.545900
13:21:37 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:37 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.008720, dN_50: 0.000684
13:21:37 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:37 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02814344141286673
13:21:37 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:37 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:37 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:37 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 226 surface elements
13:21:37 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 226 surface elements
13:21:37 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 225 surface elements
13:21:37 DEBUG opendrift.models.physics_methods:732: Advecting 241 of 6000 elements above 0.100m with wind-sheared ocean current (0.024917 m/s - 0.263954 m/s)
13:21:37 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:37 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00132774449349926 and 0.43011199849577236 m/s
13:21:37 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:37 DEBUG opendrift:2008: ======================================================================
13:21:37 INFO opendrift:2009: 2025-06-27 08:21:12.661168 - step 20 of 120 - 6000 active elements (0 deactivated)
13:21:37 DEBUG opendrift:2015: 0 elements scheduled.
13:21:37 DEBUG opendrift:2017: ======================================================================
13:21:37 DEBUG opendrift:2028: 34.769864756275425 <- latitude -> 35.10206409187651
13:21:37 DEBUG opendrift:2028: 23.07143790276094 <- longitude -> 23.37801378287582
13:21:37 DEBUG opendrift:2028: -135.6438129119808 <- z -> 0.0
13:21:37 DEBUG opendrift:2029: ---------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:37 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:37 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:37 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 06:00:00 (before)
2025-06-27 09:00:00 (after)
13:21:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 06:00:00) in space (linearNDFast)
13:21:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 09:00:00) in space (linearNDFast)
13:21:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 06:00:00, weight 0.22) and
after (2025-06-27 09:00:00, weight 0.78) in time
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 06:00:00 (before)
2025-06-27 09:00:00 (after)
13:21:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 06:00:00) in space (linearNDFast)
13:21:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 09:00:00) in space (linearNDFast)
13:21:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 06:00:00, weight 0.22) and
after (2025-06-27 09:00:00, weight 0.78) in time
13:21:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:37 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:37 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:37 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:37 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:37 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.575647 (min) -0.111198 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.439688 (min) 0.0106582 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.907338 (min) 2.45132 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.79809 (min) -7.8755 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:37 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:37 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.572446, mean: 1.849996, max: 2.002285
13:21:37 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:37 DEBUG opendrift.models.physics_methods:878: min: 6.831522, mean: 7.406280, max: 7.708902
13:21:37 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.831522, mean: 7.406280, max: 7.708902
13:21:37 DEBUG opendrift:623: No elements hit coastline.
13:21:37 DEBUG opendrift:1626: No elements to deactivate
13:21:37 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:37 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:37 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:37 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:37 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:37 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:37 DEBUG opendrift.models.physics_methods:878: min: 6.831522, mean: 7.406280, max: 7.708901
13:21:37 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:37 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.009039, dN_50: 0.000709
13:21:37 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:38 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.029372262717736696
13:21:38 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:38 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:38 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:38 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 235 surface elements
13:21:38 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 235 surface elements
13:21:38 DEBUG opendrift.models.physics_methods:732: Advecting 252 of 6000 elements above 0.100m with wind-sheared ocean current (0.026836 m/s - 0.269955 m/s)
13:21:38 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:38 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008300182199053258 and 0.43472968039642657 m/s
13:21:38 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:38 DEBUG opendrift:2008: ======================================================================
13:21:38 INFO opendrift:2009: 2025-06-27 09:21:12.661168 - step 21 of 120 - 6000 active elements (0 deactivated)
13:21:38 DEBUG opendrift:2015: 0 elements scheduled.
13:21:38 DEBUG opendrift:2017: ======================================================================
13:21:38 DEBUG opendrift:2028: 34.75754074127887 <- latitude -> 35.10021879392468
13:21:38 DEBUG opendrift:2028: 23.042250943666218 <- longitude -> 23.374354028366504
13:21:38 DEBUG opendrift:2028: -134.96640412690647 <- z -> 0.0
13:21:38 DEBUG opendrift:2029: ---------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:38 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:38 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:38 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:38 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 09:00:00 (before)
2025-06-27 12:00:00 (after)
13:21:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:39 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:39 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:39 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 13x17x23) for time after (2025-06-27 12:00:00)
13:21:39 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 09:00:00) in space (linearNDFast)
13:21:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:39 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 12:00:00) in space (linearNDFast)
13:21:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:39 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 09:00:00, weight 0.88) and
after (2025-06-27 12:00:00, weight 0.12) in time
13:21:39 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:39 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:39 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:39 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:39 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:39 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:39 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:39 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:39 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:39 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 09:00:00 (before)
2025-06-27 12:00:00 (after)
13:21:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:40 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:40 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:40 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 7x7x1) for time after (2025-06-27 12:00:00)
13:21:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 09:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 12:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 09:00:00, weight 0.88) and
after (2025-06-27 12:00:00, weight 0.12) in time
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:40 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:40 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.602767 (min) -0.0360061 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.455742 (min) 0.0145935 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.829218 (min) 2.39851 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.03281 (min) -7.72918 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:40 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.576862, mean: 1.900157, max: 2.112000
13:21:40 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:40 DEBUG opendrift.models.physics_methods:878: min: 6.841107, mean: 7.505513, max: 7.917289
13:21:40 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.841107, mean: 7.505513, max: 7.917289
13:21:40 DEBUG opendrift:623: No elements hit coastline.
13:21:40 DEBUG opendrift:1626: No elements to deactivate
13:21:40 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:40 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:40 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:40 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:40 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:40 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:40 DEBUG opendrift.models.physics_methods:878: min: 6.841107, mean: 7.505513, max: 7.917289
13:21:40 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:40 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.009442, dN_50: 0.000741
13:21:40 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:40 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03098148199328902
13:21:40 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:40 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:40 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:40 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 245 surface elements
13:21:40 DEBUG opendrift.models.physics_methods:732: Advecting 264 of 6000 elements above 0.100m with wind-sheared ocean current (0.018685 m/s - 0.276304 m/s)
13:21:40 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:40 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017110831770266116 and 0.47816703343356826 m/s
13:21:40 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:40 DEBUG opendrift:2008: ======================================================================
13:21:40 INFO opendrift:2009: 2025-06-27 10:21:12.661168 - step 22 of 120 - 6000 active elements (0 deactivated)
13:21:40 DEBUG opendrift:2015: 0 elements scheduled.
13:21:40 DEBUG opendrift:2017: ======================================================================
13:21:40 DEBUG opendrift:2028: 34.747355391673494 <- latitude -> 35.10217172734605
13:21:40 DEBUG opendrift:2028: 23.019409312464806 <- longitude -> 23.37246728931208
13:21:40 DEBUG opendrift:2028: -134.08551273900858 <- z -> 0.0
13:21:40 DEBUG opendrift:2029: ---------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:40 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:40 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:40 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21: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
13:21:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 09:00:00 (before)
2025-06-27 12:00:00 (after)
13:21:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 09:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 12:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 09:00:00, weight 0.55) and
after (2025-06-27 12:00:00, weight 0.45) in time
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 09:00:00 (before)
2025-06-27 12:00:00 (after)
13:21:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 09:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 12:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 09:00:00, weight 0.55) and
after (2025-06-27 12:00:00, weight 0.45) in time
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:40 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:40 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.575009 (min) -0.00940388 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.424537 (min) 0.0487518 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.824394 (min) 2.48677 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.14684 (min) -7.4954 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:40 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.491952, mean: 1.867189, max: 2.164019
13:21:40 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:40 DEBUG opendrift.models.physics_methods:878: min: 6.654372, mean: 7.439808, max: 8.014200
13:21:40 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.654372, mean: 7.439808, max: 8.014200
13:21:40 DEBUG opendrift:623: No elements hit coastline.
13:21:40 DEBUG opendrift:1626: No elements to deactivate
13:21:40 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:40 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:40 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:40 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:40 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:40 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:40 DEBUG opendrift.models.physics_methods:878: min: 6.654372, mean: 7.439808, max: 8.014199
13:21:40 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:40 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.010019, dN_50: 0.000786
13:21:40 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:40 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03174446734143894
13:21:40 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:40 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:40 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:40 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 260 surface elements
13:21:40 DEBUG opendrift.models.physics_methods:732: Advecting 267 of 6000 elements above 0.100m with wind-sheared ocean current (0.021323 m/s - 0.276079 m/s)
13:21:40 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:40 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001966970616291998 and 0.43213370086591063 m/s
13:21:40 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:40 DEBUG opendrift:2008: ======================================================================
13:21:40 INFO opendrift:2009: 2025-06-27 11:21:12.661168 - step 23 of 120 - 6000 active elements (0 deactivated)
13:21:40 DEBUG opendrift:2015: 0 elements scheduled.
13:21:40 DEBUG opendrift:2017: ======================================================================
13:21:40 DEBUG opendrift:2028: 34.73857374165114 <- latitude -> 35.09614951559247
13:21:40 DEBUG opendrift:2028: 22.992973970643522 <- longitude -> 23.368708363497838
13:21:40 DEBUG opendrift:2028: -132.70589253956734 <- z -> 0.0
13:21:40 DEBUG opendrift:2029: ---------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:40 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:40 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:40 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21: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
13:21:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 09:00:00 (before)
2025-06-27 12:00:00 (after)
13:21:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 09:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 12:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 09:00:00, weight 0.22) and
after (2025-06-27 12:00:00, weight 0.78) in time
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 09:00:00 (before)
2025-06-27 12:00:00 (after)
13:21:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 09:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 12:00:00) in space (linearNDFast)
13:21:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:40 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 09:00:00, weight 0.22) and
after (2025-06-27 12:00:00, weight 0.78) in time
13:21:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:40 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:40 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:40 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:40 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:40 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.539891 (min) 0.06055 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.393184 (min) 0.0597887 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.810371 (min) 2.52059 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.2241 (min) -7.27585 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:40 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:40 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.418979, mean: 1.850786, max: 2.200589
13:21:40 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:40 DEBUG opendrift.models.physics_methods:878: min: 6.489595, mean: 7.406675, max: 8.081631
13:21:40 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.489595, mean: 7.406675, max: 8.081631
13:21:40 DEBUG opendrift:623: No elements hit coastline.
13:21:40 DEBUG opendrift:1626: No elements to deactivate
13:21:40 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:40 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:40 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:40 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:40 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:40 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:40 DEBUG opendrift.models.physics_methods:878: min: 6.489595, mean: 7.406674, max: 8.081632
13:21:40 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:40 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.010613, dN_50: 0.000833
13:21:40 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:40 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03228084732451211
13:21:40 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:40 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:40 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:41 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 260 surface elements
13:21:41 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 264 surface elements
13:21:41 DEBUG opendrift.models.physics_methods:732: Advecting 272 of 6000 elements above 0.100m with wind-sheared ocean current (0.041080 m/s - 0.276828 m/s)
13:21:41 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:41 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002759402245452866 and 0.4665936127275161 m/s
13:21:41 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:41 DEBUG opendrift:2008: ======================================================================
13:21:41 INFO opendrift:2009: 2025-06-27 12:21:12.661168 - step 24 of 120 - 6000 active elements (0 deactivated)
13:21:41 DEBUG opendrift:2015: 0 elements scheduled.
13:21:41 DEBUG opendrift:2017: ======================================================================
13:21:41 DEBUG opendrift:2028: 34.7276563921245 <- latitude -> 35.08632260130794
13:21:41 DEBUG opendrift:2028: 22.969133391645 <- longitude -> 23.371808641260365
13:21:41 DEBUG opendrift:2028: -131.87785808051729 <- z -> 0.0
13:21:41 DEBUG opendrift:2029: ---------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:41 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:41 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:41 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:41 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:41 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 12:00:00 (before)
2025-06-27 15:00:00 (after)
13:21:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:42 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:42 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:42 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 14x17x23) for time after (2025-06-27 15:00:00)
13:21:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 12:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:42 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 15:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:42 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 12:00:00, weight 0.88) and
after (2025-06-27 15:00:00, weight 0.12) in time
13:21:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 12:00:00 (before)
2025-06-27 15:00:00 (after)
13:21:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:42 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:42 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:42 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-27 15:00:00)
13:21:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 12:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:42 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 15:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:42 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 12:00:00, weight 0.88) and
after (2025-06-27 15:00:00, weight 0.12) in time
13:21:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:42 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:42 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:42 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:42 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.569512 (min) 0.10777 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.377389 (min) 0.0542321 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.998828 (min) 2.65292 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.17315 (min) -7.22481 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:42 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.409117, mean: 1.852152, max: 2.197382
13:21:42 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:42 DEBUG opendrift.models.physics_methods:878: min: 6.467004, mean: 7.409466, max: 8.075741
13:21:42 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.467004, mean: 7.409466, max: 8.075741
13:21:42 DEBUG opendrift:623: No elements hit coastline.
13:21:42 DEBUG opendrift:1626: No elements to deactivate
13:21:42 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:42 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:42 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:42 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:42 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:42 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:42 DEBUG opendrift.models.physics_methods:878: min: 6.467003, mean: 7.409465, max: 8.075741
13:21:42 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:42 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.011217, dN_50: 0.000880
13:21:42 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:42 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03223381562320017
13:21:42 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:42 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:42 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:42 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 270 surface elements
13:21:42 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 271 surface elements
13:21:42 DEBUG opendrift.models.physics_methods:732: Advecting 281 of 6000 elements above 0.100m with wind-sheared ocean current (0.019213 m/s - 0.279156 m/s)
13:21:42 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:42 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016629619182540248 and 0.454073836509572 m/s
13:21:42 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:42 DEBUG opendrift:2008: ======================================================================
13:21:42 INFO opendrift:2009: 2025-06-27 13:21:12.661168 - step 25 of 120 - 6000 active elements (0 deactivated)
13:21:42 DEBUG opendrift:2015: 0 elements scheduled.
13:21:42 DEBUG opendrift:2017: ======================================================================
13:21:42 DEBUG opendrift:2028: 34.706774844899364 <- latitude -> 35.07620840364588
13:21:42 DEBUG opendrift:2028: 22.954170075960022 <- longitude -> 23.378069467882256
13:21:42 DEBUG opendrift:2028: -131.1963267863036 <- z -> 0.0
13:21:42 DEBUG opendrift:2029: ---------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:42 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:42 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
13:21:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 12:00:00 (before)
2025-06-27 15:00:00 (after)
13:21:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 12:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:42 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 15:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:42 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 12:00:00, weight 0.55) and
after (2025-06-27 15:00:00, weight 0.45) in time
13:21:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 12:00:00 (before)
2025-06-27 15:00:00 (after)
13:21:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 12:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:42 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 15:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:42 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 12:00:00, weight 0.55) and
after (2025-06-27 15:00:00, weight 0.45) in time
13:21:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:42 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:42 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:42 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:42 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.587492 (min) 0.0966257 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.417516 (min) 0.0430538 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.53761 (min) 3.0215 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.898 (min) -7.48221 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:42 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:42 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.517101, mean: 1.864770, max: 2.152954
13:21:42 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:42 DEBUG opendrift.models.physics_methods:878: min: 6.710220, mean: 7.435547, max: 7.993684
13:21:42 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.710220, mean: 7.435547, max: 7.993684
13:21:42 DEBUG opendrift:623: No elements hit coastline.
13:21:42 DEBUG opendrift:1626: No elements to deactivate
13:21:42 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:42 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:42 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:42 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:42 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:42 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:42 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:42 DEBUG opendrift.models.physics_methods:878: min: 6.710220, mean: 7.435547, max: 7.993684
13:21:42 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:42 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.011839, dN_50: 0.000929
13:21:42 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:42 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03158217271576483
13:21:42 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:42 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:42 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:42 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 279 surface elements
13:21:42 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 282 surface elements
13:21:42 DEBUG opendrift.models.physics_methods:732: Advecting 294 of 6000 elements above 0.100m with wind-sheared ocean current (0.016574 m/s - 0.280506 m/s)
13:21:42 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:42 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001283620157565291 and 0.4184917083063707 m/s
13:21:42 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:42 DEBUG opendrift:2008: ======================================================================
13:21:42 INFO opendrift:2009: 2025-06-27 14:21:12.661168 - step 26 of 120 - 6000 active elements (0 deactivated)
13:21:42 DEBUG opendrift:2015: 0 elements scheduled.
13:21:42 DEBUG opendrift:2017: ======================================================================
13:21:42 DEBUG opendrift:2028: 34.69251045735624 <- latitude -> 35.06367909012737
13:21:42 DEBUG opendrift:2028: 22.93527161536555 <- longitude -> 23.385809973821836
13:21:42 DEBUG opendrift:2028: -130.355284203706 <- z -> 0.0
13:21:42 DEBUG opendrift:2029: ---------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:42 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:42 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
13:21:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 12:00:00 (before)
2025-06-27 15:00:00 (after)
13:21:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 12:00:00) in space (linearNDFast)
13:21:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:43 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 15:00:00) in space (linearNDFast)
13:21:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:43 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 12:00:00, weight 0.22) and
after (2025-06-27 15:00:00, weight 0.78) in time
13:21:43 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:43 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:43 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:43 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:43 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:43 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 12:00:00 (before)
2025-06-27 15:00:00 (after)
13:21:43 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 12:00:00) in space (linearNDFast)
13:21:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:43 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 15:00:00) in space (linearNDFast)
13:21:43 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:43 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 12:00:00, weight 0.22) and
after (2025-06-27 15:00:00, weight 0.78) in time
13:21:43 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:43 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:43 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:43 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:43 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:43 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:43 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:43 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:43 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.595501 (min) 0.0887922 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.467844 (min) 0.0463363 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.0739 (min) 3.45599 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.77766 (min) -7.74615 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:43 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:43 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.588616, mean: 1.881075, max: 2.189182
13:21:43 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:43 DEBUG opendrift.models.physics_methods:878: min: 6.866558, mean: 7.468490, max: 8.060658
13:21:43 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.866558, mean: 7.468490, max: 8.060658
13:21:43 DEBUG opendrift:623: No elements hit coastline.
13:21:43 DEBUG opendrift:1626: No elements to deactivate
13:21:43 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:43 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:43 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:43 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:43 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:43 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:43 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:43 DEBUG opendrift.models.physics_methods:878: min: 6.866558, mean: 7.468490, max: 8.060658
13:21:43 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:43 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.012480, dN_50: 0.000979
13:21:43 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:43 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0321135392746052
13:21:43 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:43 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:43 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:43 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 284 surface elements
13:21:43 DEBUG opendrift.models.physics_methods:732: Advecting 291 of 6000 elements above 0.100m with wind-sheared ocean current (0.001497 m/s - 0.283005 m/s)
13:21:43 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:43 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0035594363443905534 and 0.4503877502018274 m/s
13:21:43 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:43 DEBUG opendrift:2008: ======================================================================
13:21:43 INFO opendrift:2009: 2025-06-27 15:21:12.661168 - step 27 of 120 - 6000 active elements (0 deactivated)
13:21:43 DEBUG opendrift:2015: 0 elements scheduled.
13:21:43 DEBUG opendrift:2017: ======================================================================
13:21:43 DEBUG opendrift:2028: 34.67140047897087 <- latitude -> 35.057925290252015
13:21:43 DEBUG opendrift:2028: 22.923279389037823 <- longitude -> 23.392280612084196
13:21:43 DEBUG opendrift:2028: -129.56873719849864 <- z -> 0.0
13:21:43 DEBUG opendrift:2029: ---------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:43 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:43 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:43 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:43 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:43 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:43 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:43 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:43 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:43 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:43 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:43 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:43 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:43 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:43 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:43 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:43 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:43 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 15:00:00 (before)
2025-06-27 18:00:00 (after)
13:21:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:46 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:46 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:46 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 15x18x23) for time after (2025-06-27 18:00:00)
13:21:46 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 15:00:00) in space (linearNDFast)
13:21:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:46 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 18:00:00) in space (linearNDFast)
13:21:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:46 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 15:00:00, weight 0.88) and
after (2025-06-27 18:00:00, weight 0.12) in time
13:21:46 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:46 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:46 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:46 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:46 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 15:00:00 (before)
2025-06-27 18:00:00 (after)
13:21:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:46 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:46 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:46 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-27 18:00:00)
13:21:46 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 15:00:00) in space (linearNDFast)
13:21:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:46 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 18:00:00) in space (linearNDFast)
13:21:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:46 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 15:00:00, weight 0.88) and
after (2025-06-27 18:00:00, weight 0.12) in time
13:21:46 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:46 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:46 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:46 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:46 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:46 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:46 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:46 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:46 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.621117 (min) 0.0531001 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.503598 (min) 0.0502583 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.64814 (min) 3.76041 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.70702 (min) -7.74027 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:46 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.648588, mean: 1.902223, max: 2.212842
13:21:46 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:46 DEBUG opendrift.models.physics_methods:878: min: 6.994967, mean: 7.511146, max: 8.104101
13:21:46 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.994967, mean: 7.511146, max: 8.104101
13:21:46 DEBUG opendrift:623: No elements hit coastline.
13:21:46 DEBUG opendrift:1626: No elements to deactivate
13:21:46 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:46 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:46 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:46 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:46 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:46 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:46 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:46 DEBUG opendrift.models.physics_methods:878: min: 6.994967, mean: 7.511146, max: 8.104101
13:21:46 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:46 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.013167, dN_50: 0.001033
13:21:46 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:46 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.032460572589712924
13:21:46 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:46 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:46 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:46 DEBUG opendrift.models.physics_methods:732: Advecting 305 of 6000 elements above 0.100m with wind-sheared ocean current (0.025024 m/s - 0.284531 m/s)
13:21:46 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:46 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009935982174706624 and 0.41325183028232804 m/s
13:21:46 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:46 DEBUG opendrift:2008: ======================================================================
13:21:46 INFO opendrift:2009: 2025-06-27 16:21:12.661168 - step 28 of 120 - 6000 active elements (0 deactivated)
13:21:46 DEBUG opendrift:2015: 0 elements scheduled.
13:21:46 DEBUG opendrift:2017: ======================================================================
13:21:46 DEBUG opendrift:2028: 34.647764588905474 <- latitude -> 35.05596333587289
13:21:46 DEBUG opendrift:2028: 22.908214359564475 <- longitude -> 23.397632638220127
13:21:46 DEBUG opendrift:2028: -128.54226994519104 <- z -> 0.0
13:21:46 DEBUG opendrift:2029: ---------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:46 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:46 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:46 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:46 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:46 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:46 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:46 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:46 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:46 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:46 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:46 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:46 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:46 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:46 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:46 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 15:00:00 (before)
2025-06-27 18:00:00 (after)
13:21:46 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 15:00:00) in space (linearNDFast)
13:21:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:46 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 18:00:00) in space (linearNDFast)
13:21:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:46 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 15:00:00, weight 0.55) and
after (2025-06-27 18:00:00, weight 0.45) in time
13:21:46 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:46 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:46 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:46 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:46 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 15:00:00 (before)
2025-06-27 18:00:00 (after)
13:21:46 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 15:00:00) in space (linearNDFast)
13:21:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:46 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 18:00:00) in space (linearNDFast)
13:21:46 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:46 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 15:00:00, weight 0.55) and
after (2025-06-27 18:00:00, weight 0.45) in time
13:21:46 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:46 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:46 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:46 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:46 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:46 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:46 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:46 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:46 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:46 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.610591 (min) 0.00612974 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.528485 (min) -0.009087 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.1282 (min) 3.86754 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.7401 (min) -7.72655 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:46 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:46 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.725737, mean: 1.907396, max: 2.238575
13:21:46 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:46 DEBUG opendrift.models.physics_methods:878: min: 7.156767, mean: 7.522130, max: 8.151085
13:21:46 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.156767, mean: 7.522130, max: 8.151085
13:21:46 DEBUG opendrift:623: No elements hit coastline.
13:21:46 DEBUG opendrift:1626: No elements to deactivate
13:21:46 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:46 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:46 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:46 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:46 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:46 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:46 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:46 DEBUG opendrift.models.physics_methods:878: min: 7.156767, mean: 7.522130, max: 8.151085
13:21:46 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:46 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.013968, dN_50: 0.001096
13:21:47 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:47 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.032838000229933856
13:21:47 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:47 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:47 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:47 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 297 surface elements
13:21:47 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 298 surface elements
13:21:47 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 298 surface elements
13:21:47 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 300 surface elements
13:21:47 DEBUG opendrift.models.physics_methods:732: Advecting 309 of 6000 elements above 0.100m with wind-sheared ocean current (0.015224 m/s - 0.286180 m/s)
13:21:47 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:47 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016566471491460896 and 0.5210254418188792 m/s
13:21:47 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:47 DEBUG opendrift:2008: ======================================================================
13:21:47 INFO opendrift:2009: 2025-06-27 17:21:12.661168 - step 29 of 120 - 6000 active elements (0 deactivated)
13:21:47 DEBUG opendrift:2015: 0 elements scheduled.
13:21:47 DEBUG opendrift:2017: ======================================================================
13:21:47 DEBUG opendrift:2028: 34.63206648568003 <- latitude -> 35.05364996708415
13:21:47 DEBUG opendrift:2028: 22.884858420691604 <- longitude -> 23.402928098198736
13:21:47 DEBUG opendrift:2028: -127.41782979474822 <- z -> 0.0
13:21:47 DEBUG opendrift:2029: ---------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:47 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:47 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:47 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:47 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:47 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:47 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:47 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:47 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:47 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:47 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:47 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:47 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:47 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:47 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:47 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:47 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 15:00:00 (before)
2025-06-27 18:00:00 (after)
13:21:47 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 15:00:00) in space (linearNDFast)
13:21:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:47 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 18:00:00) in space (linearNDFast)
13:21:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:47 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 15:00:00, weight 0.22) and
after (2025-06-27 18:00:00, weight 0.78) in time
13:21:47 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:47 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:47 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:47 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:47 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:47 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 15:00:00 (before)
2025-06-27 18:00:00 (after)
13:21:47 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 15:00:00) in space (linearNDFast)
13:21:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:47 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 18:00:00) in space (linearNDFast)
13:21:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:47 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 15:00:00, weight 0.22) and
after (2025-06-27 18:00:00, weight 0.78) in time
13:21:47 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:47 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:47 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:47 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:47 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:47 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:47 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:47 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:47 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:47 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.605776 (min) 0.0618822 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.489783 (min) 0.00172945 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.31759 (min) 4.32957 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.18454 (min) -7.54207 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:47 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:47 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.670073, mean: 1.885642, max: 2.510777
13:21:47 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:47 DEBUG opendrift.models.physics_methods:878: min: 7.040399, mean: 7.478014, max: 8.632441
13:21:47 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.040399, mean: 7.478014, max: 8.632441
13:21:47 DEBUG opendrift:623: No elements hit coastline.
13:21:47 DEBUG opendrift:1626: No elements to deactivate
13:21:47 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:47 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:47 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:47 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:47 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:47 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:47 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:47 DEBUG opendrift.models.physics_methods:878: min: 7.040399, mean: 7.478014, max: 8.632442
13:21:47 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:47 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.014878, dN_50: 0.001168
13:21:47 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:47 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.036830455777869454
13:21:47 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:47 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:47 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:47 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 307 surface elements
13:21:47 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 306 surface elements
13:21:48 DEBUG opendrift.models.physics_methods:732: Advecting 323 of 6000 elements above 0.100m with wind-sheared ocean current (0.054269 m/s - 0.303080 m/s)
13:21:48 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:48 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0023933952029447135 and 0.4980713141225855 m/s
13:21:48 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:48 DEBUG opendrift:2008: ======================================================================
13:21:48 INFO opendrift:2009: 2025-06-27 18:21:12.661168 - step 30 of 120 - 6000 active elements (0 deactivated)
13:21:48 DEBUG opendrift:2015: 0 elements scheduled.
13:21:48 DEBUG opendrift:2017: ======================================================================
13:21:48 DEBUG opendrift:2028: 34.6105270503986 <- latitude -> 35.05725459194393
13:21:48 DEBUG opendrift:2028: 22.87670994574663 <- longitude -> 23.40344529291697
13:21:48 DEBUG opendrift:2028: -126.76997193612554 <- z -> 0.0
13:21:48 DEBUG opendrift:2029: ---------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:48 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:48 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:48 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 18:00:00 (before)
2025-06-27 21:00:00 (after)
13:21:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:49 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:49 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:49 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 15x19x23) for time after (2025-06-27 21:00:00)
13:21:49 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 18:00:00) in space (linearNDFast)
13:21:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:49 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 21:00:00) in space (linearNDFast)
13:21:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:49 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 18:00:00, weight 0.88) and
after (2025-06-27 21:00:00, weight 0.12) in time
13:21:49 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:49 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:49 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:49 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 18:00:00 (before)
2025-06-27 21:00:00 (after)
13:21:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:49 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:49 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:49 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-27 21:00:00)
13:21:49 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 18:00:00) in space (linearNDFast)
13:21:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:49 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 21:00:00) in space (linearNDFast)
13:21:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:49 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 18:00:00, weight 0.88) and
after (2025-06-27 21:00:00, weight 0.12) in time
13:21:49 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:49 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:49 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:49 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:49 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:49 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:49 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:49 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:49 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.576911 (min) 0.0655776 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.512725 (min) 0.0153822 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.27316 (min) 4.49837 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.33696 (min) -7.29077 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:49 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:49 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.571175, mean: 1.793111, max: 2.624586
13:21:49 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:49 DEBUG opendrift.models.physics_methods:878: min: 6.828760, mean: 7.290527, max: 8.825920
13:21:49 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.828760, mean: 7.290527, max: 8.825920
13:21:49 DEBUG opendrift:623: No elements hit coastline.
13:21:49 DEBUG opendrift:1626: No elements to deactivate
13:21:49 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:49 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:49 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:49 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:49 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:49 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:49 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:49 DEBUG opendrift.models.physics_methods:878: min: 6.828760, mean: 7.290527, max: 8.825920
13:21:49 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:49 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.016022, dN_50: 0.001257
13:21:49 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:49 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03849972508734949
13:21:49 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:49 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:49 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:49 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 321 surface elements
13:21:49 DEBUG opendrift.models.physics_methods:732: Advecting 332 of 6000 elements above 0.100m with wind-sheared ocean current (0.006338 m/s - 0.309873 m/s)
13:21:49 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:49 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011796229060205793 and 0.4994055249255445 m/s
13:21:49 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:49 DEBUG opendrift:2008: ======================================================================
13:21:49 INFO opendrift:2009: 2025-06-27 19:21:12.661168 - step 31 of 120 - 6000 active elements (0 deactivated)
13:21:49 DEBUG opendrift:2015: 0 elements scheduled.
13:21:49 DEBUG opendrift:2017: ======================================================================
13:21:49 DEBUG opendrift:2028: 34.590695017672175 <- latitude -> 35.05001210038267
13:21:49 DEBUG opendrift:2028: 22.867668707140705 <- longitude -> 23.409340340394696
13:21:49 DEBUG opendrift:2028: -125.73893576470962 <- z -> 0.0
13:21:49 DEBUG opendrift:2029: ---------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:49 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:49 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:49 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:49 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:49 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:49 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:49 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:49 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:49 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:49 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:49 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:49 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:49 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 18:00:00 (before)
2025-06-27 21:00:00 (after)
13:21:49 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 18:00:00) in space (linearNDFast)
13:21:49 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:50 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 21:00:00) in space (linearNDFast)
13:21:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:50 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 18:00:00, weight 0.55) and
after (2025-06-27 21:00:00, weight 0.45) in time
13:21:50 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:50 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:50 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:50 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:50 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:50 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 18:00:00 (before)
2025-06-27 21:00:00 (after)
13:21:50 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 18:00:00) in space (linearNDFast)
13:21:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:50 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 21:00:00) in space (linearNDFast)
13:21:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:50 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 18:00:00, weight 0.55) and
after (2025-06-27 21:00:00, weight 0.45) in time
13:21:50 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:50 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:50 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:50 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:50 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:50 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:50 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:50 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:50 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.517632 (min) 0.0446062 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.464639 (min) 0.0300415 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.17616 (min) 4.13371 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.67202 (min) -6.91564 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:50 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.430715, mean: 1.614650, max: 2.211369
13:21:50 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:50 DEBUG opendrift.models.physics_methods:878: min: 6.516376, mean: 6.918552, max: 8.101403
13:21:50 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.516376, mean: 6.918552, max: 8.101403
13:21:50 DEBUG opendrift:623: No elements hit coastline.
13:21:50 DEBUG opendrift:1626: No elements to deactivate
13:21:50 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:50 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:50 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:50 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:50 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:50 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:50 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:50 DEBUG opendrift.models.physics_methods:878: min: 6.516376, mean: 6.918552, max: 8.101403
13:21:50 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:50 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.017519, dN_50: 0.001375
13:21:50 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:50 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.032438967622273676
13:21:50 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:50 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:50 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:50 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 326 surface elements
13:21:50 DEBUG opendrift.models.physics_methods:732: Advecting 344 of 6000 elements above 0.100m with wind-sheared ocean current (0.007754 m/s - 0.284436 m/s)
13:21:50 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:50 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007962287474743972 and 0.44123663925808704 m/s
13:21:50 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:50 DEBUG opendrift:2008: ======================================================================
13:21:50 INFO opendrift:2009: 2025-06-27 20:21:12.661168 - step 32 of 120 - 6000 active elements (0 deactivated)
13:21:50 DEBUG opendrift:2015: 0 elements scheduled.
13:21:50 DEBUG opendrift:2017: ======================================================================
13:21:50 DEBUG opendrift:2028: 34.58190571671043 <- latitude -> 35.03943063652354
13:21:50 DEBUG opendrift:2028: 22.85451317069422 <- longitude -> 23.405722450411375
13:21:50 DEBUG opendrift:2028: -124.97766864068399 <- z -> 0.0
13:21:50 DEBUG opendrift:2029: ---------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:50 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:50 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:50 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:50 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:50 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:50 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:50 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:50 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:50 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:50 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:50 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:50 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:50 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:50 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:50 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:50 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 18:00:00 (before)
2025-06-27 21:00:00 (after)
13:21:50 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 18:00:00) in space (linearNDFast)
13:21:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:50 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 21:00:00) in space (linearNDFast)
13:21:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:50 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 18:00:00, weight 0.22) and
after (2025-06-27 21:00:00, weight 0.78) in time
13:21:50 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:50 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:50 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:50 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:50 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:50 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 18:00:00 (before)
2025-06-27 21:00:00 (after)
13:21:50 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 18:00:00) in space (linearNDFast)
13:21:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:50 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-27 21:00:00) in space (linearNDFast)
13:21:50 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:50 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 18:00:00, weight 0.22) and
after (2025-06-27 21:00:00, weight 0.78) in time
13:21:50 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:50 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:50 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:50 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:50 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:50 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:50 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:50 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:50 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.484811 (min) 0.0921066 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.427974 (min) 0.0872776 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: x_wind: 3.07108 (min) 3.86192 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.10473 (min) -6.54422 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:50 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:50 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.303343, mean: 1.448414, max: 1.939033
13:21:50 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:50 DEBUG opendrift.models.physics_methods:878: min: 6.219549, mean: 6.553245, max: 7.586163
13:21:50 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.219549, mean: 6.553245, max: 7.586163
13:21:50 DEBUG opendrift:623: No elements hit coastline.
13:21:50 DEBUG opendrift:1626: No elements to deactivate
13:21:50 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:50 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:50 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:50 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:50 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:50 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:50 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:50 DEBUG opendrift.models.physics_methods:878: min: 6.219549, mean: 6.553245, max: 7.586163
13:21:50 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:50 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.019176, dN_50: 0.001505
13:21:50 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:50 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.028444532441632926
13:21:50 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:50 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:50 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:50 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 333 surface elements
13:21:50 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 333 surface elements
13:21:50 DEBUG opendrift.models.physics_methods:732: Advecting 341 of 6000 elements above 0.100m with wind-sheared ocean current (0.003642 m/s - 0.259411 m/s)
13:21:50 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:50 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014132052358018859 and 0.47100993392193563 m/s
13:21:50 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:50 DEBUG opendrift:2008: ======================================================================
13:21:50 INFO opendrift:2009: 2025-06-27 21:21:12.661168 - step 33 of 120 - 6000 active elements (0 deactivated)
13:21:50 DEBUG opendrift:2015: 0 elements scheduled.
13:21:50 DEBUG opendrift:2017: ======================================================================
13:21:50 DEBUG opendrift:2028: 34.566623363054 <- latitude -> 35.04058456321301
13:21:50 DEBUG opendrift:2028: 22.8357517869812 <- longitude -> 23.410100374004813
13:21:50 DEBUG opendrift:2028: -124.24477522421937 <- z -> 0.0
13:21:50 DEBUG opendrift:2029: ---------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:50 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:50 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:50 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:50 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:50 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:50 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:50 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:50 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:50 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:50 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:50 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:50 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:50 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:50 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:50 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:50 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:50 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:50 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 21:00:00 (before)
2025-06-28 00:00:00 (after)
13:21:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:51 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:51 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:51 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 16x19x22) for time after (2025-06-28 00:00:00)
13:21:51 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 21:00:00) in space (linearNDFast)
13:21:51 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:51 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 00:00:00) in space (linearNDFast)
13:21:51 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:51 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 21:00:00, weight 0.88) and
after (2025-06-28 00:00:00, weight 0.12) in time
13:21:51 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:51 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:51 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:51 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:51 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:51 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:51 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:51 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:51 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:51 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 21:00:00 (before)
2025-06-28 00:00:00 (after)
13:21:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:52 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:52 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:52 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-28 00:00:00)
13:21:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 21:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 00:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 21:00:00, weight 0.88) and
after (2025-06-28 00:00:00, weight 0.12) in time
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:52 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:52 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.472182 (min) 0.0779943 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.436636 (min) 0.0998638 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.91511 (min) 3.80709 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.85401 (min) -6.28304 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:52 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.199566, mean: 1.333676, max: 1.795000
13:21:52 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:52 DEBUG opendrift.models.physics_methods:878: min: 5.966803, mean: 6.288597, max: 7.298974
13:21:52 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.966803, mean: 6.288597, max: 7.298974
13:21:52 DEBUG opendrift:623: No elements hit coastline.
13:21:52 DEBUG opendrift:1626: No elements to deactivate
13:21:52 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:52 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:52 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:52 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:52 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:52 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:52 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:52 DEBUG opendrift.models.physics_methods:878: min: 5.966803, mean: 6.288598, max: 7.298975
13:21:52 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:52 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.020813, dN_50: 0.001633
13:21:52 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:52 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.026331964667984313
13:21:52 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:52 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:52 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:52 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 338 surface elements
13:21:52 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 337 surface elements
13:21:52 DEBUG opendrift.models.physics_methods:732: Advecting 351 of 6000 elements above 0.100m with wind-sheared ocean current (0.024309 m/s - 0.246885 m/s)
13:21:52 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:52 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007977319741265959 and 0.48456871195056234 m/s
13:21:52 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:52 DEBUG opendrift:2008: ======================================================================
13:21:52 INFO opendrift:2009: 2025-06-27 22:21:12.661168 - step 34 of 120 - 6000 active elements (0 deactivated)
13:21:52 DEBUG opendrift:2015: 0 elements scheduled.
13:21:52 DEBUG opendrift:2017: ======================================================================
13:21:52 DEBUG opendrift:2028: 34.553624746340255 <- latitude -> 35.03573040705015
13:21:52 DEBUG opendrift:2028: 22.81779020006349 <- longitude -> 23.405016639550222
13:21:52 DEBUG opendrift:2028: -123.11185741131948 <- z -> 0.0
13:21:52 DEBUG opendrift:2029: ---------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:52 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 21:00:00 (before)
2025-06-28 00:00:00 (after)
13:21:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 21:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 00:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 21:00:00, weight 0.55) and
after (2025-06-28 00:00:00, weight 0.45) in time
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 21:00:00 (before)
2025-06-28 00:00:00 (after)
13:21:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 21:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 00:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 21:00:00, weight 0.55) and
after (2025-06-28 00:00:00, weight 0.45) in time
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:52 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:52 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.448944 (min) 0.0619818 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.398774 (min) 0.0805656 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.87352 (min) 3.8267 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.75937 (min) -6.25275 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:52 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.171960, mean: 1.298873, max: 1.758536
13:21:52 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:52 DEBUG opendrift.models.physics_methods:878: min: 5.897745, mean: 6.205566, max: 7.224457
13:21:52 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.897745, mean: 6.205566, max: 7.224457
13:21:52 DEBUG opendrift:623: No elements hit coastline.
13:21:52 DEBUG opendrift:1626: No elements to deactivate
13:21:52 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:52 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:52 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:52 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:52 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:52 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:52 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:52 DEBUG opendrift.models.physics_methods:878: min: 5.897745, mean: 6.205566, max: 7.224456
13:21:52 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:52 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.022191, dN_50: 0.001742
13:21:52 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:52 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.025797132429804387
13:21:52 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:52 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:52 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:52 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 345 surface elements
13:21:52 DEBUG opendrift.models.physics_methods:732: Advecting 356 of 6000 elements above 0.100m with wind-sheared ocean current (0.012641 m/s - 0.246662 m/s)
13:21:52 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:52 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002567075905510685 and 0.44413591080152787 m/s
13:21:52 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:52 DEBUG opendrift:2008: ======================================================================
13:21:52 INFO opendrift:2009: 2025-06-27 23:21:12.661168 - step 35 of 120 - 6000 active elements (0 deactivated)
13:21:52 DEBUG opendrift:2015: 0 elements scheduled.
13:21:52 DEBUG opendrift:2017: ======================================================================
13:21:52 DEBUG opendrift:2028: 34.540239852449176 <- latitude -> 35.0303806284539
13:21:52 DEBUG opendrift:2028: 22.79840637452812 <- longitude -> 23.400017224309888
13:21:52 DEBUG opendrift:2028: -122.23548902993127 <- z -> 0.0
13:21:52 DEBUG opendrift:2029: ---------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:52 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 21:00:00 (before)
2025-06-28 00:00:00 (after)
13:21:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 21:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 00:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 21:00:00, weight 0.22) and
after (2025-06-28 00:00:00, weight 0.78) in time
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-27 21:00:00 (before)
2025-06-28 00:00:00 (after)
13:21:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-27 21:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 00:00:00) in space (linearNDFast)
13:21:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-27 21:00:00, weight 0.22) and
after (2025-06-28 00:00:00, weight 0.78) in time
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:52 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:52 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:52 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.427888 (min) 0.0551399 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.378082 (min) 0.135642 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.79089 (min) 3.87591 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.62919 (min) -6.1888 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:52 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:52 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.140854, mean: 1.269500, max: 1.702899
13:21:52 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:52 DEBUG opendrift.models.physics_methods:878: min: 5.818951, mean: 6.134408, max: 7.109254
13:21:52 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.818951, mean: 6.134408, max: 7.109254
13:21:52 DEBUG opendrift:623: No elements hit coastline.
13:21:52 DEBUG opendrift:1626: No elements to deactivate
13:21:52 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:52 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:52 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:52 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:52 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:52 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:52 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:52 DEBUG opendrift.models.physics_methods:878: min: 5.818951, mean: 6.134408, max: 7.109254
13:21:52 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:52 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.023641, dN_50: 0.001855
13:21:52 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:52 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0249810936302795
13:21:52 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:52 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:52 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:52 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 347 surface elements
13:21:52 DEBUG opendrift.models.physics_methods:732: Advecting 368 of 6000 elements above 0.100m with wind-sheared ocean current (0.067114 m/s - 0.249186 m/s)
13:21:52 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:52 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008915783567190878 and 0.4060011042431557 m/s
13:21:52 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:52 DEBUG opendrift:2008: ======================================================================
13:21:52 INFO opendrift:2009: 2025-06-28 00:21:12.661168 - step 36 of 120 - 6000 active elements (0 deactivated)
13:21:52 DEBUG opendrift:2015: 0 elements scheduled.
13:21:52 DEBUG opendrift:2017: ======================================================================
13:21:52 DEBUG opendrift:2028: 34.53200538515888 <- latitude -> 35.02512353130958
13:21:52 DEBUG opendrift:2028: 22.782493538862433 <- longitude -> 23.403047375620183
13:21:52 DEBUG opendrift:2028: -121.3157287497043 <- z -> 0.0
13:21:52 DEBUG opendrift:2029: ---------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:52 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 00:00:00 (before)
2025-06-28 03:00:00 (after)
13:21:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:53 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:53 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:53 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 17x20x22) for time after (2025-06-28 03:00:00)
13:21:53 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 00:00:00) in space (linearNDFast)
13:21:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:53 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 03:00:00) in space (linearNDFast)
13:21:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:53 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 00:00:00, weight 0.88) and
after (2025-06-28 03:00:00, weight 0.12) in time
13:21:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:53 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:53 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:53 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 00:00:00 (before)
2025-06-28 03:00:00 (after)
13:21:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:53 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:53 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:53 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-28 03:00:00)
13:21:53 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 00:00:00) in space (linearNDFast)
13:21:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:53 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 03:00:00) in space (linearNDFast)
13:21:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:53 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 00:00:00, weight 0.88) and
after (2025-06-28 03:00:00, weight 0.12) in time
13:21:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:53 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:53 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:53 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:53 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:53 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:53 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:53 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:53 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.420665 (min) 0.0820006 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.395316 (min) 0.191537 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.65756 (min) 3.87008 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.62335 (min) -6.14078 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:53 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.101385, mean: 1.243451, max: 1.717970
13:21:53 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:53 DEBUG opendrift.models.physics_methods:878: min: 5.717409, mean: 6.070810, max: 7.140644
13:21:53 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.717409, mean: 6.070810, max: 7.140644
13:21:53 DEBUG opendrift:623: No elements hit coastline.
13:21:53 DEBUG opendrift:1626: No elements to deactivate
13:21:53 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:53 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:53 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:53 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:53 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:53 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:53 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:53 DEBUG opendrift.models.physics_methods:878: min: 5.717409, mean: 6.070810, max: 7.140644
13:21:53 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:53 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.025184, dN_50: 0.001976
13:21:53 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:53 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02520214438925302
13:21:53 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:53 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:53 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:53 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 366 surface elements
13:21:53 DEBUG opendrift.models.physics_methods:732: Advecting 376 of 6000 elements above 0.100m with wind-sheared ocean current (0.010453 m/s - 0.250704 m/s)
13:21:53 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:53 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.000405149155725514 and 0.41535526429447667 m/s
13:21:53 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:53 DEBUG opendrift:2008: ======================================================================
13:21:53 INFO opendrift:2009: 2025-06-28 01:21:12.661168 - step 37 of 120 - 6000 active elements (0 deactivated)
13:21:53 DEBUG opendrift:2015: 0 elements scheduled.
13:21:53 DEBUG opendrift:2017: ======================================================================
13:21:53 DEBUG opendrift:2028: 34.52476927218599 <- latitude -> 35.018264445846896
13:21:53 DEBUG opendrift:2028: 22.765336931956565 <- longitude -> 23.402811090299117
13:21:53 DEBUG opendrift:2028: -120.1762007755021 <- z -> 0.0
13:21:53 DEBUG opendrift:2029: ---------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:53 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:53 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:53 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:53 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:53 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:53 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:53 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:53 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:53 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
13:21:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 00:00:00 (before)
2025-06-28 03:00:00 (after)
13:21:53 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 00:00:00) in space (linearNDFast)
13:21:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:53 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 03:00:00) in space (linearNDFast)
13:21:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:53 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 00:00:00, weight 0.55) and
after (2025-06-28 03:00:00, weight 0.45) in time
13:21:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:53 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:53 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:53 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 00:00:00 (before)
2025-06-28 03:00:00 (after)
13:21:53 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 00:00:00) in space (linearNDFast)
13:21:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:53 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 03:00:00) in space (linearNDFast)
13:21:53 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:53 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 00:00:00, weight 0.55) and
after (2025-06-28 03:00:00, weight 0.45) in time
13:21:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:53 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:53 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:53 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:53 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:53 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:53 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:53 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:53 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:53 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.399366 (min) 0.15828 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.420121 (min) 0.165004 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.44145 (min) 3.82416 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.52364 (min) -6.18443 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:53 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:53 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.093050, mean: 1.216779, max: 1.652349
13:21:53 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:53 DEBUG opendrift.models.physics_methods:878: min: 5.695733, mean: 6.005745, max: 7.002941
13:21:53 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.695733, mean: 6.005745, max: 7.002941
13:21:53 DEBUG opendrift:623: No elements hit coastline.
13:21:53 DEBUG opendrift:1626: No elements to deactivate
13:21:53 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:53 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:53 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:53 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:53 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:53 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:53 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:53 DEBUG opendrift.models.physics_methods:878: min: 5.695734, mean: 6.005745, max: 7.002941
13:21:53 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:53 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.026855, dN_50: 0.002108
13:21:53 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:53 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.024239660365346968
13:21:53 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:53 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:53 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:53 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 370 surface elements
13:21:53 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 372 surface elements
13:21:54 DEBUG opendrift.models.physics_methods:732: Advecting 381 of 6000 elements above 0.100m with wind-sheared ocean current (0.003200 m/s - 0.245869 m/s)
13:21:54 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:54 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00198047339323146 and 0.4253184457134359 m/s
13:21:54 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:54 DEBUG opendrift:2008: ======================================================================
13:21:54 INFO opendrift:2009: 2025-06-28 02:21:12.661168 - step 38 of 120 - 6000 active elements (0 deactivated)
13:21:54 DEBUG opendrift:2015: 0 elements scheduled.
13:21:54 DEBUG opendrift:2017: ======================================================================
13:21:54 DEBUG opendrift:2028: 34.51195589477553 <- latitude -> 35.02218690458575
13:21:54 DEBUG opendrift:2028: 22.752603465775678 <- longitude -> 23.404190497430672
13:21:54 DEBUG opendrift:2028: -118.92126362793101 <- z -> 0.0
13:21:54 DEBUG opendrift:2029: ---------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:54 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:54 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:54 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:54 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:54 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:54 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:54 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:54 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:54 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:54 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:54 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:54 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:54 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 00:00:00 (before)
2025-06-28 03:00:00 (after)
13:21:54 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 00:00:00) in space (linearNDFast)
13:21:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:54 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 03:00:00) in space (linearNDFast)
13:21:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:54 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 00:00:00, weight 0.22) and
after (2025-06-28 03:00:00, weight 0.78) in time
13:21:54 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:54 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:54 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:54 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:54 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 00:00:00 (before)
2025-06-28 03:00:00 (after)
13:21:54 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 00:00:00) in space (linearNDFast)
13:21:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:54 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 03:00:00) in space (linearNDFast)
13:21:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:54 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 00:00:00, weight 0.22) and
after (2025-06-28 03:00:00, weight 0.78) in time
13:21:54 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:54 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:54 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:54 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:54 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:54 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:54 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:54 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:54 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.410925 (min) 0.181183 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.414733 (min) 0.170343 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.13634 (min) 3.92769 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.47 (min) -6.22124 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:54 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:54 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.093157, mean: 1.190468, max: 1.589209
13:21:54 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:54 DEBUG opendrift.models.physics_methods:878: min: 5.696010, mean: 5.940867, max: 6.867838
13:21:54 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.696010, mean: 5.940867, max: 6.867838
13:21:54 DEBUG opendrift:623: No elements hit coastline.
13:21:54 DEBUG opendrift:1626: No elements to deactivate
13:21:54 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:54 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:54 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:54 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:54 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:54 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:54 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:54 DEBUG opendrift.models.physics_methods:878: min: 5.696011, mean: 5.940867, max: 6.867838
13:21:54 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:54 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.028639, dN_50: 0.002248
13:21:54 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:54 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.023313564211698827
13:21:54 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:54 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:54 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:54 DEBUG opendrift.models.physics_methods:732: Advecting 389 of 6000 elements above 0.100m with wind-sheared ocean current (0.032418 m/s - 0.241126 m/s)
13:21:54 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:54 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006931579280825805 and 0.4368256885859911 m/s
13:21:54 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:54 DEBUG opendrift:2008: ======================================================================
13:21:54 INFO opendrift:2009: 2025-06-28 03:21:12.661168 - step 39 of 120 - 6000 active elements (0 deactivated)
13:21:54 DEBUG opendrift:2015: 0 elements scheduled.
13:21:54 DEBUG opendrift:2017: ======================================================================
13:21:54 DEBUG opendrift:2028: 34.496708300981744 <- latitude -> 35.01568796251929
13:21:54 DEBUG opendrift:2028: 22.740393811271833 <- longitude -> 23.408698844151182
13:21:54 DEBUG opendrift:2028: -117.72128599180465 <- z -> 0.0
13:21:54 DEBUG opendrift:2029: ---------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:54 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:54 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:54 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:54 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:54 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:54 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:54 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:54 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:54 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:54 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:54 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:54 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:54 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 03:00:00 (before)
2025-06-28 06:00:00 (after)
13:21:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:54 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:54 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:54 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 17x21x22) for time after (2025-06-28 06:00:00)
13:21:54 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 03:00:00) in space (linearNDFast)
13:21:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:54 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 06:00:00) in space (linearNDFast)
13:21:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:54 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 03:00:00, weight 0.88) and
after (2025-06-28 06:00:00, weight 0.12) in time
13:21:54 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:54 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:54 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:54 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:54 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:54 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:54 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 03:00:00 (before)
2025-06-28 06:00:00 (after)
13:21:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:55 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:55 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:55 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x8x1) for time after (2025-06-28 06:00:00)
13:21:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 03:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 06:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 03:00:00, weight 0.88) and
after (2025-06-28 06:00:00, weight 0.12) in time
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:55 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:55 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.406536 (min) 0.221563 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.424389 (min) 0.110504 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.03849 (min) 3.94891 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.47407 (min) -6.21837 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:55 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.095203, mean: 1.185678, max: 1.562200
13:21:55 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:55 DEBUG opendrift.models.physics_methods:878: min: 5.701340, mean: 5.929146, max: 6.809230
13:21:55 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.701340, mean: 5.929146, max: 6.809230
13:21:55 DEBUG opendrift:623: No elements hit coastline.
13:21:55 DEBUG opendrift:1626: No elements to deactivate
13:21:55 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:55 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:55 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:55 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:55 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:55 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:55 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:55 DEBUG opendrift.models.physics_methods:878: min: 5.701340, mean: 5.929146, max: 6.809229
13:21:55 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:55 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.030363, dN_50: 0.002383
13:21:55 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:55 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.022917426133782056
13:21:55 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:55 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:55 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:55 DEBUG opendrift.models.physics_methods:732: Advecting 395 of 6000 elements above 0.100m with wind-sheared ocean current (0.027407 m/s - 0.238872 m/s)
13:21:55 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:55 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00032499714442314347 and 0.4153732403699575 m/s
13:21:55 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:55 DEBUG opendrift:2008: ======================================================================
13:21:55 INFO opendrift:2009: 2025-06-28 04:21:12.661168 - step 40 of 120 - 6000 active elements (0 deactivated)
13:21:55 DEBUG opendrift:2015: 0 elements scheduled.
13:21:55 DEBUG opendrift:2017: ======================================================================
13:21:55 DEBUG opendrift:2028: 34.49074087779882 <- latitude -> 35.015600416228466
13:21:55 DEBUG opendrift:2028: 22.729691758752683 <- longitude -> 23.425892553037762
13:21:55 DEBUG opendrift:2028: -116.86467260357908 <- z -> 0.0
13:21:55 DEBUG opendrift:2029: ---------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:55 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:55 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:55 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 03:00:00 (before)
2025-06-28 06:00:00 (after)
13:21:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 03:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 06:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 03:00:00, weight 0.55) and
after (2025-06-28 06:00:00, weight 0.45) in time
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 03:00:00 (before)
2025-06-28 06:00:00 (after)
13:21:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 03:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 06:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 03:00:00, weight 0.55) and
after (2025-06-28 06:00:00, weight 0.45) in time
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:55 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:55 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.417606 (min) 0.203145 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.436543 (min) 0.0771721 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.17698 (min) 3.72355 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.57749 (min) -6.20129 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:55 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.124473, mean: 1.219041, max: 1.604182
13:21:55 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:55 DEBUG opendrift.models.physics_methods:878: min: 5.777023, mean: 6.011919, max: 6.900117
13:21:55 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.777023, mean: 6.011919, max: 6.900117
13:21:55 DEBUG opendrift:623: No elements hit coastline.
13:21:55 DEBUG opendrift:1626: No elements to deactivate
13:21:55 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:55 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:55 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:55 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:55 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:55 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:55 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:55 DEBUG opendrift.models.physics_methods:878: min: 5.777023, mean: 6.011919, max: 6.900117
13:21:55 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:55 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.031852, dN_50: 0.002500
13:21:55 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:55 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02353318885948939
13:21:55 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:55 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:55 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:55 DEBUG opendrift.models.physics_methods:732: Advecting 400 of 6000 elements above 0.100m with wind-sheared ocean current (0.022548 m/s - 0.242259 m/s)
13:21:55 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:55 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005917362567909385 and 0.4374578012433827 m/s
13:21:55 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:55 DEBUG opendrift:2008: ======================================================================
13:21:55 INFO opendrift:2009: 2025-06-28 05:21:12.661168 - step 41 of 120 - 6000 active elements (0 deactivated)
13:21:55 DEBUG opendrift:2015: 0 elements scheduled.
13:21:55 DEBUG opendrift:2017: ======================================================================
13:21:55 DEBUG opendrift:2028: 34.481141341197436 <- latitude -> 35.00756170039624
13:21:55 DEBUG opendrift:2028: 22.723878137825714 <- longitude -> 23.433850791454258
13:21:55 DEBUG opendrift:2028: -116.34650705086013 <- z -> 0.0
13:21:55 DEBUG opendrift:2029: ---------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:55 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:55 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:55 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 03:00:00 (before)
2025-06-28 06:00:00 (after)
13:21:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 03:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 06:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 03:00:00, weight 0.22) and
after (2025-06-28 06:00:00, weight 0.78) in time
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 03:00:00 (before)
2025-06-28 06:00:00 (after)
13:21:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 03:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 06:00:00) in space (linearNDFast)
13:21:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 03:00:00, weight 0.22) and
after (2025-06-28 06:00:00, weight 0.78) in time
13:21:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:55 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:55 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:55 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:55 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:55 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.414779 (min) 0.202464 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.439808 (min) 0.0326108 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.34434 (min) 3.54336 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.70047 (min) -6.18452 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:55 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:55 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.147800, mean: 1.251201, max: 1.665272
13:21:55 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:55 DEBUG opendrift.models.physics_methods:878: min: 5.836637, mean: 6.090601, max: 7.030273
13:21:55 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.836637, mean: 6.090601, max: 7.030273
13:21:55 DEBUG opendrift:623: No elements hit coastline.
13:21:55 DEBUG opendrift:1626: No elements to deactivate
13:21:55 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:55 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:55 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:55 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:55 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:55 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:55 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:55 DEBUG opendrift.models.physics_methods:878: min: 5.836637, mean: 6.090601, max: 7.030273
13:21:55 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:55 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.033428, dN_50: 0.002623
13:21:55 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:55 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.024429209756162903
13:21:55 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:55 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:55 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:56 DEBUG opendrift.models.physics_methods:732: Advecting 404 of 6000 elements above 0.100m with wind-sheared ocean current (0.131605 m/s - 0.246829 m/s)
13:21:56 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:56 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002004250462734913 and 0.4284673948593973 m/s
13:21:56 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:56 DEBUG opendrift:2008: ======================================================================
13:21:56 INFO opendrift:2009: 2025-06-28 06:21:12.661168 - step 42 of 120 - 6000 active elements (0 deactivated)
13:21:56 DEBUG opendrift:2015: 0 elements scheduled.
13:21:56 DEBUG opendrift:2017: ======================================================================
13:21:56 DEBUG opendrift:2028: 34.47083588756883 <- latitude -> 34.99907518037148
13:21:56 DEBUG opendrift:2028: 22.71250851811816 <- longitude -> 23.440777233352435
13:21:56 DEBUG opendrift:2028: -115.17319228481931 <- z -> 0.0
13:21:56 DEBUG opendrift:2029: ---------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:56 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 06:00:00 (before)
2025-06-28 09:00:00 (after)
13:21:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:56 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 18x21x22) for time after (2025-06-28 09:00:00)
13:21:56 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 06:00:00) in space (linearNDFast)
13:21:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:56 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 09:00:00) in space (linearNDFast)
13:21:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:56 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 06:00:00, weight 0.88) and
after (2025-06-28 09:00:00, weight 0.12) in time
13:21:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 06:00:00 (before)
2025-06-28 09:00:00 (after)
13:21:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:56 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-28 09:00:00)
13:21:56 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 06:00:00) in space (linearNDFast)
13:21:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:56 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 09:00:00) in space (linearNDFast)
13:21:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:56 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 06:00:00, weight 0.88) and
after (2025-06-28 09:00:00, weight 0.12) in time
13:21:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:56 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:56 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:56 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:56 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.452122 (min) 0.190191 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.445773 (min) 0.047957 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: x_wind: 2.12645 (min) 3.43111 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.82722 (min) -6.2634 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:56 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.159030, mean: 1.316731, max: 1.695949
13:21:56 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:56 DEBUG opendrift.models.physics_methods:878: min: 5.865119, mean: 6.248703, max: 7.094731
13:21:56 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.865119, mean: 6.248703, max: 7.094731
13:21:56 DEBUG opendrift:623: No elements hit coastline.
13:21:56 DEBUG opendrift:1626: No elements to deactivate
13:21:56 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:56 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:56 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:56 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:56 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:56 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:56 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:56 DEBUG opendrift.models.physics_methods:878: min: 5.865119, mean: 6.248703, max: 7.094731
13:21:56 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:56 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.034817, dN_50: 0.002732
13:21:56 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:56 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.024879154004212523
13:21:56 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:56 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:56 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:56 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 405 surface elements
13:21:56 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 406 surface elements
13:21:56 DEBUG opendrift.models.physics_methods:732: Advecting 424 of 6000 elements above 0.100m with wind-sheared ocean current (0.013273 m/s - 0.249092 m/s)
13:21:56 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:56 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016711839241778858 and 0.42766584346412556 m/s
13:21:56 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:56 DEBUG opendrift:2008: ======================================================================
13:21:56 INFO opendrift:2009: 2025-06-28 07:21:12.661168 - step 43 of 120 - 6000 active elements (0 deactivated)
13:21:56 DEBUG opendrift:2015: 0 elements scheduled.
13:21:56 DEBUG opendrift:2017: ======================================================================
13:21:56 DEBUG opendrift:2028: 34.46030455331078 <- latitude -> 34.99413053116931
13:21:56 DEBUG opendrift:2028: 22.70244193892341 <- longitude -> 23.4460342666862
13:21:56 DEBUG opendrift:2028: -114.39883115535008 <- z -> 0.0
13:21:56 DEBUG opendrift:2029: ---------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:56 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 06:00:00 (before)
2025-06-28 09:00:00 (after)
13:21:56 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 06:00:00) in space (linearNDFast)
13:21:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:56 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 09:00:00) in space (linearNDFast)
13:21:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:56 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 06:00:00, weight 0.55) and
after (2025-06-28 09:00:00, weight 0.45) in time
13:21:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 06:00:00 (before)
2025-06-28 09:00:00 (after)
13:21:56 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 06:00:00) in space (linearNDFast)
13:21:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:56 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 09:00:00) in space (linearNDFast)
13:21:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:56 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 06:00:00, weight 0.55) and
after (2025-06-28 09:00:00, weight 0.45) in time
13:21:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:56 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:56 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:56 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:56 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:56 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.455784 (min) 0.167724 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.421815 (min) 0.072298 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.26821 (min) 3.43622 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.99541 (min) -6.58725 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:56 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:56 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.219661, mean: 1.467027, max: 1.777926
13:21:56 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:56 DEBUG opendrift.models.physics_methods:878: min: 6.016572, mean: 6.596863, max: 7.264176
13:21:56 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.016572, mean: 6.596863, max: 7.264176
13:21:56 DEBUG opendrift:623: No elements hit coastline.
13:21:56 DEBUG opendrift:1626: No elements to deactivate
13:21:56 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:56 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:56 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:56 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:56 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:56 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:56 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:56 DEBUG opendrift.models.physics_methods:878: min: 6.016572, mean: 6.596863, max: 7.264176
13:21:56 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:56 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.035661, dN_50: 0.002799
13:21:56 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:56 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02608152614692041
13:21:56 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:56 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:56 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:57 DEBUG opendrift.models.physics_methods:732: Advecting 429 of 6000 elements above 0.100m with wind-sheared ocean current (0.060298 m/s - 0.255041 m/s)
13:21:57 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:57 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014411247040008923 and 0.44025488676538854 m/s
13:21:57 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:57 DEBUG opendrift:2008: ======================================================================
13:21:57 INFO opendrift:2009: 2025-06-28 08:21:12.661168 - step 44 of 120 - 6000 active elements (0 deactivated)
13:21:57 DEBUG opendrift:2015: 0 elements scheduled.
13:21:57 DEBUG opendrift:2017: ======================================================================
13:21:57 DEBUG opendrift:2028: 34.45046285138574 <- latitude -> 34.994852815018525
13:21:57 DEBUG opendrift:2028: 22.68533902336566 <- longitude -> 23.457709857826195
13:21:57 DEBUG opendrift:2028: -113.45006980375119 <- z -> 0.0
13:21:57 DEBUG opendrift:2029: ---------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 06:00:00 (before)
2025-06-28 09:00:00 (after)
13:21:57 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 06:00:00) in space (linearNDFast)
13:21:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:57 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 09:00:00) in space (linearNDFast)
13:21:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:57 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 06:00:00, weight 0.22) and
after (2025-06-28 09:00:00, weight 0.78) in time
13:21:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 06:00:00 (before)
2025-06-28 09:00:00 (after)
13:21:57 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 06:00:00) in space (linearNDFast)
13:21:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:57 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 09:00:00) in space (linearNDFast)
13:21:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:57 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 06:00:00, weight 0.22) and
after (2025-06-28 09:00:00, weight 0.78) in time
13:21:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:57 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:57 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:57 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:57 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.476045 (min) 0.186493 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.422078 (min) 0.102767 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.363529 (min) 3.40321 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.56056 (min) -6.41996 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:57 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:57 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.136472, mean: 1.645549, max: 1.974516
13:21:57 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:57 DEBUG opendrift.models.physics_methods:878: min: 5.807763, mean: 6.986002, max: 7.655259
13:21:57 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.807763, mean: 6.986002, max: 7.655259
13:21:57 DEBUG opendrift:623: No elements hit coastline.
13:21:57 DEBUG opendrift:1626: No elements to deactivate
13:21:57 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:57 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:57 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:57 DEBUG opendrift.models.physics_methods:878: min: 5.807763, mean: 6.986002, max: 7.655259
13:21:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.036453, dN_50: 0.002861
13:21:57 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:57 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0289649695946212
13:21:57 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:57 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:57 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:57 DEBUG opendrift.models.physics_methods:732: Advecting 443 of 6000 elements above 0.100m with wind-sheared ocean current (0.000734 m/s - 0.268772 m/s)
13:21:57 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:57 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0034389697181324633 and 0.49505959476960526 m/s
13:21:57 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:57 DEBUG opendrift:2008: ======================================================================
13:21:57 INFO opendrift:2009: 2025-06-28 09:21:12.661168 - step 45 of 120 - 6000 active elements (0 deactivated)
13:21:57 DEBUG opendrift:2015: 0 elements scheduled.
13:21:57 DEBUG opendrift:2017: ======================================================================
13:21:57 DEBUG opendrift:2028: 34.437050387284096 <- latitude -> 34.997822627840314
13:21:57 DEBUG opendrift:2028: 22.659935847590283 <- longitude -> 23.4664945470053
13:21:57 DEBUG opendrift:2028: -112.72514726258224 <- z -> 0.0
13:21:57 DEBUG opendrift:2029: ---------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 09:00:00 (before)
2025-06-28 12:00:00 (after)
13:21:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:21:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:21:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:21:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:21:59 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 19x22x22) for time after (2025-06-28 12:00:00)
13:21:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 09:00:00) in space (linearNDFast)
13:21:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:59 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 12:00:00) in space (linearNDFast)
13:21:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:59 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 09:00:00, weight 0.88) and
after (2025-06-28 12:00:00, weight 0.12) in time
13:21:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 09:00:00 (before)
2025-06-28 12:00:00 (after)
13:21:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:21:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:21:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:21:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:21:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:21:59 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-28 12:00:00)
13:21:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 09:00:00) in space (linearNDFast)
13:21:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:59 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 12:00:00) in space (linearNDFast)
13:21:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:59 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 09:00:00, weight 0.88) and
after (2025-06-28 12:00:00, weight 0.12) in time
13:21:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:59 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:59 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:59 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:59 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.48164 (min) 0.191674 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.419813 (min) 0.163418 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.228184 (min) 3.23688 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.08687 (min) -6.15082 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:59 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.017023, mean: 1.807540, max: 2.175958
13:21:59 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:59 DEBUG opendrift.models.physics_methods:878: min: 5.494081, mean: 7.319788, max: 8.036276
13:21:59 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.494081, mean: 7.319788, max: 8.036276
13:21:59 DEBUG opendrift:623: No elements hit coastline.
13:21:59 DEBUG opendrift:1626: No elements to deactivate
13:21:59 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:59 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:59 DEBUG opendrift.models.physics_methods:878: min: 5.494081, mean: 7.319788, max: 8.036276
13:21:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.037433, dN_50: 0.002938
13:21:59 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:59 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.031919584628107914
13:21:59 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:59 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:59 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:21:59 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 432 surface elements
13:21:59 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 437 surface elements
13:21:59 DEBUG opendrift.models.physics_methods:732: Advecting 451 of 6000 elements above 0.100m with wind-sheared ocean current (0.011444 m/s - 0.282149 m/s)
13:21:59 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:21:59 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002601517935981399 and 0.441541911578586 m/s
13:21:59 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:21:59 DEBUG opendrift:2008: ======================================================================
13:21:59 INFO opendrift:2009: 2025-06-28 10:21:12.661168 - step 46 of 120 - 6000 active elements (0 deactivated)
13:21:59 DEBUG opendrift:2015: 0 elements scheduled.
13:21:59 DEBUG opendrift:2017: ======================================================================
13:21:59 DEBUG opendrift:2028: 34.42975300961895 <- latitude -> 34.99633783555559
13:21:59 DEBUG opendrift:2028: 22.647857132639263 <- longitude -> 23.470107983334948
13:21:59 DEBUG opendrift:2028: -111.498656390572 <- z -> 0.0
13:21:59 DEBUG opendrift:2029: ---------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:21:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:21:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:21:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:21:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:21:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:21:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:21:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:21:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:21:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:21:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:21:59 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
13:21:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 09:00:00 (before)
2025-06-28 12:00:00 (after)
13:21:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 09:00:00) in space (linearNDFast)
13:21:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:59 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 12:00:00) in space (linearNDFast)
13:21:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:59 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 09:00:00, weight 0.55) and
after (2025-06-28 12:00:00, weight 0.45) in time
13:21:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:21:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:21:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:21:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:21:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 09:00:00 (before)
2025-06-28 12:00:00 (after)
13:21:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 09:00:00) in space (linearNDFast)
13:21:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:59 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 12:00:00) in space (linearNDFast)
13:21:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:21:59 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 09:00:00, weight 0.55) and
after (2025-06-28 12:00:00, weight 0.45) in time
13:21:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:21:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:21:59 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:21:59 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:21:59 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:21:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:21:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:21:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:21:59 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:21:59 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.465558 (min) 0.153905 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.429199 (min) 0.177792 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.300669 (min) 2.72451 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.49397 (min) -6.46245 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:21:59 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:21:59 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.088795, mean: 1.906379, max: 2.382161
13:21:59 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:21:59 DEBUG opendrift.models.physics_methods:878: min: 5.684635, mean: 7.515805, max: 8.408434
13:21:59 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.684635, mean: 7.515805, max: 8.408434
13:21:59 DEBUG opendrift:623: No elements hit coastline.
13:21:59 DEBUG opendrift:1626: No elements to deactivate
13:21:59 DEBUG opendrift:2063: Calling OpenOil.update()
13:21:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:21:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:21:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:21:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:21:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:21:59 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:21:59 DEBUG opendrift.models.physics_methods:878: min: 5.684635, mean: 7.515805, max: 8.408435
13:21:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:21:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.038795, dN_50: 0.003045
13:21:59 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:21:59 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0349440156484934
13:21:59 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:21:59 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:21:59 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:00 DEBUG opendrift.models.physics_methods:732: Advecting 462 of 6000 elements above 0.100m with wind-sheared ocean current (0.016325 m/s - 0.295216 m/s)
13:22:00 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:00 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003459391908803382 and 0.4316365134811171 m/s
13:22:00 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:00 DEBUG opendrift:2008: ======================================================================
13:22:00 INFO opendrift:2009: 2025-06-28 11:21:12.661168 - step 47 of 120 - 6000 active elements (0 deactivated)
13:22:00 DEBUG opendrift:2015: 0 elements scheduled.
13:22:00 DEBUG opendrift:2017: ======================================================================
13:22:00 DEBUG opendrift:2028: 34.41418608365532 <- latitude -> 34.994684289476446
13:22:00 DEBUG opendrift:2028: 22.628574010922627 <- longitude -> 23.477595597561365
13:22:00 DEBUG opendrift:2028: -111.25257708650318 <- z -> 0.0
13:22:00 DEBUG opendrift:2029: ---------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 09:00:00 (before)
2025-06-28 12:00:00 (after)
13:22:00 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 09:00:00) in space (linearNDFast)
13:22:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:00 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 12:00:00) in space (linearNDFast)
13:22:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:00 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 09:00:00, weight 0.22) and
after (2025-06-28 12:00:00, weight 0.78) in time
13:22:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 09:00:00 (before)
2025-06-28 12:00:00 (after)
13:22:00 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 09:00:00) in space (linearNDFast)
13:22:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:00 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 12:00:00) in space (linearNDFast)
13:22:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:00 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 09:00:00, weight 0.22) and
after (2025-06-28 12:00:00, weight 0.78) in time
13:22:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:00 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:00 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:00 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:00 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.429392 (min) 0.153231 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.466187 (min) 0.138901 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.466984 (min) 2.23699 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.1373 (min) -6.71563 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:00 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.152852, mean: 2.012225, max: 2.632216
13:22:00 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:00 DEBUG opendrift.models.physics_methods:878: min: 5.849467, mean: 7.719662, max: 8.838739
13:22:00 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.849467, mean: 7.719662, max: 8.838739
13:22:00 DEBUG opendrift:623: No elements hit coastline.
13:22:00 DEBUG opendrift:1626: No elements to deactivate
13:22:00 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:00 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:00 DEBUG opendrift.models.physics_methods:878: min: 5.849467, mean: 7.719662, max: 8.838739
13:22:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.040176, dN_50: 0.003153
13:22:00 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:00 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03861163515204541
13:22:00 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:00 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:00 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:00 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 450 surface elements
13:22:00 DEBUG opendrift.models.physics_methods:732: Advecting 463 of 6000 elements above 0.100m with wind-sheared ocean current (0.078641 m/s - 0.310323 m/s)
13:22:00 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:00 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003153510652613518 and 0.47529544875288304 m/s
13:22:00 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:00 DEBUG opendrift:2008: ======================================================================
13:22:00 INFO opendrift:2009: 2025-06-28 12:21:12.661168 - step 48 of 120 - 6000 active elements (0 deactivated)
13:22:00 DEBUG opendrift:2015: 0 elements scheduled.
13:22:00 DEBUG opendrift:2017: ======================================================================
13:22:00 DEBUG opendrift:2028: 34.394038870318845 <- latitude -> 34.99041636927783
13:22:00 DEBUG opendrift:2028: 22.609593913705325 <- longitude -> 23.474633800654356
13:22:00 DEBUG opendrift:2028: -110.32251595993688 <- z -> 0.0
13:22:00 DEBUG opendrift:2029: ---------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 12:00:00 (before)
2025-06-28 15:00:00 (after)
13:22:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:00 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 20x23x22) for time after (2025-06-28 15:00:00)
13:22:00 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 12:00:00) in space (linearNDFast)
13:22:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:00 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 15:00:00) in space (linearNDFast)
13:22:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:00 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 12:00:00, weight 0.88) and
after (2025-06-28 15:00:00, weight 0.12) in time
13:22:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 12:00:00 (before)
2025-06-28 15:00:00 (after)
13:22:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:00 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:00 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:00 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-28 15:00:00)
13:22:00 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 12:00:00) in space (linearNDFast)
13:22:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:00 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 15:00:00) in space (linearNDFast)
13:22:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:00 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 12:00:00, weight 0.88) and
after (2025-06-28 15:00:00, weight 0.12) in time
13:22:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:00 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:00 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:00 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:00 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:00 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.416881 (min) 0.213223 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.453303 (min) 0.0973793 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.459137 (min) 1.99001 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.5811 (min) -6.70688 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:00 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:00 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.143536, mean: 2.119934, max: 2.830200
13:22:00 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:00 DEBUG opendrift.models.physics_methods:878: min: 5.825785, mean: 7.921880, max: 9.165120
13:22:00 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.825785, mean: 7.921880, max: 9.165120
13:22:00 DEBUG opendrift:623: No elements hit coastline.
13:22:01 DEBUG opendrift:1626: No elements to deactivate
13:22:01 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:01 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:01 DEBUG opendrift.models.physics_methods:878: min: 5.825785, mean: 7.921880, max: 9.165120
13:22:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.041634, dN_50: 0.003267
13:22:01 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:01 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.041515532453956186
13:22:01 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:01 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:01 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:01 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 459 surface elements
13:22:01 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 458 surface elements
13:22:01 DEBUG opendrift.models.physics_methods:732: Advecting 471 of 6000 elements above 0.100m with wind-sheared ocean current (0.096988 m/s - 0.321782 m/s)
13:22:01 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:01 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008930842485653493 and 0.4569051412113533 m/s
13:22:01 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:01 DEBUG opendrift:2008: ======================================================================
13:22:01 INFO opendrift:2009: 2025-06-28 13:21:12.661168 - step 49 of 120 - 6000 active elements (0 deactivated)
13:22:01 DEBUG opendrift:2015: 0 elements scheduled.
13:22:01 DEBUG opendrift:2017: ======================================================================
13:22:01 DEBUG opendrift:2028: 34.38047901794543 <- latitude -> 34.98928435613705
13:22:01 DEBUG opendrift:2028: 22.590957681704893 <- longitude -> 23.48160740923653
13:22:01 DEBUG opendrift:2028: -109.35171489615368 <- z -> 0.0
13:22:01 DEBUG opendrift:2029: ---------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:01 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:01 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:01 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:01 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:01 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:01 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:01 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:01 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:01 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:01 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 12:00:00 (before)
2025-06-28 15:00:00 (after)
13:22:01 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 12:00:00) in space (linearNDFast)
13:22:01 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:01 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 15:00:00) in space (linearNDFast)
13:22:01 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:01 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 12:00:00, weight 0.55) and
after (2025-06-28 15:00:00, weight 0.45) in time
13:22:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:01 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:01 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:01 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:01 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:01 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
13:22:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:01 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 12:00:00 (before)
2025-06-28 15:00:00 (after)
13:22:01 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 12:00:00) in space (linearNDFast)
13:22:01 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:01 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 15:00:00) in space (linearNDFast)
13:22:01 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:01 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 12:00:00, weight 0.55) and
after (2025-06-28 15:00:00, weight 0.45) in time
13:22:01 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:01 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:01 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:01 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:01 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:01 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:01 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:01 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:01 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:01 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.396324 (min) 0.230803 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.416142 (min) 0.0333313 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.110773 (min) 2.29748 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.6497 (min) -6.06136 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:01 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:01 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.943043, mean: 2.220612, max: 2.908922
13:22:01 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:01 DEBUG opendrift.models.physics_methods:878: min: 5.290483, mean: 8.106984, max: 9.291710
13:22:01 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.290483, mean: 8.106984, max: 9.291710
13:22:01 DEBUG opendrift:623: No elements hit coastline.
13:22:01 DEBUG opendrift:1626: No elements to deactivate
13:22:01 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:01 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:01 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:01 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:01 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:01 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:01 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:01 DEBUG opendrift.models.physics_methods:878: min: 5.290483, mean: 8.106984, max: 9.291710
13:22:01 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:01 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.043267, dN_50: 0.003396
13:22:02 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:02 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.04267017129800872
13:22:02 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:02 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:02 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:02 DEBUG opendrift.models.physics_methods:732: Advecting 492 of 6000 elements above 0.100m with wind-sheared ocean current (0.002305 m/s - 0.326227 m/s)
13:22:02 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:02 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0001738631196887618 and 0.46990694186807197 m/s
13:22:02 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:02 DEBUG opendrift:2008: ======================================================================
13:22:02 INFO opendrift:2009: 2025-06-28 14:21:12.661168 - step 50 of 120 - 6000 active elements (0 deactivated)
13:22:02 DEBUG opendrift:2015: 0 elements scheduled.
13:22:02 DEBUG opendrift:2017: ======================================================================
13:22:02 DEBUG opendrift:2028: 34.362520017569906 <- latitude -> 34.98731790608839
13:22:02 DEBUG opendrift:2028: 22.582408171666092 <- longitude -> 23.48937633289397
13:22:02 DEBUG opendrift:2028: -108.29008175255787 <- z -> 0.0
13:22:02 DEBUG opendrift:2029: ---------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 12:00:00 (before)
2025-06-28 15:00:00 (after)
13:22:02 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 12:00:00) in space (linearNDFast)
13:22:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:02 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 15:00:00) in space (linearNDFast)
13:22:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:02 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 12:00:00, weight 0.22) and
after (2025-06-28 15:00:00, weight 0.78) in time
13:22:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 12:00:00 (before)
2025-06-28 15:00:00 (after)
13:22:02 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 12:00:00) in space (linearNDFast)
13:22:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:02 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 15:00:00) in space (linearNDFast)
13:22:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:02 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 12:00:00, weight 0.22) and
after (2025-06-28 15:00:00, weight 0.78) in time
13:22:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:02 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:02 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:02 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:02 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.374002 (min) 0.320718 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.491252 (min) -0.018734 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.235272 (min) 2.72083 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.7393 (min) -5.42734 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:02 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:02 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.763577, mean: 2.324468, max: 3.012862
13:22:02 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:02 DEBUG opendrift.models.physics_methods:878: min: 4.760537, mean: 8.292744, max: 9.456255
13:22:02 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.760537, mean: 8.292744, max: 9.456255
13:22:02 DEBUG opendrift:623: No elements hit coastline.
13:22:02 DEBUG opendrift:1626: No elements to deactivate
13:22:02 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:02 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:02 DEBUG opendrift.models.physics_methods:878: min: 4.760537, mean: 8.292745, max: 9.456255
13:22:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.044958, dN_50: 0.003528
13:22:02 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:02 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.04419467886417029
13:22:02 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:02 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:02 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:02 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 477 surface elements
13:22:02 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 478 surface elements
13:22:02 DEBUG opendrift.models.physics_methods:732: Advecting 496 of 6000 elements above 0.100m with wind-sheared ocean current (0.012099 m/s - 0.332004 m/s)
13:22:02 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:02 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007551052031575396 and 0.4683503049909777 m/s
13:22:02 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:02 DEBUG opendrift:2008: ======================================================================
13:22:02 INFO opendrift:2009: 2025-06-28 15:21:12.661168 - step 51 of 120 - 6000 active elements (0 deactivated)
13:22:02 DEBUG opendrift:2015: 0 elements scheduled.
13:22:02 DEBUG opendrift:2017: ======================================================================
13:22:02 DEBUG opendrift:2028: 34.34813569564135 <- latitude -> 34.98314702842085
13:22:02 DEBUG opendrift:2028: 22.559907381134174 <- longitude -> 23.49018588080914
13:22:02 DEBUG opendrift:2028: -107.7822090839761 <- z -> 0.0
13:22:02 DEBUG opendrift:2029: ---------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 15:00:00 (before)
2025-06-28 18:00:00 (after)
13:22:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:05 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:05 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:05 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 20x24x22) for time after (2025-06-28 18:00:00)
13:22:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 15:00:00) in space (linearNDFast)
13:22:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:05 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 18:00:00) in space (linearNDFast)
13:22:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:05 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 15:00:00, weight 0.88) and
after (2025-06-28 18:00:00, weight 0.12) in time
13:22:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 15:00:00 (before)
2025-06-28 18:00:00 (after)
13:22:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:05 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:05 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:05 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-28 18:00:00)
13:22:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 15:00:00) in space (linearNDFast)
13:22:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:05 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 18:00:00) in space (linearNDFast)
13:22:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:05 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 15:00:00, weight 0.88) and
after (2025-06-28 18:00:00, weight 0.12) in time
13:22:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:05 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:05 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:05 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:05 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.383582 (min) 0.24541 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.531362 (min) -0.00287315 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.348797 (min) 2.90688 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.5145 (min) -5.2601 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:05 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.710619, mean: 2.299652, max: 2.863086
13:22:05 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:05 DEBUG opendrift.models.physics_methods:878: min: 4.592486, mean: 8.248073, max: 9.218213
13:22:05 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.592486, mean: 8.248073, max: 9.218213
13:22:05 DEBUG opendrift:623: No elements hit coastline.
13:22:05 DEBUG opendrift:1626: No elements to deactivate
13:22:05 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:05 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:05 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:05 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:05 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:05 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:05 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:05 DEBUG opendrift.models.physics_methods:878: min: 4.592486, mean: 8.248074, max: 9.218213
13:22:05 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:05 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.047503, dN_50: 0.003728
13:22:05 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:05 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.04199786828789812
13:22:05 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:05 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:05 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:05 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 487 surface elements
13:22:05 DEBUG opendrift.models.physics_methods:732: Advecting 499 of 6000 elements above 0.100m with wind-sheared ocean current (0.004831 m/s - 0.323646 m/s)
13:22:05 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:05 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022427665561321874 and 0.4905003502028899 m/s
13:22:05 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:05 DEBUG opendrift:2008: ======================================================================
13:22:05 INFO opendrift:2009: 2025-06-28 16:21:12.661168 - step 52 of 120 - 6000 active elements (0 deactivated)
13:22:05 DEBUG opendrift:2015: 0 elements scheduled.
13:22:05 DEBUG opendrift:2017: ======================================================================
13:22:05 DEBUG opendrift:2028: 34.326776825516674 <- latitude -> 34.982917152478784
13:22:05 DEBUG opendrift:2028: 22.54453899248772 <- longitude -> 23.487098391149225
13:22:05 DEBUG opendrift:2028: -107.00748766116237 <- z -> 0.0
13:22:05 DEBUG opendrift:2029: ---------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:05 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:05 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:05 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 15:00:00 (before)
2025-06-28 18:00:00 (after)
13:22:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 15:00:00) in space (linearNDFast)
13:22:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:05 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 18:00:00) in space (linearNDFast)
13:22:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:05 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 15:00:00, weight 0.55) and
after (2025-06-28 18:00:00, weight 0.45) in time
13:22:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 15:00:00 (before)
2025-06-28 18:00:00 (after)
13:22:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 15:00:00) in space (linearNDFast)
13:22:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:05 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 18:00:00) in space (linearNDFast)
13:22:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:05 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 15:00:00, weight 0.55) and
after (2025-06-28 18:00:00, weight 0.45) in time
13:22:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:05 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:05 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:05 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:05 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:05 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.390013 (min) 0.269064 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.515044 (min) -0.0100719 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.0359721 (min) 2.77239 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.94335 (min) -5.78169 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:05 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:05 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.834507, mean: 2.049943, max: 2.432207
13:22:05 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:05 DEBUG opendrift.models.physics_methods:878: min: 4.976736, mean: 7.790429, max: 8.496301
13:22:05 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.976736, mean: 7.790429, max: 8.496301
13:22:05 DEBUG opendrift:623: No elements hit coastline.
13:22:05 DEBUG opendrift:1626: No elements to deactivate
13:22:05 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:05 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:05 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:05 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:05 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:05 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:05 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:05 DEBUG opendrift.models.physics_methods:878: min: 4.976736, mean: 7.790430, max: 8.496302
13:22:05 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:05 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.051802, dN_50: 0.004065
13:22:06 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:06 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.035678062750438784
13:22:06 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:06 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:06 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:06 DEBUG opendrift.models.physics_methods:732: Advecting 507 of 6000 elements above 0.100m with wind-sheared ocean current (0.046858 m/s - 0.297638 m/s)
13:22:06 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:06 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002407567007829294 and 0.4717615359087869 m/s
13:22:06 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:06 DEBUG opendrift:2008: ======================================================================
13:22:06 INFO opendrift:2009: 2025-06-28 17:21:12.661168 - step 53 of 120 - 6000 active elements (0 deactivated)
13:22:06 DEBUG opendrift:2015: 0 elements scheduled.
13:22:06 DEBUG opendrift:2017: ======================================================================
13:22:06 DEBUG opendrift:2028: 34.30807072566303 <- latitude -> 34.97923272506791
13:22:06 DEBUG opendrift:2028: 22.526996749543848 <- longitude -> 23.48801425073496
13:22:06 DEBUG opendrift:2028: -106.81794804511968 <- z -> 0.0
13:22:06 DEBUG opendrift:2029: ---------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:06 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:06 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:06 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:06 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:06 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:06 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:06 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:06 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:06 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:06 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:06 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:06 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:06 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:06 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:06 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:06 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
13:22:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:06 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 15:00:00 (before)
2025-06-28 18:00:00 (after)
13:22:06 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 15:00:00) in space (linearNDFast)
13:22:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:06 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 18:00:00) in space (linearNDFast)
13:22:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:06 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 15:00:00, weight 0.22) and
after (2025-06-28 18:00:00, weight 0.78) in time
13:22:06 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:06 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:06 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:06 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:06 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:06 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 15:00:00 (before)
2025-06-28 18:00:00 (after)
13:22:06 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 15:00:00) in space (linearNDFast)
13:22:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:06 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 18:00:00) in space (linearNDFast)
13:22:06 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:06 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 15:00:00, weight 0.22) and
after (2025-06-28 18:00:00, weight 0.78) in time
13:22:06 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:06 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:06 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:06 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:06 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:06 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:06 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:06 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:06 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.396622 (min) 0.153361 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.522483 (min) 0.0172453 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.411534 (min) 2.70053 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.38318 (min) -6.14217 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:06 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:06 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.945692, mean: 1.823591, max: 2.169760
13:22:06 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:06 DEBUG opendrift.models.physics_methods:878: min: 5.297908, mean: 7.350499, max: 8.024821
13:22:06 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.297908, mean: 7.350499, max: 8.024821
13:22:06 DEBUG opendrift:623: No elements hit coastline.
13:22:06 DEBUG opendrift:1626: No elements to deactivate
13:22:06 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:06 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:06 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:06 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:06 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:06 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:06 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:06 DEBUG opendrift.models.physics_methods:878: min: 5.297908, mean: 7.350499, max: 8.024821
13:22:06 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:06 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.056499, dN_50: 0.004434
13:22:06 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:06 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03182866254826281
13:22:06 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:06 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:06 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:06 DEBUG opendrift.models.physics_methods:732: Advecting 517 of 6000 elements above 0.100m with wind-sheared ocean current (0.044039 m/s - 0.273763 m/s)
13:22:06 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:06 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016526392041852544 and 0.4520592761890052 m/s
13:22:06 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:06 DEBUG opendrift:2008: ======================================================================
13:22:06 INFO opendrift:2009: 2025-06-28 18:21:12.661168 - step 54 of 120 - 6000 active elements (0 deactivated)
13:22:06 DEBUG opendrift:2015: 0 elements scheduled.
13:22:06 DEBUG opendrift:2017: ======================================================================
13:22:06 DEBUG opendrift:2028: 34.28806640237388 <- latitude -> 34.97416758033618
13:22:06 DEBUG opendrift:2028: 22.521352693655455 <- longitude -> 23.488980880348375
13:22:06 DEBUG opendrift:2028: -105.852274134036 <- z -> 0.0
13:22:06 DEBUG opendrift:2029: ---------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:06 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:06 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:06 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:06 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:06 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:06 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:06 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:06 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:06 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:06 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:06 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:06 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:06 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:06 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:06 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:06 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:06 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
13:22:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:06 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 18:00:00 (before)
2025-06-28 21:00:00 (after)
13:22:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:08 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:08 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:08 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 21x25x22) for time after (2025-06-28 21:00:00)
13:22:08 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 18:00:00) in space (linearNDFast)
13:22:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:08 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 21:00:00) in space (linearNDFast)
13:22:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:08 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 18:00:00, weight 0.88) and
after (2025-06-28 21:00:00, weight 0.12) in time
13:22:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:08 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:08 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:08 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 18:00:00 (before)
2025-06-28 21:00:00 (after)
13:22:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:08 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:08 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:08 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 8x7x1) for time after (2025-06-28 21:00:00)
13:22:08 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 18:00:00) in space (linearNDFast)
13:22:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:08 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 21:00:00) in space (linearNDFast)
13:22:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:08 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 18:00:00, weight 0.88) and
after (2025-06-28 21:00:00, weight 0.12) in time
13:22:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:08 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:08 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:08 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:08 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:08 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:08 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:08 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:08 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.437123 (min) 0.152843 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.499053 (min) -0.00329823 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.870423 (min) 2.43563 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.00952 (min) -5.92652 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:08 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.874102, mean: 1.683048, max: 2.015457
13:22:08 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:08 DEBUG opendrift.models.physics_methods:878: min: 5.093434, mean: 7.061767, max: 7.734217
13:22:08 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.093434, mean: 7.061767, max: 7.734217
13:22:08 DEBUG opendrift:623: No elements hit coastline.
13:22:08 DEBUG opendrift:1626: No elements to deactivate
13:22:08 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:08 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:08 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:08 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:08 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:08 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:08 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:08 DEBUG opendrift.models.physics_methods:878: min: 5.093434, mean: 7.061767, max: 7.734217
13:22:08 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:08 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.060860, dN_50: 0.004776
13:22:08 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:08 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02956546288266871
13:22:08 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:08 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:08 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:08 DEBUG opendrift.models.physics_methods:732: Advecting 532 of 6000 elements above 0.100m with wind-sheared ocean current (0.013976 m/s - 0.261724 m/s)
13:22:08 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:08 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0019097097832378729 and 0.4460420009816104 m/s
13:22:08 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:08 DEBUG opendrift:2008: ======================================================================
13:22:08 INFO opendrift:2009: 2025-06-28 19:21:12.661168 - step 55 of 120 - 6000 active elements (0 deactivated)
13:22:08 DEBUG opendrift:2015: 0 elements scheduled.
13:22:08 DEBUG opendrift:2017: ======================================================================
13:22:08 DEBUG opendrift:2028: 34.271315906638584 <- latitude -> 34.97111122998342
13:22:08 DEBUG opendrift:2028: 22.50341422977666 <- longitude -> 23.488897852733754
13:22:08 DEBUG opendrift:2028: -104.72778017858688 <- z -> 0.0
13:22:08 DEBUG opendrift:2029: ---------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:08 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:08 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:08 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:08 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:08 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:08 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:08 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:08 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:08 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:08 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 18:00:00 (before)
2025-06-28 21:00:00 (after)
13:22:08 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 18:00:00) in space (linearNDFast)
13:22:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:08 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 21:00:00) in space (linearNDFast)
13:22:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:08 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 18:00:00, weight 0.55) and
after (2025-06-28 21:00:00, weight 0.45) in time
13:22:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:08 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:08 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:08 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 18:00:00 (before)
2025-06-28 21:00:00 (after)
13:22:08 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 18:00:00) in space (linearNDFast)
13:22:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:08 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 21:00:00) in space (linearNDFast)
13:22:08 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:08 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 18:00:00, weight 0.55) and
after (2025-06-28 21:00:00, weight 0.45) in time
13:22:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:08 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:08 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:08 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:08 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:08 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:08 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:08 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:08 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:08 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.427929 (min) 0.108562 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.484291 (min) -0.0118127 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: x_wind: -1.48585 (min) 1.82289 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.96797 (min) -4.85813 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:08 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:08 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.580839, mean: 1.678094, max: 2.032754
13:22:08 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:08 DEBUG opendrift.models.physics_methods:878: min: 4.152003, mean: 7.046360, max: 7.767333
13:22:08 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.152003, mean: 7.046360, max: 7.767333
13:22:08 DEBUG opendrift:623: No elements hit coastline.
13:22:08 DEBUG opendrift:1626: No elements to deactivate
13:22:08 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:08 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:08 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:08 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:08 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:08 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:08 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:08 DEBUG opendrift.models.physics_methods:878: min: 4.152003, mean: 7.046360, max: 7.767334
13:22:08 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:08 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.063895, dN_50: 0.005014
13:22:09 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:09 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02981916083460689
13:22:09 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:09 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:09 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:09 DEBUG opendrift.models.physics_methods:732: Advecting 542 of 6000 elements above 0.100m with wind-sheared ocean current (0.058209 m/s - 0.266761 m/s)
13:22:09 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:09 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018097933172550559 and 0.4686705326815377 m/s
13:22:09 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:09 DEBUG opendrift:2008: ======================================================================
13:22:09 INFO opendrift:2009: 2025-06-28 20:21:12.661168 - step 56 of 120 - 6000 active elements (0 deactivated)
13:22:09 DEBUG opendrift:2015: 0 elements scheduled.
13:22:09 DEBUG opendrift:2017: ======================================================================
13:22:09 DEBUG opendrift:2028: 34.25920814035593 <- latitude -> 34.963832661171935
13:22:09 DEBUG opendrift:2028: 22.486558845657342 <- longitude -> 23.484984382840608
13:22:09 DEBUG opendrift:2028: -103.35495006709054 <- z -> 0.0
13:22:09 DEBUG opendrift:2029: ---------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:09 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:09 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:09 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:09 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:09 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:09 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:09 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:09 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:09 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:09 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:09 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:09 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:09 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:09 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:09 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 18:00:00 (before)
2025-06-28 21:00:00 (after)
13:22:09 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 18:00:00) in space (linearNDFast)
13:22:09 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:09 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 21:00:00) in space (linearNDFast)
13:22:09 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:09 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 18:00:00, weight 0.22) and
after (2025-06-28 21:00:00, weight 0.78) in time
13:22:09 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:09 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:09 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:09 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:09 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 18:00:00 (before)
2025-06-28 21:00:00 (after)
13:22:09 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 18:00:00) in space (linearNDFast)
13:22:09 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:09 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-28 21:00:00) in space (linearNDFast)
13:22:09 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:09 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 18:00:00, weight 0.22) and
after (2025-06-28 21:00:00, weight 0.78) in time
13:22:09 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:09 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:09 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:09 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:09 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:09 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:09 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:09 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:09 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.450792 (min) 0.107496 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.51866 (min) 0.0570853 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.06747 (min) 1.33011 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.93642 (min) -3.71154 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:09 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:09 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.341076, mean: 1.688809, max: 2.056653
13:22:09 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:09 DEBUG opendrift.models.physics_methods:878: min: 3.181669, mean: 7.061785, max: 7.812861
13:22:09 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.181669, mean: 7.061785, max: 7.812861
13:22:09 DEBUG opendrift:623: No elements hit coastline.
13:22:09 DEBUG opendrift:1626: No elements to deactivate
13:22:09 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:09 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:09 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:09 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:09 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:09 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:09 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:09 DEBUG opendrift.models.physics_methods:878: min: 3.181669, mean: 7.061784, max: 7.812860
13:22:09 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:09 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.066863, dN_50: 0.005247
13:22:09 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:09 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.030169698610816868
13:22:09 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:09 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:09 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:09 DEBUG opendrift.models.physics_methods:732: Advecting 542 of 6000 elements above 0.100m with wind-sheared ocean current (0.029845 m/s - 0.268692 m/s)
13:22:09 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:09 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001421035459012742 and 0.41123880626060894 m/s
13:22:09 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:09 DEBUG opendrift:2008: ======================================================================
13:22:09 INFO opendrift:2009: 2025-06-28 21:21:12.661168 - step 57 of 120 - 6000 active elements (0 deactivated)
13:22:09 DEBUG opendrift:2015: 0 elements scheduled.
13:22:09 DEBUG opendrift:2017: ======================================================================
13:22:09 DEBUG opendrift:2028: 34.24490573086621 <- latitude -> 34.95585709650764
13:22:09 DEBUG opendrift:2028: 22.470034824414526 <- longitude -> 23.481102903808384
13:22:09 DEBUG opendrift:2028: -102.44159794323319 <- z -> 0.0
13:22:09 DEBUG opendrift:2029: ---------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:09 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:09 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:09 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:09 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:09 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:09 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:09 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:09 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:09 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:09 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:09 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:09 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:09 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:09 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:09 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:09 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 21:00:00 (before)
2025-06-29 00:00:00 (after)
13:22:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:11 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:11 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:11 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 21x25x22) for time after (2025-06-29 00:00:00)
13:22:11 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 21:00:00) in space (linearNDFast)
13:22:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:11 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 00:00:00) in space (linearNDFast)
13:22:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:11 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 21:00:00, weight 0.88) and
after (2025-06-29 00:00:00, weight 0.12) in time
13:22:11 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:11 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:11 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:11 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:11 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:11 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:11 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:11 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:11 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:11 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 21:00:00 (before)
2025-06-29 00:00:00 (after)
13:22:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:11 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:11 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:11 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x7x1) for time after (2025-06-29 00:00:00)
13:22:11 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 21:00:00) in space (linearNDFast)
13:22:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:11 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 00:00:00) in space (linearNDFast)
13:22:11 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:11 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 21:00:00, weight 0.88) and
after (2025-06-29 00:00:00, weight 0.12) in time
13:22:11 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:11 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:11 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:11 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:12 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:12 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.471595 (min) 0.0457863 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.544877 (min) 0.0968512 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.4191 (min) 1.08949 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.03678 (min) -2.85516 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:12 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.201792, mean: 1.751458, max: 2.135890
13:22:12 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:12 DEBUG opendrift.models.physics_methods:878: min: 2.447267, mean: 7.185159, max: 7.961942
13:22:12 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.447267, mean: 7.185159, max: 7.961942
13:22:12 DEBUG opendrift:623: No elements hit coastline.
13:22:12 DEBUG opendrift:1626: No elements to deactivate
13:22:12 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:12 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:12 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:12 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:12 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:12 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:12 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:12 DEBUG opendrift.models.physics_methods:878: min: 2.447267, mean: 7.185159, max: 7.961942
13:22:12 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:12 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.069256, dN_50: 0.005435
13:22:12 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:12 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03133188579613694
13:22:12 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:12 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:12 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:12 DEBUG opendrift.models.physics_methods:732: Advecting 552 of 6000 elements above 0.100m with wind-sheared ocean current (0.063373 m/s - 0.272738 m/s)
13:22:12 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:12 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012209871157096877 and 0.42904729867516295 m/s
13:22:12 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:12 DEBUG opendrift:2008: ======================================================================
13:22:12 INFO opendrift:2009: 2025-06-28 22:21:12.661168 - step 58 of 120 - 6000 active elements (0 deactivated)
13:22:12 DEBUG opendrift:2015: 0 elements scheduled.
13:22:12 DEBUG opendrift:2017: ======================================================================
13:22:12 DEBUG opendrift:2028: 34.22827223537118 <- latitude -> 34.95178174260512
13:22:12 DEBUG opendrift:2028: 22.452088406043295 <- longitude -> 23.47534148077628
13:22:12 DEBUG opendrift:2028: -101.62406873823994 <- z -> 0.0
13:22:12 DEBUG opendrift:2029: ---------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:12 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:12 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:12 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:12 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:12 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:12 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:12 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:12 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:12 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:12 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 21:00:00 (before)
2025-06-29 00:00:00 (after)
13:22:12 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 21:00:00) in space (linearNDFast)
13:22:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:12 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 00:00:00) in space (linearNDFast)
13:22:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:12 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 21:00:00, weight 0.55) and
after (2025-06-29 00:00:00, weight 0.45) in time
13:22:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:12 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:12 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:12 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 21:00:00 (before)
2025-06-29 00:00:00 (after)
13:22:12 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 21:00:00) in space (linearNDFast)
13:22:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:12 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 00:00:00) in space (linearNDFast)
13:22:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:12 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 21:00:00, weight 0.55) and
after (2025-06-29 00:00:00, weight 0.45) in time
13:22:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:12 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:12 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:12 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:12 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.461524 (min) 0.0266108 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.54677 (min) 0.100503 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.41924 (min) 1.07926 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.35297 (min) -2.4958 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:12 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.156436, mean: 1.891251, max: 2.268673
13:22:12 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:12 DEBUG opendrift.models.physics_methods:878: min: 2.154756, mean: 7.463982, max: 8.205698
13:22:12 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.154756, mean: 7.463982, max: 8.205698
13:22:12 DEBUG opendrift:623: No elements hit coastline.
13:22:12 DEBUG opendrift:1626: No elements to deactivate
13:22:12 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:12 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:12 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:12 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:12 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:12 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:12 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:12 DEBUG opendrift.models.physics_methods:878: min: 2.154756, mean: 7.463982, max: 8.205698
13:22:12 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:12 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.070713, dN_50: 0.005550
13:22:12 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:12 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.033279453034759356
13:22:12 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:12 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:12 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:12 DEBUG opendrift.models.physics_methods:732: Advecting 562 of 6000 elements above 0.100m with wind-sheared ocean current (0.006073 m/s - 0.283654 m/s)
13:22:12 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:12 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002243112431178526 and 0.5007256141060445 m/s
13:22:12 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:12 DEBUG opendrift:2008: ======================================================================
13:22:12 INFO opendrift:2009: 2025-06-28 23:21:12.661168 - step 59 of 120 - 6000 active elements (0 deactivated)
13:22:12 DEBUG opendrift:2015: 0 elements scheduled.
13:22:12 DEBUG opendrift:2017: ======================================================================
13:22:12 DEBUG opendrift:2028: 34.21511967053896 <- latitude -> 34.95759693900908
13:22:12 DEBUG opendrift:2028: 22.43173860381295 <- longitude -> 23.47645495205838
13:22:12 DEBUG opendrift:2028: -100.67283650489948 <- z -> 0.0
13:22:12 DEBUG opendrift:2029: ---------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:12 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:12 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:12 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:12 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:12 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:12 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:12 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:12 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:12 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:12 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 21:00:00 (before)
2025-06-29 00:00:00 (after)
13:22:12 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 21:00:00) in space (linearNDFast)
13:22:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:12 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 00:00:00) in space (linearNDFast)
13:22:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:12 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 21:00:00, weight 0.22) and
after (2025-06-29 00:00:00, weight 0.78) in time
13:22:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:12 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:12 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:12 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:12 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-28 21:00:00 (before)
2025-06-29 00:00:00 (after)
13:22:12 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-28 21:00:00) in space (linearNDFast)
13:22:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:12 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 00:00:00) in space (linearNDFast)
13:22:12 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:12 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-28 21:00:00, weight 0.22) and
after (2025-06-29 00:00:00, weight 0.78) in time
13:22:12 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:12 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:12 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:12 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:12 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:12 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:12 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.55232 (min) 0.0247983 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.555194 (min) 0.172773 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.43896 (min) 1.04625 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.67824 (min) -2.10703 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:12 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:12 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.131601, mean: 2.039055, max: 2.416881
13:22:12 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:12 DEBUG opendrift.models.physics_methods:878: min: 1.976329, mean: 7.748002, max: 8.469489
13:22:12 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.976329, mean: 7.748002, max: 8.469489
13:22:12 DEBUG opendrift:623: No elements hit coastline.
13:22:13 DEBUG opendrift:1626: No elements to deactivate
13:22:13 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:13 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:13 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:13 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:13 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:13 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:13 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:13 DEBUG opendrift.models.physics_methods:878: min: 1.976329, mean: 7.748001, max: 8.469489
13:22:13 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:13 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.072191, dN_50: 0.005666
13:22:13 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:13 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03545326602574983
13:22:13 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:13 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:13 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:13 DEBUG opendrift.models.physics_methods:732: Advecting 571 of 6000 elements above 0.100m with wind-sheared ocean current (0.069388 m/s - 0.294799 m/s)
13:22:13 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:13 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030709311183357633 and 0.38101999006406295 m/s
13:22:13 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:13 DEBUG opendrift:2008: ======================================================================
13:22:13 INFO opendrift:2009: 2025-06-29 00:21:12.661168 - step 60 of 120 - 6000 active elements (0 deactivated)
13:22:13 DEBUG opendrift:2015: 0 elements scheduled.
13:22:13 DEBUG opendrift:2017: ======================================================================
13:22:13 DEBUG opendrift:2028: 34.213564475482606 <- latitude -> 34.953095426920065
13:22:13 DEBUG opendrift:2028: 22.415313282121108 <- longitude -> 23.4750020247804
13:22:13 DEBUG opendrift:2028: -99.43473012471627 <- z -> 0.0
13:22:13 DEBUG opendrift:2029: ---------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:13 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:13 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:13 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:13 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:13 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:13 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:13 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:13 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:13 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:13 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:13 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:13 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:13 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:13 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:13 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:13 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:13 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 00:00:00 (before)
2025-06-29 03:00:00 (after)
13:22:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:14 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:14 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:14 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 22x26x21) for time after (2025-06-29 03:00:00)
13:22:14 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 00:00:00) in space (linearNDFast)
13:22:14 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:14 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 03:00:00) in space (linearNDFast)
13:22:14 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:14 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 00:00:00, weight 0.88) and
after (2025-06-29 03:00:00, weight 0.12) in time
13:22:14 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:14 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:14 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:14 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:14 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:14 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:14 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:14 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:14 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:14 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 00:00:00 (before)
2025-06-29 03:00:00 (after)
13:22:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:14 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:14 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:14 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x7x1) for time after (2025-06-29 03:00:00)
13:22:14 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 00:00:00) in space (linearNDFast)
13:22:14 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:14 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 03:00:00) in space (linearNDFast)
13:22:14 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:14 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 00:00:00, weight 0.88) and
after (2025-06-29 03:00:00, weight 0.12) in time
13:22:14 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:14 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:14 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:14 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:14 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:14 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:14 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:14 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:14 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:14 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.537682 (min) 0.0730851 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.588928 (min) 0.245843 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.58257 (min) 1.18871 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.3161 (min) -2.88086 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:14 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:14 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.235480, mean: 2.248858, max: 2.643278
13:22:14 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:14 DEBUG opendrift.models.physics_methods:878: min: 2.643668, mean: 8.143682, max: 8.857293
13:22:14 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.643668, mean: 8.143682, max: 8.857293
13:22:14 DEBUG opendrift:623: No elements hit coastline.
13:22:14 DEBUG opendrift:1626: No elements to deactivate
13:22:14 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:14 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:14 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:14 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:14 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:14 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:14 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:14 DEBUG opendrift.models.physics_methods:878: min: 2.643668, mean: 8.143682, max: 8.857293
13:22:14 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:14 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.072972, dN_50: 0.005727
13:22:15 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:15 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0387738980471864
13:22:15 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:15 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:15 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:15 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 575 surface elements
13:22:15 DEBUG opendrift.models.physics_methods:732: Advecting 591 of 6000 elements above 0.100m with wind-sheared ocean current (0.013059 m/s - 0.310975 m/s)
13:22:15 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:15 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0029139921686461025 and 0.4870769552680193 m/s
13:22:15 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:15 DEBUG opendrift:2008: ======================================================================
13:22:15 INFO opendrift:2009: 2025-06-29 01:21:12.661168 - step 61 of 120 - 6000 active elements (0 deactivated)
13:22:15 DEBUG opendrift:2015: 0 elements scheduled.
13:22:15 DEBUG opendrift:2017: ======================================================================
13:22:15 DEBUG opendrift:2028: 34.21025594369745 <- latitude -> 34.94836042262396
13:22:15 DEBUG opendrift:2028: 22.397947111453252 <- longitude -> 23.476922460542482
13:22:15 DEBUG opendrift:2028: -98.41740855693376 <- z -> 0.0
13:22:15 DEBUG opendrift:2029: ---------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:15 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 00:00:00 (before)
2025-06-29 03:00:00 (after)
13:22:15 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 00:00:00) in space (linearNDFast)
13:22:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:15 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 03:00:00) in space (linearNDFast)
13:22:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:15 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 00:00:00, weight 0.55) and
after (2025-06-29 03:00:00, weight 0.45) in time
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 00:00:00 (before)
2025-06-29 03:00:00 (after)
13:22:15 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 00:00:00) in space (linearNDFast)
13:22:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:15 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 03:00:00) in space (linearNDFast)
13:22:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:15 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 00:00:00, weight 0.55) and
after (2025-06-29 03:00:00, weight 0.45) in time
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:15 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:15 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:15 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:15 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:15 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:15 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.518011 (min) 0.114249 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.51211 (min) 0.260567 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.87002 (min) 0.836555 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: y_wind: -11.6173 (min) -5.58799 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:15 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.785367, mean: 2.586747, max: 3.376382
13:22:15 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:15 DEBUG opendrift.models.physics_methods:878: min: 4.827985, mean: 8.749585, max: 10.010491
13:22:15 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.827985, mean: 8.749585, max: 10.010491
13:22:15 DEBUG opendrift:623: No elements hit coastline.
13:22:15 DEBUG opendrift:1626: No elements to deactivate
13:22:15 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:15 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:15 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:15 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:15 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:15 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:15 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:15 DEBUG opendrift.models.physics_methods:878: min: 4.827985, mean: 8.749585, max: 10.010491
13:22:15 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:15 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.072660, dN_50: 0.005702
13:22:15 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:15 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.04952653309928078
13:22:15 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:15 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:15 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:15 DEBUG opendrift.models.physics_methods:732: Advecting 585 of 6000 elements above 0.100m with wind-sheared ocean current (0.078674 m/s - 0.348014 m/s)
13:22:15 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:15 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0019974484770095063 and 0.45937519878548866 m/s
13:22:15 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:15 DEBUG opendrift:2008: ======================================================================
13:22:15 INFO opendrift:2009: 2025-06-29 02:21:12.661168 - step 62 of 120 - 6000 active elements (0 deactivated)
13:22:15 DEBUG opendrift:2015: 0 elements scheduled.
13:22:15 DEBUG opendrift:2017: ======================================================================
13:22:15 DEBUG opendrift:2028: 34.197935311333396 <- latitude -> 34.941891716241784
13:22:15 DEBUG opendrift:2028: 22.381364154241734 <- longitude -> 23.48821550551838
13:22:15 DEBUG opendrift:2028: -97.28709169763744 <- z -> 0.0
13:22:15 DEBUG opendrift:2029: ---------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:15 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 00:00:00 (before)
2025-06-29 03:00:00 (after)
13:22:15 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 00:00:00) in space (linearNDFast)
13:22:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:15 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 03:00:00) in space (linearNDFast)
13:22:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:15 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 00:00:00, weight 0.22) and
after (2025-06-29 03:00:00, weight 0.78) in time
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 00:00:00 (before)
2025-06-29 03:00:00 (after)
13:22:15 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 00:00:00) in space (linearNDFast)
13:22:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:15 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 03:00:00) in space (linearNDFast)
13:22:15 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:15 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 00:00:00, weight 0.22) and
after (2025-06-29 03:00:00, weight 0.78) in time
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:15 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:15 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:15 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:15 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:15 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:15 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.480113 (min) 0.153133 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.42167 (min) 0.239585 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: x_wind: -3.17777 (min) 0.552296 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: y_wind: -12.8749 (min) -7.90848 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:15 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:15 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.597080, mean: 2.964952, max: 4.195419
13:22:15 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:15 DEBUG opendrift.models.physics_methods:878: min: 6.884825, mean: 9.373362, max: 11.158794
13:22:15 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.884825, mean: 9.373362, max: 11.158794
13:22:15 DEBUG opendrift:623: No elements hit coastline.
13:22:15 DEBUG opendrift:1626: No elements to deactivate
13:22:15 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:15 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:15 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:15 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:15 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:15 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:15 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:15 DEBUG opendrift.models.physics_methods:878: min: 6.884825, mean: 9.373362, max: 11.158793
13:22:15 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:15 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.072520, dN_50: 0.005691
13:22:15 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:15 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.06153957543915771
13:22:15 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:15 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:15 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:15 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 581 surface elements
13:22:15 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 582 surface elements
13:22:15 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 587 surface elements
13:22:15 DEBUG opendrift.models.physics_methods:732: Advecting 600 of 6000 elements above 0.100m with wind-sheared ocean current (0.007471 m/s - 0.391779 m/s)
13:22:15 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:15 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001963935436310525 and 0.42786412307769117 m/s
13:22:15 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:15 DEBUG opendrift:2008: ======================================================================
13:22:15 INFO opendrift:2009: 2025-06-29 03:21:12.661168 - step 63 of 120 - 6000 active elements (0 deactivated)
13:22:15 DEBUG opendrift:2015: 0 elements scheduled.
13:22:15 DEBUG opendrift:2017: ======================================================================
13:22:15 DEBUG opendrift:2028: 34.187418678526235 <- latitude -> 34.93959202134989
13:22:15 DEBUG opendrift:2028: 22.37081036143057 <- longitude -> 23.499696404224036
13:22:15 DEBUG opendrift:2028: -96.63881511236819 <- z -> 0.0
13:22:15 DEBUG opendrift:2029: ---------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:15 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:15 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:15 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:15 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:15 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:15 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:15 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 03:00:00 (before)
2025-06-29 06:00:00 (after)
13:22:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:19 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:19 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:19 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 23x27x21) for time after (2025-06-29 06:00:00)
13:22:19 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 03:00:00) in space (linearNDFast)
13:22:19 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:19 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 06:00:00) in space (linearNDFast)
13:22:19 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:19 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 03:00:00, weight 0.88) and
after (2025-06-29 06:00:00, weight 0.12) in time
13:22:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:19 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:19 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:19 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 03:00:00 (before)
2025-06-29 06:00:00 (after)
13:22:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:19 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:19 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:19 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x7x1) for time after (2025-06-29 06:00:00)
13:22:19 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 03:00:00) in space (linearNDFast)
13:22:19 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:19 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 06:00:00) in space (linearNDFast)
13:22:19 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:19 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 03:00:00, weight 0.88) and
after (2025-06-29 06:00:00, weight 0.12) in time
13:22:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:19 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:19 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:19 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:19 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:19 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:19 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:19 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:19 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.582883 (min) 0.164542 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.412005 (min) 0.252318 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: x_wind: -3.30787 (min) 0.351574 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: y_wind: -13.6317 (min) -8.32713 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:19 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:19 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.766394, mean: 3.310777, max: 4.705703
13:22:19 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:19 DEBUG opendrift.models.physics_methods:878: min: 7.240580, mean: 9.905947, max: 11.817942
13:22:19 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.240580, mean: 9.905947, max: 11.817942
13:22:19 DEBUG opendrift:623: No elements hit coastline.
13:22:19 DEBUG opendrift:1626: No elements to deactivate
13:22:19 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:19 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:19 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:19 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:19 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:19 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:19 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:19 DEBUG opendrift.models.physics_methods:878: min: 7.240580, mean: 9.905947, max: 11.817943
13:22:19 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:19 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.073072, dN_50: 0.005735
13:22:19 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:19 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.06902405372036476
13:22:19 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:19 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:19 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:19 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 593 surface elements
13:22:19 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 592 surface elements
13:22:19 DEBUG opendrift.models.physics_methods:732: Advecting 605 of 6000 elements above 0.100m with wind-sheared ocean current (0.071846 m/s - 0.414922 m/s)
13:22:19 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:19 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011148404069427893 and 0.4116188578860514 m/s
13:22:19 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:19 DEBUG opendrift:2008: ======================================================================
13:22:19 INFO opendrift:2009: 2025-06-29 04:21:12.661168 - step 64 of 120 - 6000 active elements (0 deactivated)
13:22:19 DEBUG opendrift:2015: 0 elements scheduled.
13:22:19 DEBUG opendrift:2017: ======================================================================
13:22:19 DEBUG opendrift:2028: 34.17609939491693 <- latitude -> 34.9361129963858
13:22:19 DEBUG opendrift:2028: 22.343745620826 <- longitude -> 23.505232796087984
13:22:19 DEBUG opendrift:2028: -96.05705610236281 <- z -> 0.0
13:22:19 DEBUG opendrift:2029: ---------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:19 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:19 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:19 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:19 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:19 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:19 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:19 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:19 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:19 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:19 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:19 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:19 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 03:00:00 (before)
2025-06-29 06:00:00 (after)
13:22:19 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 03:00:00) in space (linearNDFast)
13:22:19 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:20 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 06:00:00) in space (linearNDFast)
13:22:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:20 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 03:00:00, weight 0.55) and
after (2025-06-29 06:00:00, weight 0.45) in time
13:22:20 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:20 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:20 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:20 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:20 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 03:00:00 (before)
2025-06-29 06:00:00 (after)
13:22:20 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 03:00:00) in space (linearNDFast)
13:22:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:20 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 06:00:00) in space (linearNDFast)
13:22:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:20 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 03:00:00, weight 0.55) and
after (2025-06-29 06:00:00, weight 0.45) in time
13:22:20 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:20 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:20 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:20 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:20 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:20 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:20 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:20 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:20 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.480171 (min) 0.128868 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.328683 (min) 0.202219 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.96212 (min) 0.237883 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: y_wind: -13.7653 (min) -8.74714 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:20 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.933268, mean: 3.548926, max: 4.731488
13:22:20 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:20 DEBUG opendrift.models.physics_methods:878: min: 7.574878, mean: 10.258149, max: 11.850276
13:22:20 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.574878, mean: 10.258149, max: 11.850276
13:22:20 DEBUG opendrift:623: No elements hit coastline.
13:22:20 DEBUG opendrift:1626: No elements to deactivate
13:22:20 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:20 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:20 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:20 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:20 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:20 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:20 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:20 DEBUG opendrift.models.physics_methods:878: min: 7.574879, mean: 10.258148, max: 11.850276
13:22:20 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:20 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.074655, dN_50: 0.005859
13:22:20 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:20 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.06940225347022493
13:22:20 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:20 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:20 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:20 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 599 surface elements
13:22:20 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 598 surface elements
13:22:20 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 599 surface elements
13:22:20 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 598 surface elements
13:22:20 DEBUG opendrift.models.physics_methods:732: Advecting 610 of 6000 elements above 0.100m with wind-sheared ocean current (0.021075 m/s - 0.414329 m/s)
13:22:20 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:20 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002261886089276943 and 0.492201494547031 m/s
13:22:20 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:20 DEBUG opendrift:2008: ======================================================================
13:22:20 INFO opendrift:2009: 2025-06-29 05:21:12.661168 - step 65 of 120 - 6000 active elements (0 deactivated)
13:22:20 DEBUG opendrift:2015: 0 elements scheduled.
13:22:20 DEBUG opendrift:2017: ======================================================================
13:22:20 DEBUG opendrift:2028: 34.158135733591834 <- latitude -> 34.93165964506925
13:22:20 DEBUG opendrift:2028: 22.321621068169087 <- longitude -> 23.506758321640987
13:22:20 DEBUG opendrift:2028: -95.00132135162448 <- z -> 0.0
13:22:20 DEBUG opendrift:2029: ---------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:20 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:20 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:20 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:20 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:20 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:20 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:20 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:20 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:20 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:20 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:20 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:20 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:20 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:20 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:20 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 03:00:00 (before)
2025-06-29 06:00:00 (after)
13:22:20 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 03:00:00) in space (linearNDFast)
13:22:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:20 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 06:00:00) in space (linearNDFast)
13:22:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:20 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 03:00:00, weight 0.22) and
after (2025-06-29 06:00:00, weight 0.78) in time
13:22:20 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:20 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:20 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:20 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:20 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 03:00:00 (before)
2025-06-29 06:00:00 (after)
13:22:20 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 03:00:00) in space (linearNDFast)
13:22:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:20 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 06:00:00) in space (linearNDFast)
13:22:20 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:20 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 03:00:00, weight 0.22) and
after (2025-06-29 06:00:00, weight 0.78) in time
13:22:20 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:20 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:20 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:20 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:20 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:20 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:20 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:20 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:20 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.528126 (min) 0.0954092 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.323886 (min) 0.219891 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.77006 (min) 0.142857 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: y_wind: -13.9303 (min) -9.19116 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:20 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:20 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.122258, mean: 3.803092, max: 4.799349
13:22:20 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:20 DEBUG opendrift.models.physics_methods:878: min: 7.936494, mean: 10.620336, max: 11.934955
13:22:20 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.936494, mean: 10.620336, max: 11.934955
13:22:20 DEBUG opendrift:623: No elements hit coastline.
13:22:20 DEBUG opendrift:1626: No elements to deactivate
13:22:20 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:20 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:20 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:20 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:20 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:20 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:20 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:20 DEBUG opendrift.models.physics_methods:878: min: 7.936494, mean: 10.620336, max: 11.934955
13:22:20 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:20 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.076185, dN_50: 0.005979
13:22:20 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:20 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.07039758388433133
13:22:20 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:20 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:20 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:20 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 600 surface elements
13:22:20 DEBUG opendrift.models.openoil.openoil:1041: Entraining 3 of 604 surface elements
13:22:20 DEBUG opendrift.models.physics_methods:732: Advecting 611 of 6000 elements above 0.100m with wind-sheared ocean current (0.099005 m/s - 0.417928 m/s)
13:22:20 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:20 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00017047890474124633 and 0.4834299615238865 m/s
13:22:20 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:20 DEBUG opendrift:2008: ======================================================================
13:22:20 INFO opendrift:2009: 2025-06-29 06:21:12.661168 - step 66 of 120 - 6000 active elements (0 deactivated)
13:22:20 DEBUG opendrift:2015: 0 elements scheduled.
13:22:20 DEBUG opendrift:2017: ======================================================================
13:22:20 DEBUG opendrift:2028: 34.143031673735344 <- latitude -> 34.929989901630975
13:22:20 DEBUG opendrift:2028: 22.305758638216346 <- longitude -> 23.503589263976387
13:22:20 DEBUG opendrift:2028: -94.45002248239406 <- z -> 0.0
13:22:20 DEBUG opendrift:2029: ---------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:20 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:20 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:20 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:20 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:20 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:20 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:20 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:20 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:20 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:20 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:20 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:20 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:20 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:20 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:20 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:20 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 06:00:00 (before)
2025-06-29 09:00:00 (after)
13:22:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:22 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:22 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:22 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 24x28x21) for time after (2025-06-29 09:00:00)
13:22:22 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 06:00:00) in space (linearNDFast)
13:22:22 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:22 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 09:00:00) in space (linearNDFast)
13:22:22 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:22 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 06:00:00, weight 0.88) and
after (2025-06-29 09:00:00, weight 0.12) in time
13:22:22 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:22 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:22 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:22 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:22 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:22 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:22 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:22 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 06:00:00 (before)
2025-06-29 09:00:00 (after)
13:22:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:23 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:23 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:23 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 10x7x1) for time after (2025-06-29 09:00:00)
13:22:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 06:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 09:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 06:00:00, weight 0.88) and
after (2025-06-29 09:00:00, weight 0.12) in time
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:23 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:23 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.511696 (min) 0.0983508 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.400952 (min) 0.200173 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.77808 (min) 0.238895 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: y_wind: -14.1233 (min) -9.73064 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:23 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.396457, mean: 4.083353, max: 4.916653
13:22:23 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:23 DEBUG opendrift.models.physics_methods:878: min: 8.433628, mean: 11.005783, max: 12.079928
13:22:23 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.433628, mean: 11.005783, max: 12.079928
13:22:23 DEBUG opendrift:623: No elements hit coastline.
13:22:23 DEBUG opendrift:1626: No elements to deactivate
13:22:23 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:23 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:23 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:23 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:23 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:23 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:23 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:23 DEBUG opendrift.models.physics_methods:878: min: 8.433628, mean: 11.005784, max: 12.079928
13:22:23 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:23 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.077572, dN_50: 0.006088
13:22:23 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:23 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.07211810505602813
13:22:23 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:23 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:23 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 604 surface elements
13:22:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 609 surface elements
13:22:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 611 surface elements
13:22:23 DEBUG opendrift.models.physics_methods:732: Advecting 618 of 6000 elements above 0.100m with wind-sheared ocean current (0.009692 m/s - 0.424120 m/s)
13:22:23 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:23 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020444515470384875 and 0.4247282283185255 m/s
13:22:23 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:23 DEBUG opendrift:2008: ======================================================================
13:22:23 INFO opendrift:2009: 2025-06-29 07:21:12.661168 - step 67 of 120 - 6000 active elements (0 deactivated)
13:22:23 DEBUG opendrift:2015: 0 elements scheduled.
13:22:23 DEBUG opendrift:2017: ======================================================================
13:22:23 DEBUG opendrift:2028: 34.11956036859615 <- latitude -> 34.93156717378346
13:22:23 DEBUG opendrift:2028: 22.286357539310334 <- longitude -> 23.502571279020327
13:22:23 DEBUG opendrift:2028: -93.83082976062916 <- z -> 0.0
13:22:23 DEBUG opendrift:2029: ---------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:23 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 06:00:00 (before)
2025-06-29 09:00:00 (after)
13:22:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 06:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 09:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 06:00:00, weight 0.55) and
after (2025-06-29 09:00:00, weight 0.45) in time
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 06:00:00 (before)
2025-06-29 09:00:00 (after)
13:22:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 06:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 09:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 06:00:00, weight 0.55) and
after (2025-06-29 09:00:00, weight 0.45) in time
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:23 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:23 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.513342 (min) 0.111585 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.46456 (min) 0.127758 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: x_wind: -3.15477 (min) 0.830003 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: y_wind: -14.359 (min) -10.337 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:23 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.806345, mean: 4.398929, max: 5.077543
13:22:23 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:23 DEBUG opendrift.models.physics_methods:878: min: 9.126413, mean: 11.424501, max: 12.275986
13:22:23 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 9.126413, mean: 11.424501, max: 12.275986
13:22:23 DEBUG opendrift:623: No elements hit coastline.
13:22:23 DEBUG opendrift:1626: No elements to deactivate
13:22:23 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:23 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:23 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:23 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:23 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:23 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:23 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:23 DEBUG opendrift.models.physics_methods:878: min: 9.126412, mean: 11.424501, max: 12.275986
13:22:23 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:23 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.078729, dN_50: 0.006179
13:22:23 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:23 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.07447792595777697
13:22:23 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:23 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:23 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 611 surface elements
13:22:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 611 surface elements
13:22:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 610 surface elements
13:22:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 614 surface elements
13:22:23 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 614 surface elements
13:22:23 DEBUG opendrift.models.physics_methods:732: Advecting 630 of 6000 elements above 0.100m with wind-sheared ocean current (0.059190 m/s - 0.431003 m/s)
13:22:23 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:23 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.004021999654829776 and 0.4259201685854708 m/s
13:22:23 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:23 DEBUG opendrift:2008: ======================================================================
13:22:23 INFO opendrift:2009: 2025-06-29 08:21:12.661168 - step 68 of 120 - 6000 active elements (0 deactivated)
13:22:23 DEBUG opendrift:2015: 0 elements scheduled.
13:22:23 DEBUG opendrift:2017: ======================================================================
13:22:23 DEBUG opendrift:2028: 34.09232478465999 <- latitude -> 34.92791377206193
13:22:23 DEBUG opendrift:2028: 22.258552587019974 <- longitude -> 23.51034536273605
13:22:23 DEBUG opendrift:2028: -92.98332370890215 <- z -> 0.0
13:22:23 DEBUG opendrift:2029: ---------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:23 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:23 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 06:00:00 (before)
2025-06-29 09:00:00 (after)
13:22:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 06:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 09:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 06:00:00, weight 0.22) and
after (2025-06-29 09:00:00, weight 0.78) in time
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:23 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:23 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 06:00:00 (before)
2025-06-29 09:00:00 (after)
13:22:23 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 06:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 09:00:00) in space (linearNDFast)
13:22:23 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:23 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 06:00:00, weight 0.22) and
after (2025-06-29 09:00:00, weight 0.78) in time
13:22:23 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:23 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:23 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:23 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:23 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:23 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:23 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.523369 (min) 0.149261 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.5545 (min) 0.158966 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: x_wind: -3.82189 (min) 1.41305 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: y_wind: -14.6745 (min) -10.8723 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:23 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:23 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 3.257844, mean: 4.737699, max: 5.298227
13:22:23 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:23 DEBUG opendrift.models.physics_methods:878: min: 9.833198, mean: 11.856778, max: 12.539922
13:22:23 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 9.833198, mean: 11.856778, max: 12.539922
13:22:23 DEBUG opendrift:623: No elements hit coastline.
13:22:23 DEBUG opendrift:1626: No elements to deactivate
13:22:23 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:23 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:23 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:23 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:23 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:23 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:23 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:23 DEBUG opendrift.models.physics_methods:878: min: 9.833198, mean: 11.856779, max: 12.539922
13:22:23 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:23 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.079798, dN_50: 0.006263
13:22:25 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:25 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.07771476469247585
13:22:25 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:25 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:25 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 615 surface elements
13:22:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 615 surface elements
13:22:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 614 surface elements
13:22:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 617 surface elements
13:22:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 616 surface elements
13:22:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 618 surface elements
13:22:25 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 617 surface elements
13:22:25 DEBUG opendrift.models.physics_methods:732: Advecting 638 of 6000 elements above 0.100m with wind-sheared ocean current (0.006021 m/s - 0.440270 m/s)
13:22:25 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:25 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021983966686998676 and 0.4543026735095814 m/s
13:22:25 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:25 DEBUG opendrift:2008: ======================================================================
13:22:25 INFO opendrift:2009: 2025-06-29 09:21:12.661168 - step 69 of 120 - 6000 active elements (0 deactivated)
13:22:25 DEBUG opendrift:2015: 0 elements scheduled.
13:22:25 DEBUG opendrift:2017: ======================================================================
13:22:25 DEBUG opendrift:2028: 34.06736684105841 <- latitude -> 34.923546679209466
13:22:25 DEBUG opendrift:2028: 22.24295318605269 <- longitude -> 23.513111047142218
13:22:25 DEBUG opendrift:2028: -92.20057018022173 <- z -> 0.0
13:22:25 DEBUG opendrift:2029: ---------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:25 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:25 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:25 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:25 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:25 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:25 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:25 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:25 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:25 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:25 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:25 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:25 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:25 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 09:00:00 (before)
2025-06-29 12:00:00 (after)
13:22:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:26 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:26 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:26 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 25x30x21) for time after (2025-06-29 12:00:00)
13:22:26 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 09:00:00) in space (linearNDFast)
13:22:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:26 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 12:00:00) in space (linearNDFast)
13:22:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:26 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 09:00:00, weight 0.88) and
after (2025-06-29 12:00:00, weight 0.12) in time
13:22:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 09:00:00 (before)
2025-06-29 12:00:00 (after)
13:22:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:26 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:26 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:26 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 10x7x1) for time after (2025-06-29 12:00:00)
13:22:26 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 09:00:00) in space (linearNDFast)
13:22:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:26 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 12:00:00) in space (linearNDFast)
13:22:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:26 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 09:00:00, weight 0.88) and
after (2025-06-29 12:00:00, weight 0.12) in time
13:22:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:26 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:26 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:26 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:26 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.520845 (min) 0.162185 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.635114 (min) 0.183925 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: x_wind: -4.70539 (min) 1.64058 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: y_wind: -14.9656 (min) -11.3321 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:26 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 3.321225, mean: 5.047270, max: 5.509914
13:22:26 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:26 DEBUG opendrift.models.physics_methods:878: min: 9.928388, mean: 12.237863, max: 12.787982
13:22:26 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 9.928388, mean: 12.237863, max: 12.787982
13:22:26 DEBUG opendrift:623: No elements hit coastline.
13:22:26 DEBUG opendrift:1626: No elements to deactivate
13:22:26 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:26 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:26 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:26 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:26 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:26 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:26 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:26 DEBUG opendrift.models.physics_methods:878: min: 9.928389, mean: 12.237864, max: 12.787982
13:22:26 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:26 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.081011, dN_50: 0.006358
13:22:26 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:26 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.08081963966554759
13:22:26 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:26 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:26 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 624 surface elements
13:22:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 629 surface elements
13:22:26 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 629 surface elements
13:22:26 DEBUG opendrift.models.physics_methods:732: Advecting 641 of 6000 elements above 0.100m with wind-sheared ocean current (0.001208 m/s - 0.448979 m/s)
13:22:26 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:26 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021977145811062694 and 0.472667798760554 m/s
13:22:26 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:26 DEBUG opendrift:2008: ======================================================================
13:22:26 INFO opendrift:2009: 2025-06-29 10:21:12.661168 - step 70 of 120 - 6000 active elements (0 deactivated)
13:22:26 DEBUG opendrift:2015: 0 elements scheduled.
13:22:26 DEBUG opendrift:2017: ======================================================================
13:22:26 DEBUG opendrift:2028: 34.039303927885626 <- latitude -> 34.92025409729294
13:22:26 DEBUG opendrift:2028: 22.227928643265198 <- longitude -> 23.509323641945983
13:22:26 DEBUG opendrift:2028: -91.10752913145868 <- z -> 0.0
13:22:26 DEBUG opendrift:2029: ---------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:26 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:26 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:26 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 09:00:00 (before)
2025-06-29 12:00:00 (after)
13:22:26 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 09:00:00) in space (linearNDFast)
13:22:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:26 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 12:00:00) in space (linearNDFast)
13:22:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:26 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 09:00:00, weight 0.55) and
after (2025-06-29 12:00:00, weight 0.45) in time
13:22:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:26 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:26 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:26 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 09:00:00 (before)
2025-06-29 12:00:00 (after)
13:22:26 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 09:00:00) in space (linearNDFast)
13:22:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:26 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 12:00:00) in space (linearNDFast)
13:22:26 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:26 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 09:00:00, weight 0.55) and
after (2025-06-29 12:00:00, weight 0.45) in time
13:22:26 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:26 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:26 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:26 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:26 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:26 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:26 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:26 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.500982 (min) 0.153093 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.652922 (min) 0.157619 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: x_wind: -5.19273 (min) 1.14178 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.1763 (min) -10.6679 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:26 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:26 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.828104, mean: 5.277799, max: 5.669551
13:22:26 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:26 DEBUG opendrift.models.physics_methods:878: min: 9.161725, mean: 12.513080, max: 12.971910
13:22:26 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 9.161725, mean: 12.513080, max: 12.971910
13:22:26 DEBUG opendrift:623: No elements hit coastline.
13:22:26 DEBUG opendrift:1626: No elements to deactivate
13:22:26 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:26 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:26 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:26 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:26 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:26 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:26 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:26 DEBUG opendrift.models.physics_methods:878: min: 9.161725, mean: 12.513081, max: 12.971910
13:22:26 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:26 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.082565, dN_50: 0.006480
13:22:27 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:27 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.08316107801177616
13:22:27 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:27 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:27 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 633 surface elements
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 633 surface elements
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 639 surface elements
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 640 surface elements
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 640 surface elements
13:22:27 DEBUG opendrift.models.physics_methods:732: Advecting 645 of 6000 elements above 0.100m with wind-sheared ocean current (0.033866 m/s - 0.455297 m/s)
13:22:27 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:27 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002453433013355078 and 0.44112590937420243 m/s
13:22:27 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:27 DEBUG opendrift:2008: ======================================================================
13:22:27 INFO opendrift:2009: 2025-06-29 11:21:12.661168 - step 71 of 120 - 6000 active elements (0 deactivated)
13:22:27 DEBUG opendrift:2015: 0 elements scheduled.
13:22:27 DEBUG opendrift:2017: ======================================================================
13:22:27 DEBUG opendrift:2028: 34.01729195283314 <- latitude -> 34.92031154141332
13:22:27 DEBUG opendrift:2028: 22.211760922830848 <- longitude -> 23.501439664174143
13:22:27 DEBUG opendrift:2028: -90.75085074224886 <- z -> 0.0
13:22:27 DEBUG opendrift:2029: ---------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:27 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:27 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:27 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:27 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:27 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:27 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:27 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 09:00:00 (before)
2025-06-29 12:00:00 (after)
13:22:27 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 09:00:00) in space (linearNDFast)
13:22:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:27 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 12:00:00) in space (linearNDFast)
13:22:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:27 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 09:00:00, weight 0.22) and
after (2025-06-29 12:00:00, weight 0.78) in time
13:22:27 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:27 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 09:00:00 (before)
2025-06-29 12:00:00 (after)
13:22:27 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 09:00:00) in space (linearNDFast)
13:22:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:27 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 12:00:00) in space (linearNDFast)
13:22:27 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:27 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 09:00:00, weight 0.22) and
after (2025-06-29 12:00:00, weight 0.78) in time
13:22:27 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:27 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:27 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:27 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:27 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:27 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:27 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:27 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:27 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.494996 (min) 0.17138 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.704826 (min) 0.142758 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: x_wind: -5.69497 (min) 0.809674 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.3771 (min) -9.58018 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:27 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:27 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.264301, mean: 5.522584, max: 5.828765
13:22:27 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:27 DEBUG opendrift.models.physics_methods:878: min: 8.197787, mean: 12.798001, max: 13.152789
13:22:27 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.197787, mean: 12.798001, max: 13.152789
13:22:27 DEBUG opendrift:623: No elements hit coastline.
13:22:27 DEBUG opendrift:1626: No elements to deactivate
13:22:27 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:27 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:27 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:27 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:27 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:27 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:27 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:27 DEBUG opendrift.models.physics_methods:878: min: 8.197787, mean: 12.798000, max: 13.152789
13:22:27 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:27 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.084071, dN_50: 0.006598
13:22:27 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:27 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.08549631127597257
13:22:27 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:27 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:27 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 642 surface elements
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 644 surface elements
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 643 surface elements
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 642 surface elements
13:22:27 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 643 surface elements
13:22:27 DEBUG opendrift.models.physics_methods:732: Advecting 649 of 6000 elements above 0.100m with wind-sheared ocean current (0.063538 m/s - 0.461787 m/s)
13:22:27 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:27 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020564711994003424 and 0.4482461169991697 m/s
13:22:27 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:27 DEBUG opendrift:2008: ======================================================================
13:22:27 INFO opendrift:2009: 2025-06-29 12:21:12.661168 - step 72 of 120 - 6000 active elements (0 deactivated)
13:22:27 DEBUG opendrift:2015: 0 elements scheduled.
13:22:27 DEBUG opendrift:2017: ======================================================================
13:22:27 DEBUG opendrift:2028: 33.99218376838807 <- latitude -> 34.91462008909753
13:22:27 DEBUG opendrift:2028: 22.193765673781403 <- longitude -> 23.484499968561032
13:22:27 DEBUG opendrift:2028: -90.00766004702098 <- z -> 0.0
13:22:27 DEBUG opendrift:2029: ---------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:27 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:27 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:27 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:27 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:27 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:27 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:27 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:27 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:27 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:27 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:27 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 12:00:00 (before)
2025-06-29 15:00:00 (after)
13:22:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:28 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:28 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:28 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 25x31x21) for time after (2025-06-29 15:00:00)
13:22:28 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 12:00:00) in space (linearNDFast)
13:22:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:28 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 15:00:00) in space (linearNDFast)
13:22:28 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:28 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 12:00:00, weight 0.88) and
after (2025-06-29 15:00:00, weight 0.12) in time
13:22:28 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:28 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:28 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:28 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:28 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:28 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:28 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:28 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:28 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:28 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 12:00:00 (before)
2025-06-29 15:00:00 (after)
13:22:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:29 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:29 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:29 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x8x1) for time after (2025-06-29 15:00:00)
13:22:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 12:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 15:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 12:00:00, weight 0.88) and
after (2025-06-29 15:00:00, weight 0.12) in time
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:29 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:29 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.541584 (min) 0.171946 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.720516 (min) 0.151581 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: x_wind: -6.25114 (min) 0.240483 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.6809 (min) -8.47586 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:29 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.770311, mean: 5.751431, max: 6.181442
13:22:29 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:29 DEBUG opendrift.models.physics_methods:878: min: 7.248605, mean: 13.057911, max: 13.544858
13:22:29 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.248605, mean: 13.057911, max: 13.544858
13:22:29 DEBUG opendrift:623: No elements hit coastline.
13:22:29 DEBUG opendrift:1626: No elements to deactivate
13:22:29 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:29 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:29 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:29 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:29 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:29 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:29 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:29 DEBUG opendrift.models.physics_methods:878: min: 7.248605, mean: 13.057910, max: 13.544858
13:22:29 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:29 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.085667, dN_50: 0.006723
13:22:29 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:29 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09066912150224626
13:22:29 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:29 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:29 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 646 surface elements
13:22:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 647 surface elements
13:22:29 DEBUG opendrift.models.physics_methods:732: Advecting 666 of 6000 elements above 0.100m with wind-sheared ocean current (0.007424 m/s - 0.470448 m/s)
13:22:29 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:29 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002566562302116032 and 0.44765924373920785 m/s
13:22:29 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:29 DEBUG opendrift:2008: ======================================================================
13:22:29 INFO opendrift:2009: 2025-06-29 13:21:12.661168 - step 73 of 120 - 6000 active elements (0 deactivated)
13:22:29 DEBUG opendrift:2015: 0 elements scheduled.
13:22:29 DEBUG opendrift:2017: ======================================================================
13:22:29 DEBUG opendrift:2028: 33.970771253861635 <- latitude -> 34.91642942546075
13:22:29 DEBUG opendrift:2028: 22.170964014455596 <- longitude -> 23.468701527877027
13:22:29 DEBUG opendrift:2028: -88.59055706313751 <- z -> 0.0
13:22:29 DEBUG opendrift:2029: ---------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:29 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 12:00:00 (before)
2025-06-29 15:00:00 (after)
13:22:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 12:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 15:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 12:00:00, weight 0.55) and
after (2025-06-29 15:00:00, weight 0.45) in time
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 12:00:00 (before)
2025-06-29 15:00:00 (after)
13:22:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 12:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 15:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 12:00:00, weight 0.55) and
after (2025-06-29 15:00:00, weight 0.45) in time
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:29 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:29 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.563248 (min) 0.136808 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.644887 (min) 0.159103 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: x_wind: -6.87907 (min) -0.655144 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: y_wind: -16.165 (min) -7.17025 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:29 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.336576, mean: 5.936090, max: 6.652186
13:22:29 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:29 DEBUG opendrift.models.physics_methods:878: min: 6.298346, mean: 13.263342, max: 14.051146
13:22:29 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.298346, mean: 13.263342, max: 14.051146
13:22:29 DEBUG opendrift:623: No elements hit coastline.
13:22:29 DEBUG opendrift:1626: No elements to deactivate
13:22:29 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:29 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:29 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:29 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:29 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:29 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:29 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:29 DEBUG opendrift.models.physics_methods:878: min: 6.298346, mean: 13.263341, max: 14.051146
13:22:29 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:29 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.087483, dN_50: 0.006866
13:22:29 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:29 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09757365730402255
13:22:29 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:29 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:29 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 655 surface elements
13:22:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 654 surface elements
13:22:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 655 surface elements
13:22:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 654 surface elements
13:22:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 654 surface elements
13:22:29 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 653 surface elements
13:22:29 DEBUG opendrift.models.physics_methods:732: Advecting 672 of 6000 elements above 0.100m with wind-sheared ocean current (0.007249 m/s - 0.483641 m/s)
13:22:29 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:29 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012912174670883531 and 0.4690303199160773 m/s
13:22:29 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:29 DEBUG opendrift:2008: ======================================================================
13:22:29 INFO opendrift:2009: 2025-06-29 14:21:12.661168 - step 74 of 120 - 6000 active elements (0 deactivated)
13:22:29 DEBUG opendrift:2015: 0 elements scheduled.
13:22:29 DEBUG opendrift:2017: ======================================================================
13:22:29 DEBUG opendrift:2028: 33.945380142039724 <- latitude -> 34.91725749896193
13:22:29 DEBUG opendrift:2028: 22.16146583926293 <- longitude -> 23.44645189121392
13:22:29 DEBUG opendrift:2028: -87.74347394164494 <- z -> 0.0
13:22:29 DEBUG opendrift:2029: ---------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:29 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 12:00:00 (before)
2025-06-29 15:00:00 (after)
13:22:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 12:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 15:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 12:00:00, weight 0.22) and
after (2025-06-29 15:00:00, weight 0.78) in time
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 12:00:00 (before)
2025-06-29 15:00:00 (after)
13:22:29 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 12:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 15:00:00) in space (linearNDFast)
13:22:29 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:29 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 12:00:00, weight 0.22) and
after (2025-06-29 15:00:00, weight 0.78) in time
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:29 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:29 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:29 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.605875 (min) 0.115846 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.618516 (min) 0.145191 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: x_wind: -7.51023 (min) -1.48647 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: y_wind: -16.5819 (min) -6.13118 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:29 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:29 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.147757, mean: 6.133011, max: 7.087367
13:22:29 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:29 DEBUG opendrift.models.physics_methods:878: min: 5.836528, mean: 13.479396, max: 14.503474
13:22:29 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.836528, mean: 13.479396, max: 14.503474
13:22:29 DEBUG opendrift:623: No elements hit coastline.
13:22:29 DEBUG opendrift:1626: No elements to deactivate
13:22:29 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:29 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:29 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:29 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:29 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:29 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:29 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:29 DEBUG opendrift.models.physics_methods:878: min: 5.836528, mean: 13.479396, max: 14.503473
13:22:29 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:29 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.089242, dN_50: 0.007004
13:22:29 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:29 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.10395657134624078
13:22:29 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:29 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:29 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:29 DEBUG opendrift.models.physics_methods:732: Advecting 678 of 6000 elements above 0.100m with wind-sheared ocean current (0.001447 m/s - 0.495304 m/s)
13:22:29 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:29 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001167296588203873 and 0.439550715147574 m/s
13:22:29 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:29 DEBUG opendrift:2008: ======================================================================
13:22:29 INFO opendrift:2009: 2025-06-29 15:21:12.661168 - step 75 of 120 - 6000 active elements (0 deactivated)
13:22:29 DEBUG opendrift:2015: 0 elements scheduled.
13:22:29 DEBUG opendrift:2017: ======================================================================
13:22:29 DEBUG opendrift:2028: 33.924422412279604 <- latitude -> 34.91648023164359
13:22:29 DEBUG opendrift:2028: 22.146315124820173 <- longitude -> 23.422574601658827
13:22:29 DEBUG opendrift:2028: -86.82265316360598 <- z -> 0.0
13:22:29 DEBUG opendrift:2029: ---------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:29 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:29 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:29 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:29 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:29 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:29 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:29 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 15:00:00 (before)
2025-06-29 18:00:00 (after)
13:22:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:31 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:31 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:31 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 25x32x20) for time after (2025-06-29 18:00:00)
13:22:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 15:00:00) in space (linearNDFast)
13:22:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:31 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 18:00:00) in space (linearNDFast)
13:22:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:31 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 15:00:00, weight 0.88) and
after (2025-06-29 18:00:00, weight 0.12) in time
13:22:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 15:00:00 (before)
2025-06-29 18:00:00 (after)
13:22:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:31 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:31 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:31 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x8x1) for time after (2025-06-29 18:00:00)
13:22:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 15:00:00) in space (linearNDFast)
13:22:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:31 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 18:00:00) in space (linearNDFast)
13:22:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:31 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 15:00:00, weight 0.88) and
after (2025-06-29 18:00:00, weight 0.12) in time
13:22:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:31 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:31 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:31 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:31 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.631248 (min) 0.100012 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.597263 (min) 0.162671 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: x_wind: -7.963 (min) -2.12326 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: y_wind: -16.7694 (min) -6.08696 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:31 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.200256, mean: 6.257287, max: 7.317100
13:22:31 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:31 DEBUG opendrift.models.physics_methods:878: min: 5.968517, mean: 13.614486, max: 14.736660
13:22:31 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.968517, mean: 13.614486, max: 14.736660
13:22:31 DEBUG opendrift:623: No elements hit coastline.
13:22:31 DEBUG opendrift:1626: No elements to deactivate
13:22:31 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:31 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:31 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:31 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:31 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:31 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:31 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:31 DEBUG opendrift.models.physics_methods:878: min: 5.968517, mean: 13.614486, max: 14.736660
13:22:31 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:31 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.091305, dN_50: 0.007166
13:22:31 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:31 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.10732612832413206
13:22:31 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:31 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:31 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:31 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 667 surface elements
13:22:31 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 666 surface elements
13:22:31 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 671 surface elements
13:22:31 DEBUG opendrift.models.physics_methods:732: Advecting 686 of 6000 elements above 0.100m with wind-sheared ocean current (0.009350 m/s - 0.510484 m/s)
13:22:31 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:31 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015542638682502035 and 0.4258198347663545 m/s
13:22:31 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:31 DEBUG opendrift:2008: ======================================================================
13:22:31 INFO opendrift:2009: 2025-06-29 16:21:12.661168 - step 76 of 120 - 6000 active elements (0 deactivated)
13:22:31 DEBUG opendrift:2015: 0 elements scheduled.
13:22:31 DEBUG opendrift:2017: ======================================================================
13:22:31 DEBUG opendrift:2028: 33.90129988590536 <- latitude -> 34.91503359237197
13:22:31 DEBUG opendrift:2028: 22.139495779837734 <- longitude -> 23.402687510872774
13:22:31 DEBUG opendrift:2028: -86.2731039530451 <- z -> 0.0
13:22:31 DEBUG opendrift:2029: ---------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:31 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:31 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:31 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 15:00:00 (before)
2025-06-29 18:00:00 (after)
13:22:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 15:00:00) in space (linearNDFast)
13:22:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:31 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 18:00:00) in space (linearNDFast)
13:22:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:31 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 15:00:00, weight 0.55) and
after (2025-06-29 18:00:00, weight 0.45) in time
13:22:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:31 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:31 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:31 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 15:00:00 (before)
2025-06-29 18:00:00 (after)
13:22:31 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 15:00:00) in space (linearNDFast)
13:22:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:31 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 18:00:00) in space (linearNDFast)
13:22:31 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:31 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 15:00:00, weight 0.55) and
after (2025-06-29 18:00:00, weight 0.45) in time
13:22:31 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:31 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:31 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:31 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:31 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:31 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:31 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:31 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.688622 (min) 0.0773742 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.533403 (min) 0.179708 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: x_wind: -8.01728 (min) -2.40726 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: y_wind: -16.3656 (min) -7.1012 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:31 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:31 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.413405, mean: 6.231147, max: 7.033831
13:22:31 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:31 DEBUG opendrift.models.physics_methods:878: min: 6.476837, mean: 13.586375, max: 14.448593
13:22:31 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.476837, mean: 13.586375, max: 14.448593
13:22:31 DEBUG opendrift:623: No elements hit coastline.
13:22:31 DEBUG opendrift:1626: No elements to deactivate
13:22:31 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:31 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:31 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:31 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:31 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:31 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:31 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:31 DEBUG opendrift.models.physics_methods:878: min: 6.476837, mean: 13.586375, max: 14.448593
13:22:31 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:31 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.093996, dN_50: 0.007377
13:22:31 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:31 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.10317134641998925
13:22:31 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:31 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:31 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 2 of 685 surface elements
13:22:32 DEBUG opendrift.models.physics_methods:732: Advecting 693 of 6000 elements above 0.100m with wind-sheared ocean current (0.044194 m/s - 0.499006 m/s)
13:22:32 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:32 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026190587180749273 and 0.4405229092357222 m/s
13:22:32 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:32 DEBUG opendrift:2008: ======================================================================
13:22:32 INFO opendrift:2009: 2025-06-29 17:21:12.661168 - step 77 of 120 - 6000 active elements (0 deactivated)
13:22:32 DEBUG opendrift:2015: 0 elements scheduled.
13:22:32 DEBUG opendrift:2017: ======================================================================
13:22:32 DEBUG opendrift:2028: 33.88724870469535 <- latitude -> 34.91582769637016
13:22:32 DEBUG opendrift:2028: 22.118043708661535 <- longitude -> 23.384086296818005
13:22:32 DEBUG opendrift:2028: -84.70042676105186 <- z -> 0.0
13:22:32 DEBUG opendrift:2029: ---------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:32 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 15:00:00 (before)
2025-06-29 18:00:00 (after)
13:22:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 15:00:00) in space (linearNDFast)
13:22:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:32 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 18:00:00) in space (linearNDFast)
13:22:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:32 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 15:00:00, weight 0.22) and
after (2025-06-29 18:00:00, weight 0.78) in time
13:22:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 15:00:00 (before)
2025-06-29 18:00:00 (after)
13:22:32 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 15:00:00) in space (linearNDFast)
13:22:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:32 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 18:00:00) in space (linearNDFast)
13:22:32 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:32 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 15:00:00, weight 0.22) and
after (2025-06-29 18:00:00, weight 0.78) in time
13:22:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:32 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:32 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:32 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:32 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:32 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.786458 (min) 0.058726 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.595649 (min) 0.212831 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: x_wind: -8.07662 (min) -1.96994 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.9918 (min) -8.00506 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:32 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:32 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.671857, mean: 6.206910, max: 6.772696
13:22:32 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:32 DEBUG opendrift.models.physics_methods:878: min: 7.044160, mean: 13.559336, max: 14.177850
13:22:32 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.044160, mean: 13.559336, max: 14.177850
13:22:32 DEBUG opendrift:623: No elements hit coastline.
13:22:32 DEBUG opendrift:1626: No elements to deactivate
13:22:32 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:32 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:32 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:32 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:32 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:32 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:32 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:32 DEBUG opendrift.models.physics_methods:878: min: 7.044160, mean: 13.559336, max: 14.177850
13:22:32 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:32 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.096656, dN_50: 0.007586
13:22:32 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:32 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09934121017703129
13:22:32 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:32 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:32 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:32 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 691 surface elements
13:22:32 DEBUG opendrift.models.physics_methods:732: Advecting 701 of 6000 elements above 0.100m with wind-sheared ocean current (0.203674 m/s - 0.493917 m/s)
13:22:32 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:32 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007227125603531762 and 0.5115661654600933 m/s
13:22:32 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:32 DEBUG opendrift:2008: ======================================================================
13:22:32 INFO opendrift:2009: 2025-06-29 18:21:12.661168 - step 78 of 120 - 6000 active elements (0 deactivated)
13:22:32 DEBUG opendrift:2015: 0 elements scheduled.
13:22:32 DEBUG opendrift:2017: ======================================================================
13:22:32 DEBUG opendrift:2028: 33.875921638853505 <- latitude -> 34.908843573568504
13:22:32 DEBUG opendrift:2028: 22.094827139492526 <- longitude -> 23.37201197911953
13:22:32 DEBUG opendrift:2028: -83.61607099388539 <- z -> 0.0
13:22:32 DEBUG opendrift:2029: ---------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:32 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:32 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:32 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:32 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:32 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:32 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:32 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:32 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:32 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:32 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 18:00:00 (before)
2025-06-29 21:00:00 (after)
13:22:32 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:33 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:33 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:33 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 25x34x20) for time after (2025-06-29 21:00:00)
13:22:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 18:00:00) in space (linearNDFast)
13:22:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:33 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 21:00:00) in space (linearNDFast)
13:22:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:33 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 18:00:00, weight 0.88) and
after (2025-06-29 21:00:00, weight 0.12) in time
13:22:33 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:33 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:33 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:33 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:33 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 18:00:00 (before)
2025-06-29 21:00:00 (after)
13:22:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:33 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:33 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:33 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x8x1) for time after (2025-06-29 21:00:00)
13:22:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 18:00:00) in space (linearNDFast)
13:22:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:33 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 21:00:00) in space (linearNDFast)
13:22:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:33 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 18:00:00, weight 0.88) and
after (2025-06-29 21:00:00, weight 0.12) in time
13:22:33 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:33 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:33 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:33 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:33 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:33 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.787903 (min) 0.0460925 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.577828 (min) 0.262017 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: x_wind: -7.82624 (min) -1.64005 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.6894 (min) -8.72521 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:33 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.938948, mean: 6.139193, max: 6.529421
13:22:33 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:33 DEBUG opendrift.models.physics_methods:878: min: 7.585996, mean: 13.484472, max: 13.920886
13:22:33 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.585996, mean: 13.484472, max: 13.920886
13:22:33 DEBUG opendrift:623: No elements hit coastline.
13:22:33 DEBUG opendrift:1626: No elements to deactivate
13:22:33 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:33 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:33 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:33 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:33 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:33 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:33 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:33 DEBUG opendrift.models.physics_methods:878: min: 7.585996, mean: 13.484471, max: 13.920886
13:22:33 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:33 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.099463, dN_50: 0.007806
13:22:33 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:33 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09577302006181507
13:22:33 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:33 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:33 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:33 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 699 surface elements
13:22:33 DEBUG opendrift.models.physics_methods:732: Advecting 717 of 6000 elements above 0.100m with wind-sheared ocean current (0.016656 m/s - 0.488439 m/s)
13:22:33 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:33 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00026018213793233187 and 0.445238008428837 m/s
13:22:33 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:33 DEBUG opendrift:2008: ======================================================================
13:22:33 INFO opendrift:2009: 2025-06-29 19:21:12.661168 - step 79 of 120 - 6000 active elements (0 deactivated)
13:22:33 DEBUG opendrift:2015: 0 elements scheduled.
13:22:33 DEBUG opendrift:2017: ======================================================================
13:22:33 DEBUG opendrift:2028: 33.86770658922496 <- latitude -> 34.90605191394938
13:22:33 DEBUG opendrift:2028: 22.069305382120387 <- longitude -> 23.36827131256347
13:22:33 DEBUG opendrift:2028: -82.6476785027474 <- z -> 0.0
13:22:33 DEBUG opendrift:2029: ---------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:33 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:33 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:33 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:33 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:33 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:33 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:33 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:33 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:33 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:33 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:33 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:33 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:33 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:33 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:33 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 18:00:00 (before)
2025-06-29 21:00:00 (after)
13:22:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 18:00:00) in space (linearNDFast)
13:22:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:33 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 21:00:00) in space (linearNDFast)
13:22:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:33 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 18:00:00, weight 0.55) and
after (2025-06-29 21:00:00, weight 0.45) in time
13:22:33 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:33 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:33 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:33 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:33 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 18:00:00 (before)
2025-06-29 21:00:00 (after)
13:22:33 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 18:00:00) in space (linearNDFast)
13:22:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:33 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 21:00:00) in space (linearNDFast)
13:22:33 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:33 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 18:00:00, weight 0.55) and
after (2025-06-29 21:00:00, weight 0.45) in time
13:22:33 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:33 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:33 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:33 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:33 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:33 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:33 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:33 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.816339 (min) 0.0476516 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.4568 (min) 0.267237 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: x_wind: -6.99549 (min) -1.82616 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.3293 (min) -9.29642 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:33 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:33 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.208055, mean: 5.991014, max: 6.777009
13:22:33 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:33 DEBUG opendrift.models.physics_methods:878: min: 8.095330, mean: 13.320174, max: 14.182362
13:22:33 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.095330, mean: 13.320174, max: 14.182362
13:22:33 DEBUG opendrift:623: No elements hit coastline.
13:22:33 DEBUG opendrift:1626: No elements to deactivate
13:22:33 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:33 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:33 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:33 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:33 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:33 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:33 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:33 DEBUG opendrift.models.physics_methods:878: min: 8.095330, mean: 13.320174, max: 14.182363
13:22:33 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:34 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.102593, dN_50: 0.008051
13:22:34 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:34 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09940446675761141
13:22:34 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:34 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:34 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:34 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 709 surface elements
13:22:34 DEBUG opendrift.models.physics_methods:732: Advecting 722 of 6000 elements above 0.100m with wind-sheared ocean current (0.125898 m/s - 0.495612 m/s)
13:22:34 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:34 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013312670992847201 and 0.4207266504580065 m/s
13:22:34 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:34 DEBUG opendrift:2008: ======================================================================
13:22:34 INFO opendrift:2009: 2025-06-29 20:21:12.661168 - step 80 of 120 - 6000 active elements (0 deactivated)
13:22:34 DEBUG opendrift:2015: 0 elements scheduled.
13:22:34 DEBUG opendrift:2017: ======================================================================
13:22:34 DEBUG opendrift:2028: 33.855512403400695 <- latitude -> 34.8970187933086
13:22:34 DEBUG opendrift:2028: 22.055961190667418 <- longitude -> 23.367843756847492
13:22:34 DEBUG opendrift:2028: -81.27814312569637 <- z -> 0.0
13:22:34 DEBUG opendrift:2029: ---------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:34 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 18:00:00 (before)
2025-06-29 21:00:00 (after)
13:22:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 18:00:00) in space (linearNDFast)
13:22:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:34 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 21:00:00) in space (linearNDFast)
13:22:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:34 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 18:00:00, weight 0.22) and
after (2025-06-29 21:00:00, weight 0.78) in time
13:22:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 18:00:00 (before)
2025-06-29 21:00:00 (after)
13:22:34 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 18:00:00) in space (linearNDFast)
13:22:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:34 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-29 21:00:00) in space (linearNDFast)
13:22:34 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:34 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 18:00:00, weight 0.22) and
after (2025-06-29 21:00:00, weight 0.78) in time
13:22:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:34 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:34 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:34 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:34 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:34 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.849734 (min) 0.0453024 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.422675 (min) 0.28057 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: x_wind: -6.30132 (min) -2.00405 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.7028 (min) -9.75059 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:34 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:34 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.474610, mean: 5.852455, max: 7.042091
13:22:34 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:34 DEBUG opendrift.models.physics_methods:878: min: 8.570042, mean: 13.163170, max: 14.457073
13:22:34 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.570042, mean: 13.163170, max: 14.457073
13:22:34 DEBUG opendrift:623: No elements hit coastline.
13:22:34 DEBUG opendrift:1626: No elements to deactivate
13:22:34 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:34 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:34 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:34 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:34 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:34 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:34 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:34 DEBUG opendrift.models.physics_methods:878: min: 8.570043, mean: 13.163169, max: 14.457073
13:22:34 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:34 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.105663, dN_50: 0.008292
13:22:34 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:34 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.10329250064666717
13:22:34 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:34 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:34 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:34 DEBUG opendrift.models.physics_methods:732: Advecting 733 of 6000 elements above 0.100m with wind-sheared ocean current (0.080715 m/s - 0.505652 m/s)
13:22:34 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:34 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006278438647349281 and 0.4771005229423154 m/s
13:22:34 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:34 DEBUG opendrift:2008: ======================================================================
13:22:34 INFO opendrift:2009: 2025-06-29 21:21:12.661168 - step 81 of 120 - 6000 active elements (0 deactivated)
13:22:34 DEBUG opendrift:2015: 0 elements scheduled.
13:22:34 DEBUG opendrift:2017: ======================================================================
13:22:34 DEBUG opendrift:2028: 33.841250343204536 <- latitude -> 34.89652024852042
13:22:34 DEBUG opendrift:2028: 22.030924415577143 <- longitude -> 23.367732410405473
13:22:34 DEBUG opendrift:2028: -80.61929010154202 <- z -> 0.0
13:22:34 DEBUG opendrift:2029: ---------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:34 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:34 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:34 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:34 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:34 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:34 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:34 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:34 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 21:00:00 (before)
2025-06-30 00:00:00 (after)
13:22:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:35 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:35 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:35 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 26x35x20) for time after (2025-06-30 00:00:00)
13:22:35 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 21:00:00) in space (linearNDFast)
13:22:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:35 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 00:00:00) in space (linearNDFast)
13:22:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:35 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 21:00:00, weight 0.88) and
after (2025-06-30 00:00:00, weight 0.12) in time
13:22:35 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:35 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:35 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:35 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:35 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:35 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 21:00:00 (before)
2025-06-30 00:00:00 (after)
13:22:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:35 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:35 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:35 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 9x8x1) for time after (2025-06-30 00:00:00)
13:22:35 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 21:00:00) in space (linearNDFast)
13:22:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:35 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 00:00:00) in space (linearNDFast)
13:22:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:35 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 21:00:00, weight 0.88) and
after (2025-06-30 00:00:00, weight 0.12) in time
13:22:35 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:35 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:35 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:35 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:35 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:35 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:35 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:35 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:35 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.850909 (min) 0.0640851 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.398917 (min) 0.300097 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: x_wind: -5.62995 (min) -1.94709 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.768 (min) -9.9089 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:35 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.513046, mean: 5.688295, max: 6.891255
13:22:35 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:35 DEBUG opendrift.models.physics_methods:878: min: 8.636341, mean: 12.977543, max: 14.301406
13:22:35 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 8.636341, mean: 12.977543, max: 14.301406
13:22:35 DEBUG opendrift:623: No elements hit coastline.
13:22:35 DEBUG opendrift:1626: No elements to deactivate
13:22:35 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:35 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:35 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:35 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:35 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:35 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:35 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:35 DEBUG opendrift.models.physics_methods:878: min: 8.636341, mean: 12.977543, max: 14.301406
13:22:35 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:35 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.109195, dN_50: 0.008570
13:22:35 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:35 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.10108014916039627
13:22:35 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:35 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:35 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:35 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 731 surface elements
13:22:35 DEBUG opendrift.models.physics_methods:732: Advecting 743 of 6000 elements above 0.100m with wind-sheared ocean current (0.064500 m/s - 0.499627 m/s)
13:22:35 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:35 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0010727596974982804 and 0.41940185366467736 m/s
13:22:35 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:35 DEBUG opendrift:2008: ======================================================================
13:22:35 INFO opendrift:2009: 2025-06-29 22:21:12.661168 - step 82 of 120 - 6000 active elements (0 deactivated)
13:22:35 DEBUG opendrift:2015: 0 elements scheduled.
13:22:35 DEBUG opendrift:2017: ======================================================================
13:22:35 DEBUG opendrift:2028: 33.831099024451206 <- latitude -> 34.89791611765462
13:22:35 DEBUG opendrift:2028: 22.000847689016275 <- longitude -> 23.36127358492507
13:22:35 DEBUG opendrift:2028: -79.09606315883154 <- z -> 0.0
13:22:35 DEBUG opendrift:2029: ---------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:35 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:35 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:35 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:35 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:35 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:35 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:35 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:35 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:35 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:35 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:35 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:35 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:35 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:35 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:35 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:35 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 21:00:00 (before)
2025-06-30 00:00:00 (after)
13:22:35 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 21:00:00) in space (linearNDFast)
13:22:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:35 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 00:00:00) in space (linearNDFast)
13:22:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:35 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 21:00:00, weight 0.55) and
after (2025-06-30 00:00:00, weight 0.45) in time
13:22:35 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:35 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:35 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:35 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:35 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:35 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 21:00:00 (before)
2025-06-30 00:00:00 (after)
13:22:35 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 21:00:00) in space (linearNDFast)
13:22:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:35 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 00:00:00) in space (linearNDFast)
13:22:35 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:35 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 21:00:00, weight 0.55) and
after (2025-06-30 00:00:00, weight 0.45) in time
13:22:35 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:35 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:35 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:35 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:35 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:35 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:35 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:35 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:35 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:35 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.822697 (min) 0.0766371 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.386008 (min) 0.373471 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: x_wind: -4.62614 (min) -1.44729 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.3488 (min) -9.20882 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:35 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:35 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 2.137665, mean: 5.492096, max: 6.169701
13:22:35 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:35 DEBUG opendrift.models.physics_methods:878: min: 7.965250, mean: 12.757614, max: 13.531989
13:22:35 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.965250, mean: 12.757614, max: 13.531989
13:22:35 DEBUG opendrift:623: No elements hit coastline.
13:22:35 DEBUG opendrift:1626: No elements to deactivate
13:22:35 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:35 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:35 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:35 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:35 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:35 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:35 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:35 DEBUG opendrift.models.physics_methods:878: min: 7.965250, mean: 12.757613, max: 13.531989
13:22:35 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:35 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.113658, dN_50: 0.008920
13:22:35 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:35 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09049692342462423
13:22:35 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:35 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:35 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:36 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 737 surface elements
13:22:36 DEBUG opendrift.models.physics_methods:732: Advecting 758 of 6000 elements above 0.100m with wind-sheared ocean current (0.036008 m/s - 0.474535 m/s)
13:22:36 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:36 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020798665081284643 and 0.441656108850306 m/s
13:22:36 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:36 DEBUG opendrift:2008: ======================================================================
13:22:36 INFO opendrift:2009: 2025-06-29 23:21:12.661168 - step 83 of 120 - 6000 active elements (0 deactivated)
13:22:36 DEBUG opendrift:2015: 0 elements scheduled.
13:22:36 DEBUG opendrift:2017: ======================================================================
13:22:36 DEBUG opendrift:2028: 33.81158957267167 <- latitude -> 34.898458467667574
13:22:36 DEBUG opendrift:2028: 21.97263668953759 <- longitude -> 23.357253656802897
13:22:36 DEBUG opendrift:2028: -78.44099929626286 <- z -> 0.0
13:22:36 DEBUG opendrift:2029: ---------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:36 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:36 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:36 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:36 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:36 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:36 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:36 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:36 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:36 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:36 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:36 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:36 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:36 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:36 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 21:00:00 (before)
2025-06-30 00:00:00 (after)
13:22:36 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 21:00:00) in space (linearNDFast)
13:22:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:36 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 00:00:00) in space (linearNDFast)
13:22:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:36 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 21:00:00, weight 0.22) and
after (2025-06-30 00:00:00, weight 0.78) in time
13:22:36 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:36 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:36 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:36 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:36 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:36 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-29 21:00:00 (before)
2025-06-30 00:00:00 (after)
13:22:36 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-29 21:00:00) in space (linearNDFast)
13:22:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:36 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 00:00:00) in space (linearNDFast)
13:22:36 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:36 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-29 21:00:00, weight 0.22) and
after (2025-06-30 00:00:00, weight 0.78) in time
13:22:36 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:36 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:36 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:36 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:36 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:36 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:36 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:36 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:36 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.780417 (min) 0.12085 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.401385 (min) 0.470137 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: x_wind: -4.14321 (min) -0.856033 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.5056 (min) -8.52249 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:36 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:36 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.805837, mean: 5.343291, max: 5.998151
13:22:36 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:36 DEBUG opendrift.models.physics_methods:878: min: 7.320974, mean: 12.587074, max: 13.342533
13:22:36 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 7.320974, mean: 12.587074, max: 13.342533
13:22:36 DEBUG opendrift:623: No elements hit coastline.
13:22:36 DEBUG opendrift:1626: No elements to deactivate
13:22:36 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:36 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:36 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:36 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:36 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:36 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:36 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:36 DEBUG opendrift.models.physics_methods:878: min: 7.320974, mean: 12.587073, max: 13.342533
13:22:36 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:36 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.118048, dN_50: 0.009264
13:22:36 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:36 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.08798074150689453
13:22:36 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:36 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:36 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:36 DEBUG opendrift.models.physics_methods:732: Advecting 760 of 6000 elements above 0.100m with wind-sheared ocean current (0.023005 m/s - 0.456591 m/s)
13:22:36 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:36 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005375441605284121 and 0.4344706932306139 m/s
13:22:36 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:36 DEBUG opendrift:2008: ======================================================================
13:22:36 INFO opendrift:2009: 2025-06-30 00:21:12.661168 - step 84 of 120 - 6000 active elements (0 deactivated)
13:22:36 DEBUG opendrift:2015: 0 elements scheduled.
13:22:36 DEBUG opendrift:2017: ======================================================================
13:22:36 DEBUG opendrift:2028: 33.78990500826791 <- latitude -> 34.89803176319405
13:22:36 DEBUG opendrift:2028: 21.948874756393078 <- longitude -> 23.35660305314227
13:22:36 DEBUG opendrift:2028: -77.32125171461276 <- z -> 0.0
13:22:36 DEBUG opendrift:2029: ---------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:36 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:36 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:36 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:36 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:36 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:36 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:36 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:36 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:36 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:36 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:36 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:36 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:36 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:36 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:36 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:36 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 00:00:00 (before)
2025-06-30 03:00:00 (after)
13:22:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:37 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:37 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:37 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 27x36x19) for time after (2025-06-30 03:00:00)
13:22:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 00:00:00) in space (linearNDFast)
13:22:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:37 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 03:00:00) in space (linearNDFast)
13:22:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 00:00:00, weight 0.88) and
after (2025-06-30 03:00:00, weight 0.12) in time
13:22:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 00:00:00 (before)
2025-06-30 03:00:00 (after)
13:22:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:37 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:37 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:37 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 10x8x1) for time after (2025-06-30 03:00:00)
13:22:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 00:00:00) in space (linearNDFast)
13:22:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:37 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 03:00:00) in space (linearNDFast)
13:22:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 00:00:00, weight 0.88) and
after (2025-06-30 03:00:00, weight 0.12) in time
13:22:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:37 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:37 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:37 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:37 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.802619 (min) 0.183764 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.393644 (min) 0.573143 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: x_wind: -3.51619 (min) -0.442049 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.7507 (min) -7.84882 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:37 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.524709, mean: 5.325448, max: 6.159495
13:22:37 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:37 DEBUG opendrift.models.physics_methods:878: min: 6.727026, mean: 12.566200, max: 13.520792
13:22:37 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.727026, mean: 12.566200, max: 13.520792
13:22:37 DEBUG opendrift:623: No elements hit coastline.
13:22:37 DEBUG opendrift:1626: No elements to deactivate
13:22:37 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:37 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:37 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:37 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:37 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:37 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:37 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:37 DEBUG opendrift.models.physics_methods:878: min: 6.727026, mean: 12.566200, max: 13.520792
13:22:37 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:37 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.121446, dN_50: 0.009531
13:22:37 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:37 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09034721876936878
13:22:37 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:37 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:37 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:37 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 765 surface elements
13:22:37 DEBUG opendrift.models.physics_methods:732: Advecting 776 of 6000 elements above 0.100m with wind-sheared ocean current (0.063148 m/s - 0.466224 m/s)
13:22:37 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:37 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001310706160315397 and 0.4349095438296586 m/s
13:22:37 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:37 DEBUG opendrift:2008: ======================================================================
13:22:37 INFO opendrift:2009: 2025-06-30 01:21:12.661168 - step 85 of 120 - 6000 active elements (0 deactivated)
13:22:37 DEBUG opendrift:2015: 0 elements scheduled.
13:22:37 DEBUG opendrift:2017: ======================================================================
13:22:37 DEBUG opendrift:2028: 33.766881937160136 <- latitude -> 34.90140889446154
13:22:37 DEBUG opendrift:2028: 21.915185905365227 <- longitude -> 23.359481438931684
13:22:37 DEBUG opendrift:2028: -76.22692293412547 <- z -> 0.0
13:22:37 DEBUG opendrift:2029: ---------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:37 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:37 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:37 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 00:00:00 (before)
2025-06-30 03:00:00 (after)
13:22:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 00:00:00) in space (linearNDFast)
13:22:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:37 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 03:00:00) in space (linearNDFast)
13:22:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 00:00:00, weight 0.55) and
after (2025-06-30 03:00:00, weight 0.45) in time
13:22:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:37 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:37 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:37 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 00:00:00 (before)
2025-06-30 03:00:00 (after)
13:22:37 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 00:00:00) in space (linearNDFast)
13:22:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:37 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 03:00:00) in space (linearNDFast)
13:22:37 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:37 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 00:00:00, weight 0.55) and
after (2025-06-30 03:00:00, weight 0.45) in time
13:22:37 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:37 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:37 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:37 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:37 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:37 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:37 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:37 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.825042 (min) 0.11942 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.412464 (min) 0.552289 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: x_wind: -3.58892 (min) -0.917317 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.7914 (min) -7.13771 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:37 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:38 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.276257, mean: 5.478297, max: 6.245929
13:22:38 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:38 DEBUG opendrift.models.physics_methods:878: min: 6.154582, mean: 12.743812, max: 13.615327
13:22:38 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 6.154582, mean: 12.743812, max: 13.615327
13:22:38 DEBUG opendrift:623: No elements hit coastline.
13:22:38 DEBUG opendrift:1626: No elements to deactivate
13:22:38 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:38 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:38 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:38 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:38 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:38 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:38 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:38 DEBUG opendrift.models.physics_methods:878: min: 6.154583, mean: 12.743813, max: 13.615327
13:22:38 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:38 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.123216, dN_50: 0.009670
13:22:38 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:38 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0916149663871462
13:22:38 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:38 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:38 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:38 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 767 surface elements
13:22:38 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 766 surface elements
13:22:38 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 767 surface elements
13:22:38 DEBUG opendrift.models.physics_methods:732: Advecting 786 of 6000 elements above 0.100m with wind-sheared ocean current (0.084160 m/s - 0.470349 m/s)
13:22:38 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:38 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0003882557670129532 and 0.4704568977671336 m/s
13:22:38 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:38 DEBUG opendrift:2008: ======================================================================
13:22:38 INFO opendrift:2009: 2025-06-30 02:21:12.661168 - step 86 of 120 - 6000 active elements (0 deactivated)
13:22:38 DEBUG opendrift:2015: 0 elements scheduled.
13:22:38 DEBUG opendrift:2017: ======================================================================
13:22:38 DEBUG opendrift:2028: 33.741348059621615 <- latitude -> 34.899133217659525
13:22:38 DEBUG opendrift:2028: 21.881142743966304 <- longitude -> 23.354743243356566
13:22:38 DEBUG opendrift:2028: -75.01180024234034 <- z -> 0.0
13:22:38 DEBUG opendrift:2029: ---------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:38 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:38 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:38 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:38 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 00:00:00 (before)
2025-06-30 03:00:00 (after)
13:22:38 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 00:00:00) in space (linearNDFast)
13:22:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:38 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 03:00:00) in space (linearNDFast)
13:22:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:38 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 00:00:00, weight 0.22) and
after (2025-06-30 03:00:00, weight 0.78) in time
13:22:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:38 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:38 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 00:00:00 (before)
2025-06-30 03:00:00 (after)
13:22:38 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 00:00:00) in space (linearNDFast)
13:22:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:38 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 03:00:00) in space (linearNDFast)
13:22:38 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:38 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 00:00:00, weight 0.22) and
after (2025-06-30 03:00:00, weight 0.78) in time
13:22:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:38 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:38 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:38 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:38 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:38 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:38 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:38 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:38 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.875337 (min) 0.128017 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.485671 (min) 0.62091 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: x_wind: -4.07177 (min) -1.07443 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.8364 (min) -6.62549 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:38 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:38 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 1.126135, mean: 5.644561, max: 6.354165
13:22:38 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:38 DEBUG opendrift.models.physics_methods:878: min: 5.781291, mean: 12.934022, max: 13.732791
13:22:38 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.781291, mean: 12.934022, max: 13.732791
13:22:38 DEBUG opendrift:623: No elements hit coastline.
13:22:38 DEBUG opendrift:1626: No elements to deactivate
13:22:38 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:38 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:38 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:38 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:38 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:38 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:38 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:38 DEBUG opendrift.models.physics_methods:878: min: 5.781291, mean: 12.934021, max: 13.732791
13:22:38 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:38 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.124857, dN_50: 0.009799
13:22:38 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:38 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09320249431769688
13:22:38 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:38 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:38 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:38 DEBUG opendrift.models.physics_methods:732: Advecting 788 of 6000 elements above 0.100m with wind-sheared ocean current (0.095894 m/s - 0.476318 m/s)
13:22:38 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:38 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001961489192525383 and 0.5277103267406564 m/s
13:22:38 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:38 DEBUG opendrift:2008: ======================================================================
13:22:38 INFO opendrift:2009: 2025-06-30 03:21:12.661168 - step 87 of 120 - 6000 active elements (0 deactivated)
13:22:38 DEBUG opendrift:2015: 0 elements scheduled.
13:22:38 DEBUG opendrift:2017: ======================================================================
13:22:38 DEBUG opendrift:2028: 33.71194224510109 <- latitude -> 34.90027944069357
13:22:38 DEBUG opendrift:2028: 21.839080606173816 <- longitude -> 23.35207434796798
13:22:38 DEBUG opendrift:2028: -74.0658465045883 <- z -> 0.0
13:22:38 DEBUG opendrift:2029: ---------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:38 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:38 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:38 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:38 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:38 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:38 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:38 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:38 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:38 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:38 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 03:00:00 (before)
2025-06-30 06:00:00 (after)
13:22:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:39 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:39 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:39 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 28x38x19) for time after (2025-06-30 06:00:00)
13:22:39 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 03:00:00) in space (linearNDFast)
13:22:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:39 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 06:00:00) in space (linearNDFast)
13:22:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:39 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 03:00:00, weight 0.88) and
after (2025-06-30 06:00:00, weight 0.12) in time
13:22:39 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:39 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:39 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:39 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:39 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:39 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:39 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:39 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:39 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:39 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 03:00:00 (before)
2025-06-30 06:00:00 (after)
13:22:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:39 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:39 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:39 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 10x8x1) for time after (2025-06-30 06:00:00)
13:22:39 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 03:00:00) in space (linearNDFast)
13:22:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:39 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 06:00:00) in space (linearNDFast)
13:22:39 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:39 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 03:00:00, weight 0.88) and
after (2025-06-30 06:00:00, weight 0.12) in time
13:22:39 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:39 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:39 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:39 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:39 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:39 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:39 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:39 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:39 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:39 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.874443 (min) 0.155991 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.54302 (min) 0.643914 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: x_wind: -4.54091 (min) -0.941291 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.7149 (min) -5.90769 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:39 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:39 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.908212, mean: 5.711217, max: 6.418358
13:22:39 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:39 DEBUG opendrift.models.physics_methods:878: min: 5.191863, mean: 13.007250, max: 13.801986
13:22:39 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 5.191863, mean: 13.007250, max: 13.801986
13:22:39 DEBUG opendrift:623: No elements hit coastline.
13:22:39 DEBUG opendrift:1626: No elements to deactivate
13:22:39 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:39 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:39 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:39 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:39 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:39 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:39 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:39 DEBUG opendrift.models.physics_methods:878: min: 5.191864, mean: 13.007250, max: 13.801986
13:22:39 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:39 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.127049, dN_50: 0.009971
13:22:40 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:40 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09414403795255179
13:22:40 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:40 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:40 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:40 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 785 surface elements
13:22:40 DEBUG opendrift.models.physics_methods:732: Advecting 806 of 6000 elements above 0.100m with wind-sheared ocean current (0.018225 m/s - 0.484580 m/s)
13:22:40 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:40 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002379579192403369 and 0.5041930911674757 m/s
13:22:40 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:40 DEBUG opendrift:2008: ======================================================================
13:22:40 INFO opendrift:2009: 2025-06-30 04:21:12.661168 - step 88 of 120 - 6000 active elements (0 deactivated)
13:22:40 DEBUG opendrift:2015: 0 elements scheduled.
13:22:40 DEBUG opendrift:2017: ======================================================================
13:22:40 DEBUG opendrift:2028: 33.679372993146934 <- latitude -> 34.89823320966911
13:22:40 DEBUG opendrift:2028: 21.800071558678457 <- longitude -> 23.35395531205526
13:22:40 DEBUG opendrift:2028: -73.31479347451705 <- z -> 0.0
13:22:40 DEBUG opendrift:2029: ---------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:40 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:40 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:40 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 03:00:00 (before)
2025-06-30 06:00:00 (after)
13:22:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 03:00:00) in space (linearNDFast)
13:22:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:40 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 06:00:00) in space (linearNDFast)
13:22:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:40 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 03:00:00, weight 0.55) and
after (2025-06-30 06:00:00, weight 0.45) in time
13:22:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:40 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:40 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:40 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13: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
13:22:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 03:00:00 (before)
2025-06-30 06:00:00 (after)
13:22:40 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 03:00:00) in space (linearNDFast)
13:22:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:40 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 06:00:00) in space (linearNDFast)
13:22:40 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:40 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 03:00:00, weight 0.55) and
after (2025-06-30 06:00:00, weight 0.45) in time
13:22:40 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:40 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:40 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:40 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:40 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:40 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:40 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:40 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.766168 (min) 0.145071 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.548745 (min) 0.727028 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: x_wind: -4.90396 (min) -0.782921 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.4138 (min) -4.97316 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:40 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:40 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.623494, mean: 5.587070, max: 6.419104
13:22:40 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:40 DEBUG opendrift.models.physics_methods:878: min: 4.301757, mean: 12.857919, max: 13.802786
13:22:40 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.301757, mean: 12.857919, max: 13.802786
13:22:40 DEBUG opendrift:623: No elements hit coastline.
13:22:40 DEBUG opendrift:1626: No elements to deactivate
13:22:40 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:40 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:40 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:40 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:40 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:40 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:40 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:40 DEBUG opendrift.models.physics_methods:878: min: 4.301757, mean: 12.857920, max: 13.802787
13:22:40 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:40 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.130362, dN_50: 0.010231
13:22:40 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:40 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0941549673584039
13:22:40 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:40 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:40 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:40 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 795 surface elements
13:22:40 DEBUG opendrift.models.physics_methods:732: Advecting 811 of 6000 elements above 0.100m with wind-sheared ocean current (0.151032 m/s - 0.477062 m/s)
13:22:40 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:40 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00034733274805565334 and 0.4451736777185207 m/s
13:22:40 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:40 DEBUG opendrift:2008: ======================================================================
13:22:40 INFO opendrift:2009: 2025-06-30 05:21:12.661168 - step 89 of 120 - 6000 active elements (0 deactivated)
13:22:40 DEBUG opendrift:2015: 0 elements scheduled.
13:22:40 DEBUG opendrift:2017: ======================================================================
13:22:40 DEBUG opendrift:2028: 33.65427366592709 <- latitude -> 34.89307810316251
13:22:40 DEBUG opendrift:2028: 21.77506175158174 <- longitude -> 23.352311021955973
13:22:40 DEBUG opendrift:2028: -72.27991116209108 <- z -> 0.0
13:22:40 DEBUG opendrift:2029: ---------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:41 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:41 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:41 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:41 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:41 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 03:00:00 (before)
2025-06-30 06:00:00 (after)
13:22:41 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 03:00:00) in space (linearNDFast)
13:22:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:41 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 06:00:00) in space (linearNDFast)
13:22:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:41 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 03:00:00, weight 0.22) and
after (2025-06-30 06:00:00, weight 0.78) in time
13:22:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:41 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:41 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 03:00:00 (before)
2025-06-30 06:00:00 (after)
13:22:41 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 03:00:00) in space (linearNDFast)
13:22:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:41 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 06:00:00) in space (linearNDFast)
13:22:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:41 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 03:00:00, weight 0.22) and
after (2025-06-30 06:00:00, weight 0.78) in time
13:22:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:41 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:41 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:41 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:41 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:41 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:41 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:41 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.735919 (min) 0.146355 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.579545 (min) 0.801126 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: x_wind: -5.25397 (min) -0.12547 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.2908 (min) -4.11482 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:41 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.416907, mean: 5.480319, max: 6.428398
13:22:41 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:41 DEBUG opendrift.models.physics_methods:878: min: 3.517624, mean: 12.724266, max: 13.812775
13:22:41 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.517624, mean: 12.724266, max: 13.812775
13:22:41 DEBUG opendrift:623: No elements hit coastline.
13:22:41 DEBUG opendrift:1626: No elements to deactivate
13:22:41 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:41 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:41 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:41 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:41 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:41 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:41 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:41 DEBUG opendrift.models.physics_methods:878: min: 3.517624, mean: 12.724266, max: 13.812776
13:22:41 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:41 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.133591, dN_50: 0.010484
13:22:41 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:41 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09429129583114228
13:22:41 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:41 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:41 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:41 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 810 surface elements
13:22:41 DEBUG opendrift.models.physics_methods:732: Advecting 825 of 6000 elements above 0.100m with wind-sheared ocean current (0.001561 m/s - 0.468927 m/s)
13:22:41 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:41 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017535503768980605 and 0.47908382173916075 m/s
13:22:41 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:41 DEBUG opendrift:2008: ======================================================================
13:22:41 INFO opendrift:2009: 2025-06-30 06:21:12.661168 - step 90 of 120 - 6000 active elements (0 deactivated)
13:22:41 DEBUG opendrift:2015: 0 elements scheduled.
13:22:41 DEBUG opendrift:2017: ======================================================================
13:22:41 DEBUG opendrift:2028: 33.62757471911709 <- latitude -> 34.89735515322788
13:22:41 DEBUG opendrift:2028: 21.74726275457402 <- longitude -> 23.345360876614134
13:22:41 DEBUG opendrift:2028: -71.55867240331378 <- z -> 0.0
13:22:41 DEBUG opendrift:2029: ---------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:41 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:41 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:41 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:41 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:41 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 06:00:00 (before)
2025-06-30 09:00:00 (after)
13:22:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:41 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:41 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:41 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 29x40x19) for time after (2025-06-30 09:00:00)
13:22:41 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 06:00:00) in space (linearNDFast)
13:22:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:41 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 09:00:00) in space (linearNDFast)
13:22:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:41 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 06:00:00, weight 0.88) and
after (2025-06-30 09:00:00, weight 0.12) in time
13:22:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:41 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:41 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:41 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:41 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:41 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 06:00:00 (before)
2025-06-30 09:00:00 (after)
13:22:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:41 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:41 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:41 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:41 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 10x8x1) for time after (2025-06-30 09:00:00)
13:22:41 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 06:00:00) in space (linearNDFast)
13:22:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:41 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 09:00:00) in space (linearNDFast)
13:22:41 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:41 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 06:00:00, weight 0.88) and
after (2025-06-30 09:00:00, weight 0.12) in time
13:22:41 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:41 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:41 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:41 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:41 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:41 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:41 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:41 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:41 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:41 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.731151 (min) 0.1429 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.605972 (min) 0.867638 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: x_wind: -5.69278 (min) 0.293211 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: y_wind: -15.1506 (min) -3.26091 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:41 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:41 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.263699, mean: 5.394845, max: 6.443915
13:22:41 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:41 DEBUG opendrift.models.physics_methods:878: min: 2.797589, mean: 12.612878, max: 13.829437
13:22:41 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.797589, mean: 12.612878, max: 13.829437
13:22:41 DEBUG opendrift:623: No elements hit coastline.
13:22:41 DEBUG opendrift:1626: No elements to deactivate
13:22:41 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:41 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:41 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:41 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:41 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:41 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:41 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:41 DEBUG opendrift.models.physics_methods:878: min: 2.797589, mean: 12.612878, max: 13.829437
13:22:41 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:41 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.136460, dN_50: 0.010709
13:22:42 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:42 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0945188883683605
13:22:42 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:42 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:42 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:42 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 823 surface elements
13:22:42 DEBUG opendrift.models.physics_methods:732: Advecting 834 of 6000 elements above 0.100m with wind-sheared ocean current (0.042782 m/s - 0.455551 m/s)
13:22:42 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:42 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012002021765702769 and 0.4283210799017034 m/s
13:22:42 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:42 DEBUG opendrift:2008: ======================================================================
13:22:42 INFO opendrift:2009: 2025-06-30 07:21:12.661168 - step 91 of 120 - 6000 active elements (0 deactivated)
13:22:42 DEBUG opendrift:2015: 0 elements scheduled.
13:22:42 DEBUG opendrift:2017: ======================================================================
13:22:42 DEBUG opendrift:2028: 33.60759126422083 <- latitude -> 34.92511284314255
13:22:42 DEBUG opendrift:2028: 21.717357183135903 <- longitude -> 23.328559822902843
13:22:42 DEBUG opendrift:2028: -70.81232276944368 <- z -> 0.0
13:22:42 DEBUG opendrift:2029: ---------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:42 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 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
13:22:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 06:00:00 (before)
2025-06-30 09:00:00 (after)
13:22:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 06:00:00) in space (linearNDFast)
13:22:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:42 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 09:00:00) in space (linearNDFast)
13:22:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:42 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 06:00:00, weight 0.55) and
after (2025-06-30 09:00:00, weight 0.45) in time
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 06:00:00 (before)
2025-06-30 09:00:00 (after)
13:22:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 06:00:00) in space (linearNDFast)
13:22:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:42 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 09:00:00) in space (linearNDFast)
13:22:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:42 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 06:00:00, weight 0.55) and
after (2025-06-30 09:00:00, weight 0.45) in time
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:42 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:42 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:42 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.769904 (min) 0.135037 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.597846 (min) 0.849025 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: x_wind: -6.27704 (min) 0.30052 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: y_wind: -14.953 (min) -2.4414 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:42 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.148848, mean: 5.337258, max: 6.469611
13:22:42 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:42 DEBUG opendrift.models.physics_methods:878: min: 2.101847, mean: 12.532639, max: 13.856981
13:22:42 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.101847, mean: 12.532639, max: 13.856981
13:22:42 DEBUG opendrift:623: No elements hit coastline.
13:22:42 DEBUG opendrift:1626: No elements to deactivate
13:22:42 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:42 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:42 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:42 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:42 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:42 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:42 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:42 DEBUG opendrift.models.physics_methods:878: min: 2.101847, mean: 12.532640, max: 13.856981
13:22:42 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:42 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.138716, dN_50: 0.010886
13:22:42 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:42 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09489577658951842
13:22:42 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:42 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:42 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:42 DEBUG opendrift.models.physics_methods:732: Advecting 842 of 6000 elements above 0.100m with wind-sheared ocean current (0.038960 m/s - 0.453412 m/s)
13:22:42 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:42 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0003736112535820404 and 0.4456414110334116 m/s
13:22:42 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:42 DEBUG opendrift:2008: ======================================================================
13:22:42 INFO opendrift:2009: 2025-06-30 08:21:12.661168 - step 92 of 120 - 6000 active elements (0 deactivated)
13:22:42 DEBUG opendrift:2015: 0 elements scheduled.
13:22:42 DEBUG opendrift:2017: ======================================================================
13:22:42 DEBUG opendrift:2028: 33.5854312769708 <- latitude -> 34.95617964876649
13:22:42 DEBUG opendrift:2028: 21.690284575088608 <- longitude -> 23.316093925929017
13:22:42 DEBUG opendrift:2028: -69.90513272695105 <- z -> 0.0
13:22:42 DEBUG opendrift:2029: ---------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:42 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 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
13:22:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 06:00:00 (before)
2025-06-30 09:00:00 (after)
13:22:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 06:00:00) in space (linearNDFast)
13:22:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:42 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 09:00:00) in space (linearNDFast)
13:22:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:42 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 06:00:00, weight 0.22) and
after (2025-06-30 09:00:00, weight 0.78) in time
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 06:00:00 (before)
2025-06-30 09:00:00 (after)
13:22:42 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 06:00:00) in space (linearNDFast)
13:22:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:42 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 09:00:00) in space (linearNDFast)
13:22:42 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:42 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 06:00:00, weight 0.22) and
after (2025-06-30 09:00:00, weight 0.78) in time
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:42 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:42 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:42 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:42 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.747602 (min) 0.137545 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.60191 (min) 0.813214 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: x_wind: -6.83125 (min) 0.468055 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: y_wind: -14.744 (min) -1.55281 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:42 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:42 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.063502, mean: 5.303218, max: 6.495659
13:22:42 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:42 DEBUG opendrift.models.physics_methods:878: min: 1.372846, mean: 12.477978, max: 13.884850
13:22:42 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.372846, mean: 12.477978, max: 13.884850
13:22:42 DEBUG opendrift:623: No elements hit coastline.
13:22:42 DEBUG opendrift:1626: No elements to deactivate
13:22:42 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:42 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:42 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:42 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:42 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:42 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:42 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:42 DEBUG opendrift.models.physics_methods:878: min: 1.372846, mean: 12.477978, max: 13.884850
13:22:42 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:42 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.140831, dN_50: 0.011052
13:22:42 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:42 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09527784041318951
13:22:42 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:42 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:42 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:42 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 837 surface elements
13:22:42 DEBUG opendrift.models.physics_methods:732: Advecting 852 of 6000 elements above 0.100m with wind-sheared ocean current (0.029972 m/s - 0.458663 m/s)
13:22:42 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:42 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002164168508060224 and 0.4934371139603493 m/s
13:22:42 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:42 DEBUG opendrift:2008: ======================================================================
13:22:42 INFO opendrift:2009: 2025-06-30 09:21:12.661168 - step 93 of 120 - 6000 active elements (0 deactivated)
13:22:42 DEBUG opendrift:2015: 0 elements scheduled.
13:22:42 DEBUG opendrift:2017: ======================================================================
13:22:42 DEBUG opendrift:2028: 33.57014077503826 <- latitude -> 34.9831876911381
13:22:42 DEBUG opendrift:2028: 21.66826922198133 <- longitude -> 23.299341017236255
13:22:42 DEBUG opendrift:2028: -69.13976524270069 <- z -> 0.0
13:22:42 DEBUG opendrift:2029: ---------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:42 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:42 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:42 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:42 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:42 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:42 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:42 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:42 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
13:22:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 09:00:00 (before)
2025-06-30 12:00:00 (after)
13:22:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:44 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:44 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:44 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 29x43x18) for time after (2025-06-30 12:00:00)
13:22:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 09:00:00) in space (linearNDFast)
13:22:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:44 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 12:00:00) in space (linearNDFast)
13:22:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:44 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 09:00:00, weight 0.88) and
after (2025-06-30 12:00:00, weight 0.12) in time
13:22:44 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:44 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:44 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:44 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:44 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 09:00:00 (before)
2025-06-30 12:00:00 (after)
13:22:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:44 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:44 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:44 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 10x8x1) for time after (2025-06-30 12:00:00)
13:22:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 09:00:00) in space (linearNDFast)
13:22:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:44 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 12:00:00) in space (linearNDFast)
13:22:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:44 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 09:00:00, weight 0.88) and
after (2025-06-30 12:00:00, weight 0.12) in time
13:22:44 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:44 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:44 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:44 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:44 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:44 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:44 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:44 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:44 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.736922 (min) 0.154107 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.590224 (min) 0.759131 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: x_wind: -7.0319 (min) 0.704392 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: y_wind: -14.3594 (min) -1.15484 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:44 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.038277, mean: 5.065006, max: 6.288777
13:22:44 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:44 DEBUG opendrift.models.physics_methods:878: min: 1.065859, mean: 12.173128, max: 13.661950
13:22:44 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.065859, mean: 12.173128, max: 13.661950
13:22:44 DEBUG opendrift:623: No elements hit coastline.
13:22:44 DEBUG opendrift:1626: No elements to deactivate
13:22:44 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:44 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:44 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:44 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:44 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:44 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:44 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:44 DEBUG opendrift.models.physics_methods:878: min: 1.065859, mean: 12.173127, max: 13.661950
13:22:44 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:44 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.144492, dN_50: 0.011340
13:22:44 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:44 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.09224343542856028
13:22:44 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:44 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:44 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:44 DEBUG opendrift.models.physics_methods:732: Advecting 862 of 6000 elements above 0.100m with wind-sheared ocean current (0.032942 m/s - 0.456152 m/s)
13:22:44 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:44 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002814502431549774 and 0.43149785409241903 m/s
13:22:44 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:44 DEBUG opendrift:2008: ======================================================================
13:22:44 INFO opendrift:2009: 2025-06-30 10:21:12.661168 - step 94 of 120 - 6000 active elements (0 deactivated)
13:22:44 DEBUG opendrift:2015: 0 elements scheduled.
13:22:44 DEBUG opendrift:2017: ======================================================================
13:22:44 DEBUG opendrift:2028: 33.55752066270127 <- latitude -> 35.008564774497025
13:22:44 DEBUG opendrift:2028: 21.63662139430726 <- longitude -> 23.284580124904636
13:22:44 DEBUG opendrift:2028: -67.72749487324236 <- z -> 0.0
13:22:44 DEBUG opendrift:2029: ---------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:44 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:44 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:44 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:44 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:44 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:44 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:44 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:44 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:44 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:44 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:44 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:44 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:44 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:44 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:44 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:44 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
13:22:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 09:00:00 (before)
2025-06-30 12:00:00 (after)
13:22:44 WARNING opendrift.readers.basereader.structured:326: Data block from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:22:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 09:00:00) in space (linearNDFast)
13:22:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:44 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 12:00:00) in space (linearNDFast)
13:22:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:44 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 09:00:00, weight 0.55) and
after (2025-06-30 12:00:00, weight 0.45) in time
13:22:44 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:44 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:44 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:44 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:44 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 09:00:00 (before)
2025-06-30 12:00:00 (after)
13:22:44 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 09:00:00) in space (linearNDFast)
13:22:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:44 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 12:00:00) in space (linearNDFast)
13:22:44 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:44 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 09:00:00, weight 0.55) and
after (2025-06-30 12:00:00, weight 0.45) in time
13:22:44 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:44 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:44 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:44 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:44 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:44 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:44 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:44 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:44 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:44 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.766939 (min) 0.151825 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.497031 (min) 0.698251 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: x_wind: -6.81917 (min) 0.298813 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: y_wind: -13.6414 (min) -1.24607 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:44 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:44 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.040277, mean: 4.475099, max: 5.641501
13:22:44 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:44 DEBUG opendrift.models.physics_methods:878: min: 1.093345, mean: 11.399598, max: 12.939781
13:22:44 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.093345, mean: 11.399598, max: 12.939781
13:22:44 DEBUG opendrift:623: No elements hit coastline.
13:22:44 DEBUG opendrift:1626: No elements to deactivate
13:22:44 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:44 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:44 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:44 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:44 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:44 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:44 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:44 DEBUG opendrift.models.physics_methods:878: min: 1.093345, mean: 11.399598, max: 12.939781
13:22:44 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:44 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.151559, dN_50: 0.011894
13:22:45 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:45 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.08274965991935519
13:22:45 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:45 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:45 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:45 DEBUG opendrift.models.physics_methods:732: Advecting 869 of 6000 elements above 0.100m with wind-sheared ocean current (0.012037 m/s - 0.443927 m/s)
13:22:45 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:45 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026953783080129793 and 0.4406710913410033 m/s
13:22:45 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:45 DEBUG opendrift:2008: ======================================================================
13:22:45 INFO opendrift:2009: 2025-06-30 11:21:12.661168 - step 95 of 120 - 6000 active elements (0 deactivated)
13:22:45 DEBUG opendrift:2015: 0 elements scheduled.
13:22:45 DEBUG opendrift:2017: ======================================================================
13:22:45 DEBUG opendrift:2028: 33.55004565204684 <- latitude -> 35.029497975519064
13:22:45 DEBUG opendrift:2028: 21.59847984907196 <- longitude -> 23.27638486330068
13:22:45 DEBUG opendrift:2028: -67.0875649506731 <- z -> 0.0
13:22:45 DEBUG opendrift:2029: ---------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:45 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:45 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:45 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:45 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:45 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:45 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:45 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:45 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:45 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:45 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:45 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:45 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 09:00:00 (before)
2025-06-30 12:00:00 (after)
13:22:45 WARNING opendrift.readers.basereader.structured:326: Data block from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:22:45 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 09:00:00) in space (linearNDFast)
13:22:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:45 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 12:00:00) in space (linearNDFast)
13:22:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:45 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 09:00:00, weight 0.22) and
after (2025-06-30 12:00:00, weight 0.78) in time
13:22:45 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:45 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:45 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:45 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 09:00:00 (before)
2025-06-30 12:00:00 (after)
13:22:45 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 09:00:00) in space (linearNDFast)
13:22:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:45 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 12:00:00) in space (linearNDFast)
13:22:45 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:45 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 09:00:00, weight 0.22) and
after (2025-06-30 12:00:00, weight 0.78) in time
13:22:45 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:45 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:45 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:45 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:45 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:45 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:45 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:45 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:45 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.829657 (min) 0.145809 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.374664 (min) 0.574637 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: x_wind: -7.30296 (min) 0.102396 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: y_wind: -12.919 (min) 1.25113 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:45 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:45 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.000623, mean: 3.972788, max: 5.166358
13:22:45 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:45 DEBUG opendrift.models.physics_methods:878: min: 0.135931, mean: 10.686262, max: 12.382885
13:22:45 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.135931, mean: 10.686262, max: 12.382885
13:22:45 DEBUG opendrift:623: No elements hit coastline.
13:22:45 DEBUG opendrift:1626: No elements to deactivate
13:22:45 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:45 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:45 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:45 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:45 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:45 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:45 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:45 DEBUG opendrift.models.physics_methods:878: min: 0.135931, mean: 10.686262, max: 12.382885
13:22:45 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:45 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.160202, dN_50: 0.012573
13:22:45 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:45 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.0757806053669036
13:22:45 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:45 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:45 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:45 DEBUG opendrift.models.physics_methods:732: Advecting 879 of 6000 elements above 0.100m with wind-sheared ocean current (0.004772 m/s - 0.433834 m/s)
13:22:45 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:45 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007648867145661614 and 0.42067375800945606 m/s
13:22:45 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:45 DEBUG opendrift:2008: ======================================================================
13:22:45 INFO opendrift:2009: 2025-06-30 12:21:12.661168 - step 96 of 120 - 6000 active elements (0 deactivated)
13:22:45 DEBUG opendrift:2015: 0 elements scheduled.
13:22:45 DEBUG opendrift:2017: ======================================================================
13:22:45 DEBUG opendrift:2028: 33.54062796361245 <- latitude -> 35.051555591157836
13:22:45 DEBUG opendrift:2028: 21.55605193106903 <- longitude -> 23.270134277597286
13:22:45 DEBUG opendrift:2028: -66.40671983735817 <- z -> 0.0
13:22:45 DEBUG opendrift:2029: ---------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:45 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:45 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:45 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:45 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:45 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:45 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:45 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:45 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:45 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:45 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:45 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:45 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:45 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:45 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 12:00:00 (before)
2025-06-30 15:00:00 (after)
13:22:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:47 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:47 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:47 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 31x46x18) for time after (2025-06-30 15:00:00)
13:22:47 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 12:00:00) in space (linearNDFast)
13:22:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:47 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 15:00:00) in space (linearNDFast)
13:22:47 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:47 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 12:00:00, weight 0.88) and
after (2025-06-30 15:00:00, weight 0.12) in time
13:22:47 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:47 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:47 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:47 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:47 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:47 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:47 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:47 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:47 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 12:00:00 (before)
2025-06-30 15:00:00 (after)
13:22:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:48 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:48 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:48 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 10x9x1) for time after (2025-06-30 15:00:00)
13:22:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 12:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 15:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 12:00:00, weight 0.88) and
after (2025-06-30 15:00:00, weight 0.12) in time
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:48 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:48 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.932088 (min) 0.1451 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.35127 (min) 0.57943 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: x_wind: -7.52035 (min) 0.187321 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: y_wind: -12.5002 (min) 2.80526 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:48 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.000809, mean: 3.634872, max: 4.894673
13:22:48 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:48 DEBUG opendrift.models.physics_methods:878: min: 0.154927, mean: 10.192716, max: 12.052895
13:22:48 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.154927, mean: 10.192716, max: 12.052895
13:22:48 DEBUG opendrift:623: No elements hit coastline.
13:22:48 DEBUG opendrift:1626: No elements to deactivate
13:22:48 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:48 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:48 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:48 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:48 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:48 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:48 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:48 DEBUG opendrift.models.physics_methods:878: min: 0.154927, mean: 10.192717, max: 12.052896
13:22:48 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:48 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.165945, dN_50: 0.013023
13:22:48 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:48 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.07179572283953908
13:22:48 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:48 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:48 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:48 DEBUG opendrift.models.physics_methods:732: Advecting 887 of 6000 elements above 0.100m with wind-sheared ocean current (0.005439 m/s - 0.422855 m/s)
13:22:48 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:48 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0033863241795345335 and 0.46212223535195446 m/s
13:22:48 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:48 DEBUG opendrift:2008: ======================================================================
13:22:48 INFO opendrift:2009: 2025-06-30 13:21:12.661168 - step 97 of 120 - 6000 active elements (0 deactivated)
13:22:48 DEBUG opendrift:2015: 0 elements scheduled.
13:22:48 DEBUG opendrift:2017: ======================================================================
13:22:48 DEBUG opendrift:2028: 33.53900662988317 <- latitude -> 35.06300978210129
13:22:48 DEBUG opendrift:2028: 21.522454845227546 <- longitude -> 23.272049053714607
13:22:48 DEBUG opendrift:2028: -65.70556739350646 <- z -> 0.0
13:22:48 DEBUG opendrift:2029: ---------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:48 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:48 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:48 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 12:00:00 (before)
2025-06-30 15:00:00 (after)
13:22:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 12:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 15:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 12:00:00, weight 0.55) and
after (2025-06-30 15:00:00, weight 0.45) in time
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 12:00:00 (before)
2025-06-30 15:00:00 (after)
13:22:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 12:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 15:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 12:00:00, weight 0.55) and
after (2025-06-30 15:00:00, weight 0.45) in time
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:48 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:48 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.07116 (min) 0.166129 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.286352 (min) 0.586254 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: x_wind: -7.30983 (min) 0.95103 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: y_wind: -12.267 (min) 2.56562 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:48 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.000757, mean: 3.461412, max: 4.631441
13:22:48 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:48 DEBUG opendrift.models.physics_methods:878: min: 0.149887, mean: 9.940369, max: 11.724319
13:22:48 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.149887, mean: 9.940369, max: 11.724319
13:22:48 DEBUG opendrift:623: No elements hit coastline.
13:22:48 DEBUG opendrift:1626: No elements to deactivate
13:22:48 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:48 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:48 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:48 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:48 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:48 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:48 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:48 DEBUG opendrift.models.physics_methods:878: min: 0.149887, mean: 9.940369, max: 11.724319
13:22:48 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:48 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.173647, dN_50: 0.013628
13:22:48 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:48 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.06793482208191486
13:22:48 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:48 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:48 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:48 DEBUG opendrift.models.physics_methods:732: Advecting 886 of 6000 elements above 0.100m with wind-sheared ocean current (0.017302 m/s - 0.403954 m/s)
13:22:48 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:48 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003048056982646376 and 0.4177366528494146 m/s
13:22:48 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:48 DEBUG opendrift:2008: ======================================================================
13:22:48 INFO opendrift:2009: 2025-06-30 14:21:12.661168 - step 98 of 120 - 6000 active elements (0 deactivated)
13:22:48 DEBUG opendrift:2015: 0 elements scheduled.
13:22:48 DEBUG opendrift:2017: ======================================================================
13:22:48 DEBUG opendrift:2028: 33.53012730821185 <- latitude -> 35.070932344903504
13:22:48 DEBUG opendrift:2028: 21.480833128603734 <- longitude -> 23.280688556163277
13:22:48 DEBUG opendrift:2028: -64.34148264837768 <- z -> 0.0
13:22:48 DEBUG opendrift:2029: ---------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:48 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:48 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:48 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 12:00:00 (before)
2025-06-30 15:00:00 (after)
13:22:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 12:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 15:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 12:00:00, weight 0.22) and
after (2025-06-30 15:00:00, weight 0.78) in time
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:48 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:48 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 12:00:00 (before)
2025-06-30 15:00:00 (after)
13:22:48 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 12:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 15:00:00) in space (linearNDFast)
13:22:48 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:48 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 12:00:00, weight 0.22) and
after (2025-06-30 15:00:00, weight 0.78) in time
13:22:48 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:48 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:48 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:48 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:48 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:48 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:48 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.21316 (min) 0.217246 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.268187 (min) 0.588184 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: x_wind: -7.1711 (min) 1.76102 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: y_wind: -12.0155 (min) 2.36798 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:48 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:48 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.003804, mean: 3.284051, max: 4.538911
13:22:48 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:48 DEBUG opendrift.models.physics_methods:878: min: 0.336020, mean: 9.672918, max: 11.606610
13:22:48 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.336020, mean: 9.672918, max: 11.606610
13:22:48 DEBUG opendrift:623: No elements hit coastline.
13:22:48 DEBUG opendrift:1626: No elements to deactivate
13:22:48 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:48 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:48 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:48 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:48 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:48 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:48 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:48 DEBUG opendrift.models.physics_methods:878: min: 0.336020, mean: 9.672918, max: 11.606610
13:22:48 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:48 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.181853, dN_50: 0.014272
13:22:49 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:49 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.06657766487303769
13:22:49 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:49 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:49 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:49 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 890 surface elements
13:22:49 DEBUG opendrift.models.physics_methods:732: Advecting 904 of 6000 elements above 0.100m with wind-sheared ocean current (0.014085 m/s - 0.385076 m/s)
13:22:49 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:49 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006340066027842817 and 0.44209196924331534 m/s
13:22:49 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:49 DEBUG opendrift:2008: ======================================================================
13:22:49 INFO opendrift:2009: 2025-06-30 15:21:12.661168 - step 99 of 120 - 6000 active elements (0 deactivated)
13:22:49 DEBUG opendrift:2015: 0 elements scheduled.
13:22:49 DEBUG opendrift:2017: ======================================================================
13:22:49 DEBUG opendrift:2028: 33.526410353432055 <- latitude -> 35.08807191625066
13:22:49 DEBUG opendrift:2028: 21.43821490707639 <- longitude -> 23.28535535667744
13:22:49 DEBUG opendrift:2028: -63.76401373085994 <- z -> 0.0
13:22:49 DEBUG opendrift:2029: ---------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:49 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:49 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:49 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:49 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:49 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:49 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:49 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:49 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:49 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:49 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:49 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:49 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:49 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:49 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 15:00:00 (before)
2025-06-30 18:00:00 (after)
13:22:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:50 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:52 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:52 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:52 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 32x47x18) for time after (2025-06-30 18:00:00)
13:22:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 15:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 18:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 15:00:00, weight 0.88) and
after (2025-06-30 18:00:00, weight 0.12) in time
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 15:00:00 (before)
2025-06-30 18:00:00 (after)
13:22:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:52 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:52 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:52 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 11x9x1) for time after (2025-06-30 18:00:00)
13:22:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 15:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 18:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 15:00:00, weight 0.88) and
after (2025-06-30 18:00:00, weight 0.12) in time
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:52 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:52 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.39425 (min) 0.264636 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.277265 (min) 0.619081 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: x_wind: -6.56957 (min) 2.52275 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: y_wind: -11.5262 (min) 2.13436 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:52 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.000498, mean: 3.005198, max: 4.239575
13:22:52 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:52 DEBUG opendrift.models.physics_methods:878: min: 0.121626, mean: 9.241312, max: 11.217363
13:22:52 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.121626, mean: 9.241312, max: 11.217363
13:22:52 DEBUG opendrift:623: No elements hit coastline.
13:22:52 DEBUG opendrift:1626: No elements to deactivate
13:22:52 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:52 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:52 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:52 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:52 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:52 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:52 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:52 DEBUG opendrift.models.physics_methods:878: min: 0.121626, mean: 9.241311, max: 11.217362
13:22:52 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:52 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.192843, dN_50: 0.015134
13:22:52 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:52 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.062187223825034846
13:22:52 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:52 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:52 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:52 DEBUG opendrift.models.physics_methods:732: Advecting 905 of 6000 elements above 0.100m with wind-sheared ocean current (0.004270 m/s - 0.364669 m/s)
13:22:52 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:52 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 9.488085836408997e-05 and 0.4462860555777903 m/s
13:22:52 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:52 DEBUG opendrift:2008: ======================================================================
13:22:52 INFO opendrift:2009: 2025-06-30 16:21:12.661168 - step 100 of 120 - 6000 active elements (0 deactivated)
13:22:52 DEBUG opendrift:2015: 0 elements scheduled.
13:22:52 DEBUG opendrift:2017: ======================================================================
13:22:52 DEBUG opendrift:2028: 33.52097462187185 <- latitude -> 35.093894500425975
13:22:52 DEBUG opendrift:2028: 21.38087179252064 <- longitude -> 23.28977130122028
13:22:52 DEBUG opendrift:2028: -62.82318136575065 <- z -> 0.0
13:22:52 DEBUG opendrift:2029: ---------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:52 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 15:00:00 (before)
2025-06-30 18:00:00 (after)
13:22:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 15:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 18:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 15:00:00, weight 0.55) and
after (2025-06-30 18:00:00, weight 0.45) in time
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 15:00:00 (before)
2025-06-30 18:00:00 (after)
13:22:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 15:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 18:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 15:00:00, weight 0.55) and
after (2025-06-30 18:00:00, weight 0.45) in time
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:52 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:52 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.33632 (min) 0.282199 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.282606 (min) 0.692178 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: x_wind: -5.74898 (min) 3.23305 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.8354 (min) 1.96055 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:52 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.006034, mean: 2.588871, max: 3.551442
13:22:52 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:52 DEBUG opendrift.models.physics_methods:878: min: 0.423172, mean: 8.576482, max: 10.266726
13:22:52 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.423172, mean: 8.576482, max: 10.266726
13:22:52 DEBUG opendrift:623: No elements hit coastline.
13:22:52 DEBUG opendrift:1626: No elements to deactivate
13:22:52 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:52 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:52 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:52 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:52 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:52 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:52 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:52 DEBUG opendrift.models.physics_methods:878: min: 0.423172, mean: 8.576482, max: 10.266726
13:22:52 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:52 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.202496, dN_50: 0.015892
13:22:52 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:52 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.052094185467344296
13:22:52 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:52 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:52 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:52 DEBUG opendrift.models.physics_methods:732: Advecting 914 of 6000 elements above 0.100m with wind-sheared ocean current (0.014857 m/s - 0.342683 m/s)
13:22:52 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:52 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018854504801191312 and 0.433497052307942 m/s
13:22:52 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:52 DEBUG opendrift:2008: ======================================================================
13:22:52 INFO opendrift:2009: 2025-06-30 17:21:12.661168 - step 101 of 120 - 6000 active elements (0 deactivated)
13:22:52 DEBUG opendrift:2015: 0 elements scheduled.
13:22:52 DEBUG opendrift:2017: ======================================================================
13:22:52 DEBUG opendrift:2028: 33.52015225501436 <- latitude -> 35.10967110222169
13:22:52 DEBUG opendrift:2028: 21.326076628990904 <- longitude -> 23.29904716087525
13:22:52 DEBUG opendrift:2028: -61.9486419545539 <- z -> 0.0
13:22:52 DEBUG opendrift:2029: ---------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:52 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:52 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 15:00:00 (before)
2025-06-30 18:00:00 (after)
13:22:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 15:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 18:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 15:00:00, weight 0.22) and
after (2025-06-30 18:00:00, weight 0.78) in time
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:52 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:52 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 15:00:00 (before)
2025-06-30 18:00:00 (after)
13:22:52 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 15:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 18:00:00) in space (linearNDFast)
13:22:52 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:52 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 15:00:00, weight 0.22) and
after (2025-06-30 18:00:00, weight 0.78) in time
13:22:52 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:52 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:52 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:52 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:52 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:52 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:52 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.33876 (min) 0.296076 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.312127 (min) 0.717049 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: x_wind: -5.17025 (min) 3.94631 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.6298 (min) 2.13396 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:52 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:52 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.046249, mean: 2.250065, max: 2.986619
13:22:52 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:52 DEBUG opendrift.models.physics_methods:878: min: 1.171605, mean: 8.005877, max: 9.414981
13:22:52 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.171605, mean: 8.005877, max: 9.414981
13:22:52 DEBUG opendrift:623: No elements hit coastline.
13:22:53 DEBUG opendrift:1626: No elements to deactivate
13:22:53 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:53 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:53 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:53 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:53 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:53 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:53 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:53 DEBUG opendrift.models.physics_methods:878: min: 1.171605, mean: 8.005877, max: 9.414981
13:22:53 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:53 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.210280, dN_50: 0.016503
13:22:53 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:53 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.04380976281813327
13:22:53 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:53 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:53 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:53 DEBUG opendrift.models.physics_methods:732: Advecting 921 of 6000 elements above 0.100m with wind-sheared ocean current (0.004490 m/s - 0.328650 m/s)
13:22:53 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:53 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013918111845223683 and 0.44933950370336645 m/s
13:22:53 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:53 DEBUG opendrift:2008: ======================================================================
13:22:53 INFO opendrift:2009: 2025-06-30 18:21:12.661168 - step 102 of 120 - 6000 active elements (0 deactivated)
13:22:53 DEBUG opendrift:2015: 0 elements scheduled.
13:22:53 DEBUG opendrift:2017: ======================================================================
13:22:53 DEBUG opendrift:2028: 33.50895575833049 <- latitude -> 35.12989360022602
13:22:53 DEBUG opendrift:2028: 21.269176090971012 <- longitude -> 23.315756959405547
13:22:53 DEBUG opendrift:2028: -61.2478814494873 <- z -> 0.0
13:22:53 DEBUG opendrift:2029: ---------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:53 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:53 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:53 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:53 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:53 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:53 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:53 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:53 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:53 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:53 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:53 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:53 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:53 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
13:22:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 18:00:00 (before)
2025-06-30 21:00:00 (after)
13:22:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:54 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:54 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:54 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 34x49x18) for time after (2025-06-30 21:00:00)
13:22:54 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 18:00:00) in space (linearNDFast)
13:22:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:54 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 21:00:00) in space (linearNDFast)
13:22:54 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 18:00:00, weight 0.88) and
after (2025-06-30 21:00:00, weight 0.12) in time
13:22:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 18:00:00 (before)
2025-06-30 21:00:00 (after)
13:22:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:55 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:55 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:55 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 11x9x1) for time after (2025-06-30 21:00:00)
13:22:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 18:00:00) in space (linearNDFast)
13:22:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:55 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 21:00:00) in space (linearNDFast)
13:22:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 18:00:00, weight 0.88) and
after (2025-06-30 21:00:00, weight 0.12) in time
13:22:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:55 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:55 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:55 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:55 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.33246 (min) 0.299192 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.34243 (min) 0.769715 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: x_wind: -4.11047 (min) 4.26541 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.4702 (min) 2.2283 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:55 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.072246, mean: 2.022155, max: 2.760524
13:22:55 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:55 DEBUG opendrift.models.physics_methods:878: min: 1.464323, mean: 7.620477, max: 9.051599
13:22:55 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.464323, mean: 7.620477, max: 9.051599
13:22:55 DEBUG opendrift:623: No elements hit coastline.
13:22:55 DEBUG opendrift:1626: No elements to deactivate
13:22:55 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:55 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:55 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:55 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:55 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:55 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:55 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:55 DEBUG opendrift.models.physics_methods:878: min: 1.464323, mean: 7.620477, max: 9.051600
13:22:55 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:55 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.215061, dN_50: 0.016878
13:22:55 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:55 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.04049356249448899
13:22:55 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:55 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:55 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:55 DEBUG opendrift.models.physics_methods:732: Advecting 931 of 6000 elements above 0.100m with wind-sheared ocean current (0.049965 m/s - 0.314442 m/s)
13:22:55 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:55 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001498546767512832 and 0.5128868375072021 m/s
13:22:55 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:55 DEBUG opendrift:2008: ======================================================================
13:22:55 INFO opendrift:2009: 2025-06-30 19:21:12.661168 - step 103 of 120 - 6000 active elements (0 deactivated)
13:22:55 DEBUG opendrift:2015: 0 elements scheduled.
13:22:55 DEBUG opendrift:2017: ======================================================================
13:22:55 DEBUG opendrift:2028: 33.502031082096984 <- latitude -> 35.15631022327735
13:22:55 DEBUG opendrift:2028: 21.218312370162636 <- longitude -> 23.331451872345564
13:22:55 DEBUG opendrift:2028: -60.07866201491124 <- z -> 0.0
13:22:55 DEBUG opendrift:2029: ---------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:55 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:55 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:55 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 18:00:00 (before)
2025-06-30 21:00:00 (after)
13:22:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 18:00:00) in space (linearNDFast)
13:22:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:55 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 21:00:00) in space (linearNDFast)
13:22:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 18:00:00, weight 0.55) and
after (2025-06-30 21:00:00, weight 0.45) in time
13:22:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 18:00:00 (before)
2025-06-30 21:00:00 (after)
13:22:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 18:00:00) in space (linearNDFast)
13:22:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:55 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 21:00:00) in space (linearNDFast)
13:22:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:55 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 18:00:00, weight 0.55) and
after (2025-06-30 21:00:00, weight 0.45) in time
13:22:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:55 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:55 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:55 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:55 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:55 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.24656 (min) 0.29763 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.368037 (min) 0.735552 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: x_wind: -2.32413 (min) 4.25452 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.4262 (min) 1.57626 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:55 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:55 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.143987, mean: 1.933020, max: 2.675133
13:22:55 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:55 DEBUG opendrift.models.physics_methods:878: min: 2.067241, mean: 7.499691, max: 8.910504
13:22:55 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.067241, mean: 7.499691, max: 8.910504
13:22:55 DEBUG opendrift:623: No elements hit coastline.
13:22:55 DEBUG opendrift:1626: No elements to deactivate
13:22:55 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:55 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:55 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:55 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:55 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:55 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:55 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:55 DEBUG opendrift.models.physics_methods:878: min: 2.067241, mean: 7.499691, max: 8.910504
13:22:55 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:55 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.215854, dN_50: 0.016940
13:22:55 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:55 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.039241116044904524
13:22:55 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:55 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:55 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:55 DEBUG opendrift.models.physics_methods:732: Advecting 934 of 6000 elements above 0.100m with wind-sheared ocean current (0.067350 m/s - 0.309628 m/s)
13:22:55 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:55 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002504074671380457 and 0.45843017945001463 m/s
13:22:55 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:55 DEBUG opendrift:2008: ======================================================================
13:22:55 INFO opendrift:2009: 2025-06-30 20:21:12.661168 - step 104 of 120 - 6000 active elements (0 deactivated)
13:22:55 DEBUG opendrift:2015: 0 elements scheduled.
13:22:55 DEBUG opendrift:2017: ======================================================================
13:22:55 DEBUG opendrift:2028: 33.492491349768386 <- latitude -> 35.180996585695425
13:22:55 DEBUG opendrift:2028: 21.171515861855536 <- longitude -> 23.348707129630544
13:22:55 DEBUG opendrift:2028: -58.62033747779239 <- z -> 0.0
13:22:55 DEBUG opendrift:2029: ---------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:55 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:55 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:55 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:55 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:55 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:55 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:55 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:55 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:55 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 18:00:00 (before)
2025-06-30 21:00:00 (after)
13:22:55 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 18:00:00) in space (linearNDFast)
13:22:55 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:56 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 21:00:00) in space (linearNDFast)
13:22:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:56 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 18:00:00, weight 0.22) and
after (2025-06-30 21:00:00, weight 0.78) in time
13:22:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 18:00:00 (before)
2025-06-30 21:00:00 (after)
13:22:56 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 18:00:00) in space (linearNDFast)
13:22:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:56 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-06-30 21:00:00) in space (linearNDFast)
13:22:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:56 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 18:00:00, weight 0.22) and
after (2025-06-30 21:00:00, weight 0.78) in time
13:22:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:56 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:56 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:56 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:56 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.12663 (min) 0.321985 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.389657 (min) 0.790191 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: x_wind: -1.01253 (min) 4.47634 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.393 (min) 1.09529 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:56 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.144875, mean: 1.930781, max: 2.690722
13:22:56 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:56 DEBUG opendrift.models.physics_methods:878: min: 2.073609, mean: 7.516227, max: 8.936428
13:22:56 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.073609, mean: 7.516227, max: 8.936428
13:22:56 DEBUG opendrift:623: No elements hit coastline.
13:22:56 DEBUG opendrift:1626: No elements to deactivate
13:22:56 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:56 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:56 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:56 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:56 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:56 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:56 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:56 DEBUG opendrift.models.physics_methods:878: min: 2.073609, mean: 7.516227, max: 8.936428
13:22:56 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:56 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.216034, dN_50: 0.016954
13:22:56 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:56 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03946976626656005
13:22:56 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:56 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:56 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:56 DEBUG opendrift.models.physics_methods:732: Advecting 942 of 6000 elements above 0.100m with wind-sheared ocean current (0.035151 m/s - 0.311647 m/s)
13:22:56 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:56 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009558359597159394 and 0.5089750825802459 m/s
13:22:56 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:56 DEBUG opendrift:2008: ======================================================================
13:22:56 INFO opendrift:2009: 2025-06-30 21:21:12.661168 - step 105 of 120 - 6000 active elements (0 deactivated)
13:22:56 DEBUG opendrift:2015: 0 elements scheduled.
13:22:56 DEBUG opendrift:2017: ======================================================================
13:22:56 DEBUG opendrift:2028: 33.4827855503369 <- latitude -> 35.21106705640368
13:22:56 DEBUG opendrift:2028: 21.121138939661943 <- longitude -> 23.36175525437039
13:22:56 DEBUG opendrift:2028: -57.614459755485235 <- z -> 0.0
13:22:56 DEBUG opendrift:2029: ---------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:56 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:56 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 21:00:00 (before)
2025-07-01 00:00:00 (after)
13:22:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:56 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity']
13:22:56 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 37x51x17) for time after (2025-07-01 00:00:00)
13:22:56 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 21:00:00) in space (linearNDFast)
13:22:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:56 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 00:00:00) in space (linearNDFast)
13:22:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:56 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 21:00:00, weight 0.88) and
after (2025-07-01 00:00:00, weight 0.12) in time
13:22:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:56 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:56 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:56 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 21:00:00 (before)
2025-07-01 00:00:00 (after)
13:22:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:56 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:56 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:56 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 11x10x1) for time after (2025-07-01 00:00:00)
13:22:56 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 21:00:00) in space (linearNDFast)
13:22:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:56 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 00:00:00) in space (linearNDFast)
13:22:56 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:56 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 21:00:00, weight 0.88) and
after (2025-07-01 00:00:00, weight 0.12) in time
13:22:56 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:56 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:56 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:56 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:56 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:56 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:56 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:56 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.02107 (min) 0.332527 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.373643 (min) 0.815523 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.434181 (min) 4.17062 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: y_wind: -11.4655 (min) 0.635496 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:56 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:56 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.079377, mean: 1.880699, max: 3.271184
13:22:56 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:56 DEBUG opendrift.models.physics_methods:878: min: 1.534888, mean: 7.421773, max: 9.853309
13:22:56 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.534888, mean: 7.421773, max: 9.853309
13:22:56 DEBUG opendrift:623: No elements hit coastline.
13:22:56 DEBUG opendrift:1626: No elements to deactivate
13:22:56 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:56 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:56 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:56 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:56 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:56 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:56 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:56 DEBUG opendrift.models.physics_methods:878: min: 1.534888, mean: 7.421773, max: 9.853310
13:22:56 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:56 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.220028, dN_50: 0.017268
13:22:56 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:56 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.047983565414073545
13:22:56 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:56 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:56 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:57 DEBUG opendrift.models.physics_methods:732: Advecting 948 of 6000 elements above 0.100m with wind-sheared ocean current (0.035101 m/s - 0.345944 m/s)
13:22:57 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:57 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00240026956778681 and 0.4808215351219167 m/s
13:22:57 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:57 DEBUG opendrift:2008: ======================================================================
13:22:57 INFO opendrift:2009: 2025-06-30 22:21:12.661168 - step 106 of 120 - 6000 active elements (0 deactivated)
13:22:57 DEBUG opendrift:2015: 0 elements scheduled.
13:22:57 DEBUG opendrift:2017: ======================================================================
13:22:57 DEBUG opendrift:2028: 33.470602454741694 <- latitude -> 35.240202221027054
13:22:57 DEBUG opendrift:2028: 21.081272907820033 <- longitude -> 23.37327413638735
13:22:57 DEBUG opendrift:2028: -56.55371825171752 <- z -> 0.0
13:22:57 DEBUG opendrift:2029: ---------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 21:00:00 (before)
2025-07-01 00:00:00 (after)
13:22:57 WARNING opendrift.readers.basereader.structured:326: Data block from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:22:57 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 21:00:00) in space (linearNDFast)
13:22:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 00:00:00) in space (linearNDFast)
13:22:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:57 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 21:00:00, weight 0.55) and
after (2025-07-01 00:00:00, weight 0.45) in time
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 21:00:00 (before)
2025-07-01 00:00:00 (after)
13:22:57 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 21:00:00) in space (linearNDFast)
13:22:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:57 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 00:00:00) in space (linearNDFast)
13:22:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:57 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 21:00:00, weight 0.55) and
after (2025-07-01 00:00:00, weight 0.45) in time
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:57 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:57 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:57 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.924236 (min) 0.317806 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.398762 (min) 0.793679 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.243658 (min) 3.08044 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: y_wind: -10.6867 (min) 0.0902752 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:57 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.049981, mean: 1.627146, max: 2.832916
13:22:57 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:57 DEBUG opendrift.models.physics_methods:878: min: 1.217956, mean: 6.915681, max: 9.169516
13:22:57 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.217956, mean: 6.915681, max: 9.169516
13:22:57 DEBUG opendrift:623: No elements hit coastline.
13:22:57 DEBUG opendrift:1626: No elements to deactivate
13:22:57 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:57 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:57 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:57 DEBUG opendrift.models.physics_methods:878: min: 1.217956, mean: 6.915681, max: 9.169517
13:22:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.234402, dN_50: 0.018396
13:22:57 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:57 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.041555364849864905
13:22:57 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:57 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:57 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:57 DEBUG opendrift.models.physics_methods:732: Advecting 958 of 6000 elements above 0.100m with wind-sheared ocean current (0.042762 m/s - 0.321937 m/s)
13:22:57 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:57 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009428015987188532 and 0.5026022427268693 m/s
13:22:57 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:57 DEBUG opendrift:2008: ======================================================================
13:22:57 INFO opendrift:2009: 2025-06-30 23:21:12.661168 - step 107 of 120 - 6000 active elements (0 deactivated)
13:22:57 DEBUG opendrift:2015: 0 elements scheduled.
13:22:57 DEBUG opendrift:2017: ======================================================================
13:22:57 DEBUG opendrift:2028: 33.45491425518178 <- latitude -> 35.2655938328138
13:22:57 DEBUG opendrift:2028: 21.04385762390925 <- longitude -> 23.38633696231044
13:22:57 DEBUG opendrift:2028: -55.768069918731356 <- z -> 0.0
13:22:57 DEBUG opendrift:2029: ---------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 21:00:00 (before)
2025-07-01 00:00:00 (after)
13:22:57 WARNING opendrift.readers.basereader.structured:326: Data block from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:22:57 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 21:00:00) in space (linearNDFast)
13:22:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:22:57 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 00:00:00) in space (linearNDFast)
13:22:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:57 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 21:00:00, weight 0.22) and
after (2025-07-01 00:00:00, weight 0.78) in time
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-06-30 21:00:00 (before)
2025-07-01 00:00:00 (after)
13:22:57 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-06-30 21:00:00) in space (linearNDFast)
13:22:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:57 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 00:00:00) in space (linearNDFast)
13:22:57 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:57 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-06-30 21:00:00, weight 0.22) and
after (2025-07-01 00:00:00, weight 0.78) in time
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:57 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:57 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:57 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:57 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.811321 (min) 0.279162 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.444047 (min) 0.783139 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: x_wind: -1.09848 (min) 3.57852 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.96 (min) -0.381438 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:57 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:57 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.028512, mean: 1.401169, max: 2.446830
13:22:57 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:57 DEBUG opendrift.models.physics_methods:878: min: 0.919906, mean: 6.424613, max: 8.521803
13:22:57 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 0.919906, mean: 6.424613, max: 8.521803
13:22:57 DEBUG opendrift:623: No elements hit coastline.
13:22:57 DEBUG opendrift:1626: No elements to deactivate
13:22:57 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:57 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:57 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:57 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:57 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:57 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:57 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:57 DEBUG opendrift.models.physics_methods:878: min: 0.919906, mean: 6.424613, max: 8.521803
13:22:57 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:57 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.251010, dN_50: 0.019699
13:22:57 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:57 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03589253294940491
13:22:57 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:57 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:57 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:57 DEBUG opendrift.models.openoil.openoil:1041: Entraining 1 of 950 surface elements
13:22:57 DEBUG opendrift.models.physics_methods:732: Advecting 959 of 6000 elements above 0.100m with wind-sheared ocean current (0.032297 m/s - 0.298310 m/s)
13:22:57 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:57 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017594773186513444 and 0.45804193223410383 m/s
13:22:57 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:57 DEBUG opendrift:2008: ======================================================================
13:22:57 INFO opendrift:2009: 2025-07-01 00:21:12.661168 - step 108 of 120 - 6000 active elements (0 deactivated)
13:22:57 DEBUG opendrift:2015: 0 elements scheduled.
13:22:57 DEBUG opendrift:2017: ======================================================================
13:22:57 DEBUG opendrift:2028: 33.43518895338291 <- latitude -> 35.290174750492326
13:22:57 DEBUG opendrift:2028: 21.011670063834877 <- longitude -> 23.398611303459425
13:22:57 DEBUG opendrift:2028: -54.26775538282737 <- z -> 0.0
13:22:57 DEBUG opendrift:2029: ---------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:57 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:57 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:57 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:57 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:57 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:57 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:57 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:57 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:57 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 00:00:00 (before)
2025-07-01 03:00:00 (after)
13:22:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:22:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:22:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:58 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:22:58 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:22:58 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity']
13:22:58 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 39x55x17) for time after (2025-07-01 03:00:00)
13:22:58 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 00:00:00) in space (linearNDFast)
13:22:58 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:58 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 03:00:00) in space (linearNDFast)
13:22:58 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:58 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 00:00:00, weight 0.88) and
after (2025-07-01 03:00:00, weight 0.12) in time
13:22:58 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:58 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:58 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:58 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:58 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:58 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:58 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:58 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:58 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 00:00:00 (before)
2025-07-01 03:00:00 (after)
13:22:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:22:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:22:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:22:59 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:22:59 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:22:59 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 11x10x1) for time after (2025-07-01 03:00:00)
13:22:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 00:00:00) in space (linearNDFast)
13:22:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:59 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 03:00:00) in space (linearNDFast)
13:22:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:59 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 00:00:00, weight 0.88) and
after (2025-07-01 03:00:00, weight 0.12) in time
13:22:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:59 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:59 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:59 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:59 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.759364 (min) 0.318808 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.505456 (min) 0.794171 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: x_wind: -1.60697 (min) 3.81513 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.30282 (min) -1.14509 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:59 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.047467, mean: 1.237426, max: 2.132677
13:22:59 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:59 DEBUG opendrift.models.physics_methods:878: min: 1.186936, mean: 6.037599, max: 7.955951
13:22:59 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 1.186936, mean: 6.037599, max: 7.955951
13:22:59 DEBUG opendrift:623: No elements hit coastline.
13:22:59 DEBUG opendrift:1626: No elements to deactivate
13:22:59 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:59 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:59 DEBUG opendrift.models.physics_methods:878: min: 1.186936, mean: 6.037600, max: 7.955951
13:22:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.265886, dN_50: 0.020867
13:22:59 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:22:59 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03128476242884043
13:22:59 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:22:59 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:22:59 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:22:59 DEBUG opendrift.models.physics_methods:732: Advecting 963 of 6000 elements above 0.100m with wind-sheared ocean current (0.041673 m/s - 0.275909 m/s)
13:22:59 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:22:59 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016700736896748454 and 0.46759061437336674 m/s
13:22:59 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:22:59 DEBUG opendrift:2008: ======================================================================
13:22:59 INFO opendrift:2009: 2025-07-01 01:21:12.661168 - step 109 of 120 - 6000 active elements (0 deactivated)
13:22:59 DEBUG opendrift:2015: 0 elements scheduled.
13:22:59 DEBUG opendrift:2017: ======================================================================
13:22:59 DEBUG opendrift:2028: 33.418708739306396 <- latitude -> 35.31692064345458
13:22:59 DEBUG opendrift:2028: 20.98552691333204 <- longitude -> 23.40932527514018
13:22:59 DEBUG opendrift:2028: -53.415874538239756 <- z -> 0.0
13:22:59 DEBUG opendrift:2029: ---------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:22:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:22:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:22:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:22:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:22:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:59 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:22:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:22:59 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:22:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:22:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:22:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22:59 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
13:22:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 00:00:00 (before)
2025-07-01 03:00:00 (after)
13:22:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 00:00:00) in space (linearNDFast)
13:22:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:59 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 03:00:00) in space (linearNDFast)
13:22:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:59 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 00:00:00, weight 0.55) and
after (2025-07-01 03:00:00, weight 0.45) in time
13:22:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:59 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:22:59 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:22:59 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:22: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
13:22:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:22:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 00:00:00 (before)
2025-07-01 03:00:00 (after)
13:22:59 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 00:00:00) in space (linearNDFast)
13:22:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:59 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 03:00:00) in space (linearNDFast)
13:22:59 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:22:59 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 00:00:00, weight 0.55) and
after (2025-07-01 03:00:00, weight 0.45) in time
13:22:59 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:22:59 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:22:59 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:22:59 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:22:59 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:22:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:22:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:22:59 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:22:59 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:22:59 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.788419 (min) 0.284836 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.541421 (min) 0.786023 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: x_wind: -0.914201 (min) 3.46005 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.28965 (min) -2.66423 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:22:59 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:22:59 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.201479, mean: 1.149693, max: 1.702499
13:22:59 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:22:59 DEBUG opendrift.models.physics_methods:878: min: 2.445372, mean: 5.826648, max: 7.108418
13:22:59 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 2.445372, mean: 5.826648, max: 7.108418
13:22:59 DEBUG opendrift:623: No elements hit coastline.
13:22:59 DEBUG opendrift:1626: No elements to deactivate
13:22:59 DEBUG opendrift:2063: Calling OpenOil.update()
13:22:59 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:22:59 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:22:59 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:22:59 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:22:59 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:22:59 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:22:59 DEBUG opendrift.models.physics_methods:878: min: 2.445372, mean: 5.826648, max: 7.108418
13:22:59 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:22:59 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.273268, dN_50: 0.021446
13:23:00 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:00 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.024975223481652487
13:23:00 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:00 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:00 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:00 DEBUG opendrift.models.physics_methods:732: Advecting 967 of 6000 elements above 0.100m with wind-sheared ocean current (0.009765 m/s - 0.249573 m/s)
13:23:00 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:00 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025602435223366143 and 0.5240146547713409 m/s
13:23:00 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:00 DEBUG opendrift:2008: ======================================================================
13:23:00 INFO opendrift:2009: 2025-07-01 02:21:12.661168 - step 110 of 120 - 6000 active elements (0 deactivated)
13:23:00 DEBUG opendrift:2015: 0 elements scheduled.
13:23:00 DEBUG opendrift:2017: ======================================================================
13:23:00 DEBUG opendrift:2028: 33.40276110811382 <- latitude -> 35.34520449214524
13:23:00 DEBUG opendrift:2028: 20.959443451604816 <- longitude -> 23.4090093229363
13:23:00 DEBUG opendrift:2028: -52.45412509938289 <- z -> 0.0
13:23:00 DEBUG opendrift:2029: ---------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 00:00:00 (before)
2025-07-01 03:00:00 (after)
13:23:00 WARNING opendrift.readers.basereader.structured:326: Data block from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:23:00 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 00:00:00) in space (linearNDFast)
13:23:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:00 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 03:00:00) in space (linearNDFast)
13:23:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:00 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 00:00:00, weight 0.22) and
after (2025-07-01 03:00:00, weight 0.78) in time
13:23:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 00:00:00 (before)
2025-07-01 03:00:00 (after)
13:23:00 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 00:00:00) in space (linearNDFast)
13:23:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:00 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 03:00:00) in space (linearNDFast)
13:23:00 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:00 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 00:00:00, weight 0.22) and
after (2025-07-01 03:00:00, weight 0.78) in time
13:23:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:00 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:00 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:00 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:00 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:00 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.817563 (min) 0.303548 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.556628 (min) 0.782147 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: x_wind: -1.10522 (min) 3.38142 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.41039 (min) -4.42434 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:00 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:00 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.520633, mean: 1.071056, max: 1.504047
13:23:00 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:00 DEBUG opendrift.models.physics_methods:878: min: 3.930932, mean: 5.628800, max: 6.681289
13:23:00 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 3.930932, mean: 5.628800, max: 6.681289
13:23:00 DEBUG opendrift:623: No elements hit coastline.
13:23:00 DEBUG opendrift:1626: No elements to deactivate
13:23:00 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:00 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:00 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:00 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:00 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:00 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:00 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:00 DEBUG opendrift.models.physics_methods:878: min: 3.930932, mean: 5.628800, max: 6.681289
13:23:00 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:00 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.280847, dN_50: 0.022041
13:23:00 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:00 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.022064472384588005
13:23:00 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:00 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:00 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:00 DEBUG opendrift.models.physics_methods:732: Advecting 975 of 6000 elements above 0.100m with wind-sheared ocean current (0.117153 m/s - 0.234576 m/s)
13:23:00 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:00 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002000248961585391 and 0.5582165458719237 m/s
13:23:00 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:00 DEBUG opendrift:2008: ======================================================================
13:23:00 INFO opendrift:2009: 2025-07-01 03:21:12.661168 - step 111 of 120 - 6000 active elements (0 deactivated)
13:23:00 DEBUG opendrift:2015: 0 elements scheduled.
13:23:00 DEBUG opendrift:2017: ======================================================================
13:23:00 DEBUG opendrift:2028: 33.38416793733925 <- latitude -> 35.36789934355448
13:23:00 DEBUG opendrift:2028: 20.939820278431192 <- longitude -> 23.406379098110413
13:23:00 DEBUG opendrift:2028: -51.91064835849642 <- z -> 0.0
13:23:00 DEBUG opendrift:2029: ---------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:00 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:00 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:00 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:00 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:00 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:00 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:00 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:00 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 03:00:00 (before)
2025-07-01 06:00:00 (after)
13:23:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:23:01 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:23:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:23:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:23:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:23:02 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity']
13:23:02 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 40x58x17) for time after (2025-07-01 06:00:00)
13:23:02 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 03:00:00) in space (linearNDFast)
13:23:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:02 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 06:00:00) in space (linearNDFast)
13:23:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:02 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 03:00:00, weight 0.88) and
after (2025-07-01 06:00:00, weight 0.12) in time
13:23:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 03:00:00 (before)
2025-07-01 06:00:00 (after)
13:23:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:23:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:23:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:23:02 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:23:02 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:23:02 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 12x10x1) for time after (2025-07-01 06:00:00)
13:23:02 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 03:00:00) in space (linearNDFast)
13:23:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:02 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 06:00:00) in space (linearNDFast)
13:23:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:02 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 03:00:00, weight 0.88) and
after (2025-07-01 06:00:00, weight 0.12) in time
13:23:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:02 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:02 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:02 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:02 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.875491 (min) 0.337838 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.549346 (min) 0.754062 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: x_wind: -1.02772 (min) 3.26308 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: y_wind: -6.89093 (min) -5.26425 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:02 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.751381, mean: 1.023671, max: 1.380228
13:23:02 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:02 DEBUG opendrift.models.physics_methods:878: min: 4.722366, mean: 5.507082, max: 6.400369
13:23:02 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.722366, mean: 5.507082, max: 6.400369
13:23:02 DEBUG opendrift:623: No elements hit coastline.
13:23:02 DEBUG opendrift:1626: No elements to deactivate
13:23:02 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:02 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:02 DEBUG opendrift.models.physics_methods:878: min: 4.722366, mean: 5.507082, max: 6.400369
13:23:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.287218, dN_50: 0.022541
13:23:02 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:02 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.020248389423981147
13:23:02 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:02 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:02 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:02 DEBUG opendrift.models.physics_methods:732: Advecting 979 of 6000 elements above 0.100m with wind-sheared ocean current (0.005006 m/s - 0.224713 m/s)
13:23:02 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:02 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021492554007407367 and 0.43190766294847177 m/s
13:23:02 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:02 DEBUG opendrift:2008: ======================================================================
13:23:02 INFO opendrift:2009: 2025-07-01 04:21:12.661168 - step 112 of 120 - 6000 active elements (0 deactivated)
13:23:02 DEBUG opendrift:2015: 0 elements scheduled.
13:23:02 DEBUG opendrift:2017: ======================================================================
13:23:02 DEBUG opendrift:2028: 33.36600782676647 <- latitude -> 35.398052009422656
13:23:02 DEBUG opendrift:2028: 20.919275310420264 <- longitude -> 23.3969345023747
13:23:02 DEBUG opendrift:2028: -51.084640692310316 <- z -> 0.0
13:23:02 DEBUG opendrift:2029: ---------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:02 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:02 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 03:00:00 (before)
2025-07-01 06:00:00 (after)
13:23:02 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 03:00:00) in space (linearNDFast)
13:23:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:02 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 06:00:00) in space (linearNDFast)
13:23:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:02 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 03:00:00, weight 0.55) and
after (2025-07-01 06:00:00, weight 0.45) in time
13:23:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:02 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:02 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:02 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 03:00:00 (before)
2025-07-01 06:00:00 (after)
13:23:02 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 03:00:00) in space (linearNDFast)
13:23:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:02 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 06:00:00) in space (linearNDFast)
13:23:02 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:02 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 03:00:00, weight 0.55) and
after (2025-07-01 06:00:00, weight 0.45) in time
13:23:02 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:02 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:02 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:02 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:02 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:02 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:02 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:02 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.980818 (min) 0.345709 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.502113 (min) 0.678733 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.150449 (min) 2.93979 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: y_wind: -6.54027 (min) -5.14185 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:02 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:02 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.723013, mean: 1.021178, max: 1.234766
13:23:02 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:02 DEBUG opendrift.models.physics_methods:878: min: 4.632365, mean: 5.503201, max: 6.053714
13:23:02 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.632365, mean: 5.503201, max: 6.053714
13:23:02 DEBUG opendrift:623: No elements hit coastline.
13:23:02 DEBUG opendrift:1626: No elements to deactivate
13:23:02 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:02 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:02 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:02 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:02 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:02 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:02 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:02 DEBUG opendrift.models.physics_methods:878: min: 4.632365, mean: 5.503201, max: 6.053714
13:23:02 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:02 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.291117, dN_50: 0.022847
13:23:02 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:02 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.01811485658197785
13:23:02 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:02 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:02 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:02 DEBUG opendrift.models.physics_methods:732: Advecting 982 of 6000 elements above 0.100m with wind-sheared ocean current (0.000309 m/s - 0.212543 m/s)
13:23:02 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:03 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012295353761782903 and 0.4398515562058713 m/s
13:23:03 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:03 DEBUG opendrift:2008: ======================================================================
13:23:03 INFO opendrift:2009: 2025-07-01 05:21:12.661168 - step 113 of 120 - 6000 active elements (0 deactivated)
13:23:03 DEBUG opendrift:2015: 0 elements scheduled.
13:23:03 DEBUG opendrift:2017: ======================================================================
13:23:03 DEBUG opendrift:2028: 33.34728300085327 <- latitude -> 35.420412346581244
13:23:03 DEBUG opendrift:2028: 20.90356557418284 <- longitude -> 23.392726999762683
13:23:03 DEBUG opendrift:2028: -50.20396719828553 <- z -> 0.0
13:23:03 DEBUG opendrift:2029: ---------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:03 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:03 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:03 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:03 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:03 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:03 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:03 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 03:00:00 (before)
2025-07-01 06:00:00 (after)
13:23:03 WARNING opendrift.readers.basereader.structured:326: Data block from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd not large enough to cover element positions within timestep. Buffer size (4) must be increased. See `Variables.set_buffer_size`.
13:23:03 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 03:00:00) in space (linearNDFast)
13:23:03 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.interpolation.interpolators:131: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:23:03 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 06:00:00) in space (linearNDFast)
13:23:03 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:03 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 03:00:00, weight 0.22) and
after (2025-07-01 06:00:00, weight 0.78) in time
13:23:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:03 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:03 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:03 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:03 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
13:23:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 03:00:00 (before)
2025-07-01 06:00:00 (after)
13:23:03 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 03:00:00) in space (linearNDFast)
13:23:03 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:03 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 06:00:00) in space (linearNDFast)
13:23:03 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:03 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 03:00:00, weight 0.22) and
after (2025-07-01 06:00:00, weight 0.78) in time
13:23:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:03 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:03 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:03 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:03 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:03 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:03 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:03 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:03 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.0581 (min) 0.34253 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.460378 (min) 0.576058 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.26726 (min) 3.65264 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: y_wind: -6.76206 (min) -4.83137 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:03 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:03 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.670335, mean: 1.021436, max: 1.196171
13:23:03 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:03 DEBUG opendrift.models.physics_methods:878: min: 4.460419, mean: 5.502549, max: 5.958353
13:23:03 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.460419, mean: 5.502549, max: 5.958353
13:23:03 DEBUG opendrift:623: No elements hit coastline.
13:23:03 DEBUG opendrift:1626: No elements to deactivate
13:23:03 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:03 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:03 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:03 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:03 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:03 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:03 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:03 DEBUG opendrift.models.physics_methods:878: min: 4.460419, mean: 5.502550, max: 5.958353
13:23:03 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:03 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.294989, dN_50: 0.023151
13:23:03 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:03 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.01754876976867571
13:23:03 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:03 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:03 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:03 DEBUG opendrift.models.physics_methods:732: Advecting 990 of 6000 elements above 0.100m with wind-sheared ocean current (0.023265 m/s - 0.207990 m/s)
13:23:03 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:03 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008967653819413252 and 0.4572408692604236 m/s
13:23:03 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:03 DEBUG opendrift:2008: ======================================================================
13:23:03 INFO opendrift:2009: 2025-07-01 06:21:12.661168 - step 114 of 120 - 6000 active elements (0 deactivated)
13:23:03 DEBUG opendrift:2015: 0 elements scheduled.
13:23:03 DEBUG opendrift:2017: ======================================================================
13:23:03 DEBUG opendrift:2028: 33.32545717201995 <- latitude -> 35.43520307589056
13:23:03 DEBUG opendrift:2028: 20.886158941106626 <- longitude -> 23.394046917174535
13:23:03 DEBUG opendrift:2028: -49.50010194527211 <- z -> 0.0
13:23:03 DEBUG opendrift:2029: ---------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:03 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:03 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:03 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:03 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:03 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:03 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:03 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:03 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:03 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:03 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:03 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:03 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 06:00:00 (before)
2025-07-01 09:00:00 (after)
13:23:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:23:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:23:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:23:04 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:23:04 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:23:04 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity']
13:23:04 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 40x60x16) for time after (2025-07-01 09:00:00)
13:23:04 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 06:00:00) in space (linearNDFast)
13:23:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:04 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 09:00:00) in space (linearNDFast)
13:23:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:04 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 06:00:00, weight 0.88) and
after (2025-07-01 09:00:00, weight 0.12) in time
13:23:04 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:04 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:04 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:04 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:04 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:04 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:04 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:04 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:04 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 06:00:00 (before)
2025-07-01 09:00:00 (after)
13:23:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:23:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:23:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:23:04 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:23:04 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:23:04 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 12x10x1) for time after (2025-07-01 09:00:00)
13:23:04 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 06:00:00) in space (linearNDFast)
13:23:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:04 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 09:00:00) in space (linearNDFast)
13:23:04 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:04 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 06:00:00, weight 0.88) and
after (2025-07-01 09:00:00, weight 0.12) in time
13:23:04 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:04 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:04 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:04 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:04 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:04 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:04 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:04 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:04 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:04 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -1.00317 (min) 0.341692 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.475339 (min) 0.512492 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.27501 (min) 4.30629 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.16107 (min) -4.57385 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:04 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:04 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.628831, mean: 1.044302, max: 1.332237
13:23:04 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:04 DEBUG opendrift.models.physics_methods:878: min: 4.320128, mean: 5.560818, max: 6.288114
13:23:04 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.320128, mean: 5.560818, max: 6.288114
13:23:04 DEBUG opendrift:623: No elements hit coastline.
13:23:04 DEBUG opendrift:1626: No elements to deactivate
13:23:04 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:04 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:04 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:04 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:04 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:04 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:04 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:04 DEBUG opendrift.models.physics_methods:878: min: 4.320128, mean: 5.560818, max: 6.288115
13:23:04 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:04 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.297897, dN_50: 0.023379
13:23:05 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:05 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.019544496905343184
13:23:05 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:05 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:05 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:05 DEBUG opendrift.models.physics_methods:732: Advecting 993 of 6000 elements above 0.100m with wind-sheared ocean current (0.085422 m/s - 0.206041 m/s)
13:23:05 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:05 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009707063288379617 and 0.4271755764296733 m/s
13:23:05 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:05 DEBUG opendrift:2008: ======================================================================
13:23:05 INFO opendrift:2009: 2025-07-01 07:21:12.661168 - step 115 of 120 - 6000 active elements (0 deactivated)
13:23:05 DEBUG opendrift:2015: 0 elements scheduled.
13:23:05 DEBUG opendrift:2017: ======================================================================
13:23:05 DEBUG opendrift:2028: 33.3045088213914 <- latitude -> 35.45065770090994
13:23:05 DEBUG opendrift:2028: 20.865781580109964 <- longitude -> 23.38930546170943
13:23:05 DEBUG opendrift:2028: -48.11340455020535 <- z -> 0.0
13:23:05 DEBUG opendrift:2029: ---------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:05 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 06:00:00 (before)
2025-07-01 09:00:00 (after)
13:23:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 06:00:00) in space (linearNDFast)
13:23:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:05 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 09:00:00) in space (linearNDFast)
13:23:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:05 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 06:00:00, weight 0.55) and
after (2025-07-01 09:00:00, weight 0.45) in time
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 06:00:00 (before)
2025-07-01 09:00:00 (after)
13:23:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 06:00:00) in space (linearNDFast)
13:23:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:05 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 09:00:00) in space (linearNDFast)
13:23:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:05 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 06:00:00, weight 0.55) and
after (2025-07-01 09:00:00, weight 0.45) in time
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:05 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:05 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:05 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.969472 (min) 0.330551 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.47761 (min) 0.549464 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.25069 (min) 4.32788 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: y_wind: -7.79885 (min) -4.41363 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:05 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.681769, mean: 1.105938, max: 1.571117
13:23:05 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:05 DEBUG opendrift.models.physics_methods:878: min: 4.498297, mean: 5.719177, max: 6.828635
13:23:05 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.498297, mean: 5.719177, max: 6.828635
13:23:05 DEBUG opendrift:623: No elements hit coastline.
13:23:05 DEBUG opendrift:1626: No elements to deactivate
13:23:05 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:05 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:05 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:05 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:05 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:05 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:05 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:05 DEBUG opendrift.models.physics_methods:878: min: 4.498297, mean: 5.719177, max: 6.828635
13:23:05 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:05 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.298945, dN_50: 0.023461
13:23:05 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:05 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.023048214102876392
13:23:05 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:05 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:05 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:05 DEBUG opendrift.models.physics_methods:732: Advecting 999 of 6000 elements above 0.100m with wind-sheared ocean current (0.006709 m/s - 0.214283 m/s)
13:23:05 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:05 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001330586610839629 and 0.4439860040684126 m/s
13:23:05 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:05 DEBUG opendrift:2008: ======================================================================
13:23:05 INFO opendrift:2009: 2025-07-01 08:21:12.661168 - step 116 of 120 - 6000 active elements (0 deactivated)
13:23:05 DEBUG opendrift:2015: 0 elements scheduled.
13:23:05 DEBUG opendrift:2017: ======================================================================
13:23:05 DEBUG opendrift:2028: 33.28520943344213 <- latitude -> 35.463098987438535
13:23:05 DEBUG opendrift:2028: 20.846282261188055 <- longitude -> 23.397994836546367
13:23:05 DEBUG opendrift:2028: -46.80472600558542 <- z -> 0.0
13:23:05 DEBUG opendrift:2029: ---------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:05 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 06:00:00 (before)
2025-07-01 09:00:00 (after)
13:23:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 06:00:00) in space (linearNDFast)
13:23:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:05 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 09:00:00) in space (linearNDFast)
13:23:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:05 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 06:00:00, weight 0.22) and
after (2025-07-01 09:00:00, weight 0.78) in time
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 06:00:00 (before)
2025-07-01 09:00:00 (after)
13:23:05 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 06:00:00) in space (linearNDFast)
13:23:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:05 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 09:00:00) in space (linearNDFast)
13:23:05 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:05 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 06:00:00, weight 0.22) and
after (2025-07-01 09:00:00, weight 0.78) in time
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:05 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:05 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:05 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:05 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.98957 (min) 0.302341 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.466667 (min) 0.606475 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.23252 (min) 4.37402 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.43268 (min) -4.08746 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:05 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:05 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.661721, mean: 1.168907, max: 1.839578
13:23:05 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:05 DEBUG opendrift.models.physics_methods:878: min: 4.431666, mean: 5.873806, max: 7.389051
13:23:05 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.431666, mean: 5.873806, max: 7.389051
13:23:05 DEBUG opendrift:623: No elements hit coastline.
13:23:05 DEBUG opendrift:1626: No elements to deactivate
13:23:05 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:05 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:05 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:05 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:05 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:05 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:05 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:05 DEBUG opendrift.models.physics_methods:878: min: 4.431666, mean: 5.873806, max: 7.389051
13:23:05 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:05 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.299857, dN_50: 0.023533
13:23:05 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:05 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.02698579874501226
13:23:05 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:05 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:05 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:05 DEBUG opendrift.models.physics_methods:732: Advecting 1003 of 6000 elements above 0.100m with wind-sheared ocean current (0.011670 m/s - 0.231014 m/s)
13:23:05 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:05 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003253681457774012 and 0.42767805855437807 m/s
13:23:05 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:05 DEBUG opendrift:2008: ======================================================================
13:23:05 INFO opendrift:2009: 2025-07-01 09:21:12.661168 - step 117 of 120 - 6000 active elements (0 deactivated)
13:23:05 DEBUG opendrift:2015: 0 elements scheduled.
13:23:05 DEBUG opendrift:2017: ======================================================================
13:23:05 DEBUG opendrift:2028: 33.269959301310614 <- latitude -> 35.47722708486281
13:23:05 DEBUG opendrift:2028: 20.821377241789133 <- longitude -> 23.404955710963684
13:23:05 DEBUG opendrift:2028: -45.91402634482549 <- z -> 0.0
13:23:05 DEBUG opendrift:2029: ---------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:05 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:05 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:05 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:05 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:05 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:05 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:05 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 09:00:00 (before)
2025-07-01 12:00:00 (after)
13:23:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:23:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:23:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:23:07 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:23:07 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:23:07 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity']
13:23:07 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 41x63x16) for time after (2025-07-01 12:00:00)
13:23:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 09:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 12:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 09:00:00, weight 0.88) and
after (2025-07-01 12:00:00, weight 0.12) in time
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 09:00:00 (before)
2025-07-01 12:00:00 (after)
13:23:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:23:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:23:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:23:07 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:23:07 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:23:07 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 12x10x1) for time after (2025-07-01 12:00:00)
13:23:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 09:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 12:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 09:00:00, weight 0.88) and
after (2025-07-01 12:00:00, weight 0.12) in time
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:07 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:07 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.891763 (min) 0.29454 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.460246 (min) 0.644038 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.26175 (min) 4.20563 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: y_wind: -8.88613 (min) -3.90057 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:07 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.617027, mean: 1.256951, max: 2.052396
13:23:07 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:07 DEBUG opendrift.models.physics_methods:878: min: 4.279386, mean: 6.086570, max: 7.804771
13:23:07 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.279386, mean: 6.086570, max: 7.804771
13:23:07 DEBUG opendrift:623: No elements hit coastline.
13:23:07 DEBUG opendrift:1626: No elements to deactivate
13:23:07 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:07 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:07 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:07 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:07 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:07 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:07 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:07 DEBUG opendrift.models.physics_methods:878: min: 4.279387, mean: 6.086569, max: 7.804771
13:23:07 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:07 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.297485, dN_50: 0.023347
13:23:07 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:07 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03010726349848305
13:23:07 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:07 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:07 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:07 DEBUG opendrift.models.physics_methods:732: Advecting 1009 of 6000 elements above 0.100m with wind-sheared ocean current (0.006838 m/s - 0.244646 m/s)
13:23:07 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:07 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001617745802806303 and 0.43838747934617933 m/s
13:23:07 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:07 DEBUG opendrift:2008: ======================================================================
13:23:07 INFO opendrift:2009: 2025-07-01 10:21:12.661168 - step 118 of 120 - 6000 active elements (0 deactivated)
13:23:07 DEBUG opendrift:2015: 0 elements scheduled.
13:23:07 DEBUG opendrift:2017: ======================================================================
13:23:07 DEBUG opendrift:2028: 33.25614484535784 <- latitude -> 35.4864326638344
13:23:07 DEBUG opendrift:2028: 20.80022518047653 <- longitude -> 23.420322539840683
13:23:07 DEBUG opendrift:2028: -44.77197181846983 <- z -> 0.0
13:23:07 DEBUG opendrift:2029: ---------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:07 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:07 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:07 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 09:00:00 (before)
2025-07-01 12:00:00 (after)
13:23:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 09:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 12:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 09:00:00, weight 0.55) and
after (2025-07-01 12:00:00, weight 0.45) in time
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 09:00:00 (before)
2025-07-01 12:00:00 (after)
13:23:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 09:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 12:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 09:00:00, weight 0.55) and
after (2025-07-01 12:00:00, weight 0.45) in time
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:07 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:07 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.819749 (min) 0.275825 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.438288 (min) 0.655085 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: x_wind: 1.25838 (min) 4.55161 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.21408 (min) -4.03925 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:07 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.587953, mean: 1.395457, max: 2.147077
13:23:07 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:07 DEBUG opendrift.models.physics_methods:878: min: 4.177351, mean: 6.412770, max: 7.982766
13:23:07 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.177351, mean: 6.412770, max: 7.982766
13:23:07 DEBUG opendrift:623: No elements hit coastline.
13:23:07 DEBUG opendrift:1626: No elements to deactivate
13:23:07 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:07 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:07 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:07 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:07 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:07 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:07 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:07 DEBUG opendrift.models.physics_methods:878: min: 4.177351, mean: 6.412770, max: 7.982766
13:23:07 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:07 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.290144, dN_50: 0.022771
13:23:07 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:07 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03149597143412487
13:23:07 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:07 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:07 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:07 DEBUG opendrift.models.physics_methods:732: Advecting 1023 of 6000 elements above 0.100m with wind-sheared ocean current (0.005528 m/s - 0.253190 m/s)
13:23:07 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:07 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016099364511131119 and 0.45196291556779145 m/s
13:23:07 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:07 DEBUG opendrift:2008: ======================================================================
13:23:07 INFO opendrift:2009: 2025-07-01 11:21:12.661168 - step 119 of 120 - 6000 active elements (0 deactivated)
13:23:07 DEBUG opendrift:2015: 0 elements scheduled.
13:23:07 DEBUG opendrift:2017: ======================================================================
13:23:07 DEBUG opendrift:2028: 33.23576379558525 <- latitude -> 35.50042545724742
13:23:07 DEBUG opendrift:2028: 20.7766519607425 <- longitude -> 23.427457425676916
13:23:07 DEBUG opendrift:2028: -43.74647691477112 <- z -> 0.0
13:23:07 DEBUG opendrift:2029: ---------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:07 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:07 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:07 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 09:00:00 (before)
2025-07-01 12:00:00 (after)
13:23:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 09:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 12:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 09:00:00, weight 0.22) and
after (2025-07-01 12:00:00, weight 0.78) in time
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:07 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:07 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 09:00:00 (before)
2025-07-01 12:00:00 (after)
13:23:07 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 09:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 12:00:00) in space (linearNDFast)
13:23:07 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:07 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 09:00:00, weight 0.22) and
after (2025-07-01 12:00:00, weight 0.78) in time
13:23:07 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:07 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:07 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:07 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:07 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:07 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:07 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.737883 (min) 0.313456 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.415252 (min) 0.615573 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.770374 (min) 4.93142 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.55373 (min) -4.14877 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:07 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:07 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.564809, mean: 1.543635, max: 2.268551
13:23:07 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:07 DEBUG opendrift.models.physics_methods:878: min: 4.094306, mean: 6.741967, max: 8.205477
13:23:07 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.094306, mean: 6.741967, max: 8.205477
13:23:07 DEBUG opendrift:623: No elements hit coastline.
13:23:08 DEBUG opendrift:1626: No elements to deactivate
13:23:08 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:08 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:08 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:08 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:08 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:08 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:08 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:08 DEBUG opendrift.models.physics_methods:878: min: 4.094306, mean: 6.741968, max: 8.205477
13:23:08 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:08 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.283846, dN_50: 0.022276
13:23:08 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:08 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.033277662022445524
13:23:08 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:08 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:08 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:08 DEBUG opendrift.models.physics_methods:732: Advecting 1025 of 6000 elements above 0.100m with wind-sheared ocean current (0.053883 m/s - 0.263317 m/s)
13:23:08 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:08 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0030203377126949036 and 0.4430673946171603 m/s
13:23:08 DEBUG opendrift:846: to be seeded: 0, already seeded 6000
13:23:08 DEBUG opendrift:2008: ======================================================================
13:23:08 INFO opendrift:2009: 2025-07-01 12:21:12.661168 - step 120 of 120 - 6000 active elements (0 deactivated)
13:23:08 DEBUG opendrift:2015: 0 elements scheduled.
13:23:08 DEBUG opendrift:2017: ======================================================================
13:23:08 DEBUG opendrift:2028: 33.22501608970435 <- latitude -> 35.51767307440794
13:23:08 DEBUG opendrift:2028: 20.757663818604463 <- longitude -> 23.444684029306487
13:23:08 DEBUG opendrift:2028: -42.73704042097428 <- z -> 0.0
13:23:08 DEBUG opendrift:2029: ---------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:592: Variable group ['ocean_mixed_layer_thickness']
13:23:08 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:597: Calling reader constant_reader
13:23:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:08 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from constant_reader covering 6000 elements
13:23:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:08 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:08 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:08 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:08 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:08 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:08 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:08 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:08 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
13:23:08 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
13:23:08 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:08 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 12:00:00 (before)
2025-07-01 15:00:00 (after)
13:23:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
13:23:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
13:23:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:23:09 DEBUG opendrift.readers.basereader.variables:639: Checking x_sea_water_velocity for invalid values
13:23:09 DEBUG opendrift.readers.basereader.variables:639: Checking y_sea_water_velocity for invalid values
13:23:09 DEBUG opendrift.readers.interpolation.structured:70: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity']
13:23:09 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 43x65x15) for time after (2025-07-01 15:00:00)
13:23:09 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 12:00:00) in space (linearNDFast)
13:23:09 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:09 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 15:00:00) in space (linearNDFast)
13:23:09 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:09 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 12:00:00, weight 0.88) and
after (2025-07-01 15:00:00, weight 0.12) in time
13:23:09 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:09 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:09 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:09 DEBUG opendrift.models.basemodel.environment:592: Variable group ['x_wind', 'y_wind']
13:23:09 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:09 DEBUG opendrift.models.basemodel.environment:597: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
13:23:09 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:09 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23: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
13:23:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
13:23:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2025-07-01 12:00:00 (before)
2025-07-01 15:00:00 (after)
13:23:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using eastward_wind to retrieve x_wind
13:23:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:450: Using northward_wind to retrieve y_wind
13:23:10 DEBUG opendrift.readers.reader_netCDF_CF_generic:572: North is up, no rotation necessary
13:23:10 DEBUG opendrift.readers.basereader.variables:639: Checking x_wind for invalid values
13:23:10 DEBUG opendrift.readers.basereader.variables:639: Checking y_wind for invalid values
13:23:10 DEBUG opendrift.readers.basereader.structured:315: Fetched env-block (size 12x11x1) for time after (2025-07-01 15:00:00)
13:23:10 DEBUG opendrift.readers.basereader.structured:336: Interpolating before (2025-07-01 12:00:00) in space (linearNDFast)
13:23:10 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:10 DEBUG opendrift.readers.basereader.structured:342: Interpolating after (2025-07-01 15:00:00) in space (linearNDFast)
13:23:10 DEBUG opendrift.readers.interpolation.structured:97: Initialising interpolator.
13:23:10 DEBUG opendrift.readers.basereader.structured:357: Interpolating before (2025-07-01 12:00:00, weight 0.88) and
after (2025-07-01 15:00:00, weight 0.12) in time
13:23:10 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:10 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:10 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:10 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:10 DEBUG opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
13:23:10 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 10 for sea_water_temperature for all profiles
13:23:10 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 34 for sea_water_salinity for all profiles
13:23:10 DEBUG opendrift.models.basemodel.environment:787: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
13:23:10 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:10 DEBUG opendrift.models.basemodel.environment:889: x_sea_water_velocity: -0.692038 (min) 0.364088 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: y_sea_water_velocity: -0.397603 (min) 0.757238 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: x_wind: 0.554035 (min) 5.16376 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: y_wind: -9.52311 (min) -4.08414 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_surface_height: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_significant_height: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_ice_area_fraction: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_ice_x_velocity: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_ice_y_velocity: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_water_temperature: 10 (min) 10 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_water_salinity: 34 (min) 34 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:889: ocean_mixed_layer_thickness: 20 (min) 20 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:10 DEBUG opendrift.models.physics_methods:810: Calculating Hs from wind, min: 0.558353, mean: 1.610630, max: 2.242332
13:23:10 DEBUG opendrift.models.physics_methods:868: Calculating wave period Tm02 from wind
13:23:10 DEBUG opendrift.models.physics_methods:878: min: 4.070838, mean: 6.887183, max: 8.157922
13:23:10 DEBUG opendrift.models.physics_methods:818: Calculating wave period from wind, min: 4.070838, mean: 6.887183, max: 8.157922
13:23:10 DEBUG opendrift:623: No elements hit coastline.
13:23:10 DEBUG opendrift:1626: No elements to deactivate
13:23:10 DEBUG opendrift:2063: Calling OpenOil.update()
13:23:10 DEBUG opendrift.models.openoil.openoil:716: NOAA oil weathering
13:23:10 DEBUG opendrift.models.openoil.openoil:821: Calculating evaporation - NOAA
13:23:10 DEBUG opendrift.models.openoil.openoil:827: All surface oil elements older than 24 hours, skipping further evaporation.
13:23:10 DEBUG opendrift.models.openoil.openoil:854: Calculating emulsification - NOAA
13:23:10 DEBUG opendrift.models.openoil.openoil:557: Calculating: biodegradation (half_time)
13:23:10 DEBUG opendrift.models.physics_methods:860: Using mean period Tm02 as wave period
13:23:10 DEBUG opendrift.models.physics_methods:878: min: 4.070838, mean: 6.887183, max: 8.157922
13:23:10 DEBUG opendrift.models.openoil.openoil:1126: Generating wave breaking droplet size spectrum
13:23:10 DEBUG opendrift.models.openoil.openoil:1153: Droplet distribution median diameter dV_50: 0.281779, dN_50: 0.022114
13:23:10 DEBUG opendrift.models.oceandrift:401: Using diffusivity from Large1994 since model diffusivities not available
13:23:10 DEBUG opendrift.models.oceandrift:415: Diffusivities are in range 0.0 to 0.03289310558911719
13:23:10 DEBUG opendrift.models.oceandrift:434: TSprofiles deactivated for vertical mixing
13:23:10 DEBUG opendrift.models.oceandrift:448: Vertical mixing module:environment
13:23:10 DEBUG opendrift.models.oceandrift:451: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
13:23:10 DEBUG opendrift.models.physics_methods:732: Advecting 1033 of 6000 elements above 0.100m with wind-sheared ocean current (0.016641 m/s - 0.261119 m/s)
13:23:10 DEBUG opendrift.models.physics_methods:750: No Stokes drift velocity available
13:23:10 DEBUG opendrift:1588: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017514011302482905 and 0.4828962749563131 m/s
13:23:10 DEBUG opendrift:2101: Cleaning up
13:23:10 DEBUG opendrift.models.basemodel.environment:591: ----------------------------------------
13:23:10 DEBUG opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
13:23:10 DEBUG opendrift.models.basemodel.environment:593: ----------------------------------------
13:23:10 DEBUG opendrift.models.basemodel.environment:597: Calling reader global_landmask
13:23:10 DEBUG opendrift.models.basemodel.environment:598: ----------------------------------------
13:23:10 DEBUG opendrift.models.basemodel.environment:614: Data needed for 6000 elements
13:23:10 DEBUG opendrift.readers.basereader.variables:761: Fetching variables from global_landmask covering 6000 elements
13:23:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
13:23:10 DEBUG opendrift.readers.basereader.variables:639: Checking land_binary_mask for invalid values
13:23:10 DEBUG opendrift.readers.basereader.variables:797: Reader projection is latlon - rotation of vectors is not needed.
13:23:10 DEBUG opendrift.models.basemodel.environment:748: Obtained data for all elements.
13:23:10 DEBUG opendrift.models.basemodel.environment:761: ---------------------------------------
13:23:10 DEBUG opendrift.models.basemodel.environment:762: Finished processing all variable groups
13:23:10 DEBUG opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
13:23:10 DEBUG opendrift.models.basemodel.environment:889: land_binary_mask: 0 (min) 0 (max)
13:23:10 DEBUG opendrift.models.basemodel.environment:891: ---------------------------------
13:23:10 DEBUG opendrift:623: No elements hit coastline.
13:23:10 DEBUG opendrift:2187: Updating minval and maxval
13:23:10 DEBUG opendrift:2267: Writing to file
13:23:10 DEBUG opendrift:1626: No elements to deactivate
13:23:10 DEBUG opendrift:100: Changed mode from Mode.Run to Mode.Result
Plot and animate results
o.animation(color='z', markersize='mass_oil', markersize_scaling=80)
13:23:10 DEBUG opendrift:2334: Setting up map: corners=None, fast=False, lscale=None
13:23:10 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('i' level 1) with Cartopy shapereader...
13:23:12 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('i' level 5) with Cartopy shapereader...
13:23:12 DEBUG opendrift.readers.reader_global_landmask:84: Loading shapes ('i' level 6) with Cartopy shapereader...
13:23:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:13 DEBUG opendrift:2975: Saving animation..
13:23:13 INFO opendrift:4527: Saving animation to /root/project/docs/source/gallery/animations/example_oilspill_seafloor_biodegradation_0.gif...
13:23:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:14 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:15 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:16 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:17 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:18 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:19 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:20 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:21 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:22 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:23 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:24 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:25 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:26 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:27 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:28 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:29 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:30 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:31 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:32 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:33 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:34 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:35 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:36 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:37 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:38 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:39 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:40 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:41 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:42 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:43 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:44 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:44 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:44 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:44 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:45 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:45 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:45 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:45 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:46 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:46 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:46 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:46 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:46 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:47 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:47 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:47 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:47 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:48 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:48 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:48 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:48 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:49 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:49 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:49 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:50 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:50 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:50 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:50 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:51 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:51 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:51 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:51 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:52 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:52 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:52 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:52 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:53 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:53 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:53 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:53 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:54 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:54 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:54 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:54 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:54 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:55 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:55 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:55 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:55 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:56 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:56 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:56 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:56 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:57 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:57 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:57 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:57 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:58 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:58 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:58 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:58 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:59 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:59 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:59 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:23:59 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:00 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:00 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:00 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:01 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:02 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:03 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:04 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:05 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:06 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:07 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:08 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:09 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:10 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:11 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:12 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:13 DEBUG opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: i, extent: (20.334991455078125, 23.913110733032223, 33.00936508178711, 35.734600067138665)..
13:24:28 DEBUG opendrift:4565: MPLBACKEND = agg
13:24:28 DEBUG opendrift:4566: DISPLAY = None
13:24:28 DEBUG opendrift:4567: Time to save animation: 0:01:15.405621
13:24:29 INFO opendrift:2968: Time to make animation: 0:01:18.362479

o.plot_oil_budget(show_watercontent_and_viscosity=False, show_wind_and_current=False)

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()

Animation of vertical behaviour
o.animation_profile(markersize='mass_oil', markersize_scaling=80, color='z', alpha=.5)
13:24:29 DEBUG opendrift:2975: Saving animation..
13:24:29 INFO opendrift:4527: Saving animation to /root/project/docs/source/gallery/animations/example_oilspill_seafloor_biodegradation_1.gif...
13:24:53 DEBUG opendrift:4565: MPLBACKEND = agg
13:24:53 DEBUG opendrift:4566: DISPLAY = None
13:24:53 DEBUG opendrift:4567: Time to save animation: 0:00:23.790456
13:24:53 INFO opendrift:3178: Time to make animation: 0:00:23.942816

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