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()
20:11:28 DEBUG opendrift.config:168: Adding 18 config items from __init__
20:11:28 DEBUG opendrift.config:178: Overwriting config item readers:max_number_of_fails
20:11:28 DEBUG opendrift.config:168: Adding 6 config items from __init__
20:11:28 INFO opendrift.models.basemodel:515: OpenDriftSimulation initialised (version 1.12.0 / v1.12.0-26-g390e945)
20:11:28 DEBUG opendrift.config:168: Adding 15 config items from oceandrift
20:11:28 DEBUG opendrift.config:178: Overwriting config item seed:z
20:11:28 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})
20:11:28 DEBUG opendrift.readers.reader_lazy:38: Delaying initialisation of LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:28 DEBUG opendrift.readers.reader_lazy:38: Delaying initialisation of LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:28 DEBUG opendrift.models.basemodel.environment:328: Added reader LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:28 DEBUG opendrift.models.basemodel.environment:328: Added reader LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:28 INFO opendrift.config:68: set_config('drift:current_uncertainty', 0)
20:11:28 INFO opendrift.config:68: set_config('drift:wind_uncertainty', 0)
20:11:28 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)
20:11:28 INFO opendrift.models.openoil.openoil:1634: Droplet diameter is provided, and will be kept constant during simulation
20:11:28 INFO opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE
20:11:28 DEBUG opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE
20:11:28 INFO opendrift.models.openoil.openoil:1715: Using density 877.5726099999999 and viscosity 4.5431401718650355e-05 of oiltype GENERIC MEDIUM CRUDE
20:11:28 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
20:11:28 DEBUG opendrift.models.basemodel.environment:328: Added reader constant_reader
20:11:28 INFO opendrift.models.basemodel.environment:218: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1.3 m/s. Adding a customised landmask may be faster...
20:11:28 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
20:11:32 DEBUG opendrift.models.basemodel.environment:328: Added reader global_landmask
20:11:32 INFO opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_surface_height: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: upward_sea_water_velocity: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_significant_height: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_stokes_drift_x_velocity: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_stokes_drift_y_velocity: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_ice_area_fraction: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_ice_x_velocity: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_ice_y_velocity: 0.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_water_temperature: 10.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_water_salinity: 34.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: sea_floor_depth_below_sea_level: 10000.000000
20:11:32 INFO opendrift.models.basemodel.environment:248: ocean_vertical_diffusivity: 0.020000
20:11:32 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
20:11:32 INFO opendrift.models.openoil.openoil:1634: Droplet diameter is provided, and will be kept constant during simulation
20:11:32 INFO opendrift.models.openoil.adios.dirjs:86: Querying ADIOS database for oil: GENERIC MEDIUM CRUDE
20:11:32 DEBUG opendrift.models.openoil.adios.oil:76: Parsing Oil: AD04001 / GENERIC MEDIUM CRUDE
20:11:32 INFO opendrift.models.openoil.openoil:1715: 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, outfile='oil.nc')
20:11:32 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
20:11:34 DEBUG opendrift.models.basemodel:1777:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.12.0
Platform: Linux, 5.15.0-1057-aws
68.56774520874023 GB memory
36 processors (x86_64)
NumPy version 1.26.4
SciPy version 1.14.1
Matplotlib version 3.9.1
NetCDF4 version 1.6.1
Xarray version 2024.11.0
ADIOS (adios_db) version 1.2.5
Copernicusmarine version 1.3.5
Python version 3.11.6 | packaged by conda-forge | (main, Oct 3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------
20:11:34 DEBUG opendrift.models.basemodel:1909: Finalizing environment and preparing readers for simulation coverage ([17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399]) and time (2024-12-07 20:11:28.612916 to 2024-12-12 20:11:28.612916)
20:11:34 DEBUG opendrift.models.basemodel.environment:180: Preparing LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd for extent [17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399]
20:11:34 DEBUG opendrift.models.basemodel.environment:180: Preparing LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd for extent [17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399]
20:11:34 DEBUG opendrift.models.basemodel.environment:180: Preparing constant_reader for extent [17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399]
20:11:34 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for constant_reader
20:11:34 DEBUG opendrift.models.basemodel.environment:180: Preparing global_landmask for extent [17.320116865357402, 29.937168348157726, 29.680066240111348, 40.06288505760399]
20:11:34 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
20:11:34 INFO opendrift.models.basemodel:935: Using existing reader for land_binary_mask
20:11:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:34 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:34 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:11:34 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:11:34 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:11:34 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:11:34 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:11:34 INFO opendrift.models.basemodel:946: All points are in ocean
20:11:34 INFO opendrift.models.openoil.openoil:684: Oil-water surface tension is 0.031369 Nm
20:11:34 INFO opendrift.models.openoil.openoil:697: Max water fraction not available for GENERIC MEDIUM CRUDE, using default
20:11:34 DEBUG opendrift.models.basemodel:890: to be seeded: 6000, already seeded 0
20:11:34 DEBUG opendrift.models.basemodel:908: Released 6000 new elements.
20:11:34 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:11:34 INFO opendrift.models.basemodel:2035: 2024-12-07 20:11:28.612916 - step 1 of 120 - 6000 active elements (0 deactivated)
20:11:34 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:11:34 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:11:34 DEBUG opendrift.models.basemodel:2054: 34.996628 <- latitude -> 35.003426
20:11:34 DEBUG opendrift.models.basemodel:2059: 23.496576 <- longitude -> 23.503607
20:11:34 DEBUG opendrift.models.basemodel:2064: -150.0 <- z -> 0.0
20:11:34 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:11:34 DEBUG opendrift.models.basemodel.environment:581: Variables not covered by any reader: ['sea_surface_height', 'x_sea_water_velocity', 'sea_water_salinity', 'sea_floor_depth_below_sea_level', 'y_sea_water_velocity', 'sea_water_temperature', 'y_wind', 'x_wind']
20:11:34 DEBUG opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:34 DEBUG opendrift.readers:127: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
20:11:34 INFO opendrift.readers:58: Opening file with xr.open_dataset
20:11:35 WARNING opendrift.readers:64: Removing variables that cannot be CF decoded: ['tau']
20:11:35 DEBUG opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables.
20:11:35 INFO opendrift.readers.reader_netCDF_CF_generic:304: Grid coordinates are detected, but proj4 string not given: assuming latlong
20:11:35 INFO opendrift.readers.reader_netCDF_CF_generic:337: Detected dimensions: {'z': 'depth', 'y': 'lat', 'x': 'lon', 'time': 'time'}
20:11:35 DEBUG opendrift.readers.basereader.variables:608: 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
20:11:35 INFO opendrift.readers.basereader:176: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
20:11:35 INFO opendrift.readers.basereader:176: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
20:11:35 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
20:11:35 DEBUG opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
20:11:35 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
20:11:35 DEBUG opendrift.readers.basereader.variables:608: 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
20:11:35 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:35 DEBUG opendrift.readers.reader_lazy:72: Reader initialised: https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:35 DEBUG opendrift.readers.basereader.variables:608: 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
20:11:35 DEBUG opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:35 DEBUG opendrift.readers:127: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
20:11:35 INFO opendrift.readers:58: Opening file with xr.open_dataset
20:11:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables.
20:11:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:267: Lon and lat are 1D arrays - using as projection coordinates
20:11:37 INFO opendrift.readers.reader_netCDF_CF_generic:337: Detected dimensions: {'time': 'time', 'x': 'longitude', 'y': 'latitude'}
20:11:37 DEBUG opendrift.readers.basereader.variables:608: 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
20:11:37 INFO opendrift.readers.basereader:176: Variable x_wind will be rotated from eastward_wind
20:11:37 INFO opendrift.readers.basereader:176: Variable y_wind will be rotated from northward_wind
20:11:37 DEBUG opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
20:11:37 DEBUG opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
20:11:37 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
20:11:37 DEBUG opendrift.readers.basereader.variables:608: 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
20:11:37 DEBUG opendrift.readers.basereader.variables:549: Nothing more to prepare for https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:37 DEBUG opendrift.readers.reader_lazy:72: Reader initialised: https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:37 DEBUG opendrift.readers.basereader.variables:608: 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
20:11:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:11:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:11:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:11:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:11:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:11:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-07 18:00:00 (before)
2024-12-07 21:00:00 (after)
20:11:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:11:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:11:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:42 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:11:42 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:11:42 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 8x9x23) for time before (2024-12-07 18:00:00)
20:11:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:11:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:11:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:46 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:11:46 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:11:46 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x9x23) for time after (2024-12-07 21:00:00)
20:11:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-07 18:00:00) in space (linearNDFast)
20:11:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-07 21:00:00) in space (linearNDFast)
20:11:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-07 18:00:00, weight 0.27) and
after (2024-12-07 21:00:00, weight 0.73) in time
20:11:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:11:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:11:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-07 18:00:00 (before)
2024-12-07 21:00:00 (after)
20:11:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:11:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:11:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:11:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:11:47 DEBUG opendrift.readers.basereader.structured:291: Fetched env-block (size 7x7x1) for time before (2024-12-07 18:00:00)
20:11:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:11:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:11:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:47 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:11:47 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:11:47 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-07 21:00:00)
20:11:47 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-07 18:00:00) in space (linearNDFast)
20:11:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:47 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-07 21:00:00) in space (linearNDFast)
20:11:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:47 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-07 18:00:00, weight 0.27) and
after (2024-12-07 21:00:00, weight 0.73) in time
20:11:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:47 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:11:47 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:11:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:11:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:11:47 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:11:47 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:11:47 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0518328 (min) 0.192034 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.0437487 (min) -0.0361384 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.56242 (min) 5.57249 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.30403 (min) 5.3401 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:11:47 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:11:47 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.453596, mean: 1.457592, max: 1.463675
20:11:47 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:11:47 DEBUG opendrift.models.physics_methods:1061: min: 6.568277, mean: 6.577297, max: 6.591011
20:11:47 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.568277, mean: 6.577297, max: 6.591011
20:11:47 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:11:47 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:11:47 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:11:47 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:11:47 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:11:47 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:11:47 DEBUG opendrift.models.openoil.openoil:858: Emulsification not yet started
20:11:47 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:11:47 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:11:47 DEBUG opendrift.models.physics_methods:1061: min: 6.568277, mean: 6.577298, max: 6.591011
20:11:47 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:11:47 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.000846, dN_50: 0.000066
20:11:47 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:11:47 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.021472334803595162
20:11:47 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:11:47 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:11:47 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 228 of 3000 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 211 of 2772 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 177 of 2563 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 169 of 2386 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 168 of 2221 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 136 of 2056 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 154 of 1923 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 124 of 1772 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 127 of 1652 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 104 of 1534 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 121 of 1433 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 94 of 1319 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 83 of 1231 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 85 of 1150 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 75 of 1073 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 83 of 1001 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 84 of 927 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 57 of 845 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 59 of 791 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 64 of 734 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 51 of 675 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 46 of 628 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 35 of 584 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 30 of 549 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 44 of 523 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 46 of 484 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 36 of 443 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 33 of 410 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 24 of 381 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 29 of 362 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 24 of 334 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 31 of 314 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 26 of 286 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 23 of 265 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 18 of 244 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 18 of 231 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 17 of 219 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 13 of 208 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 15 of 199 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 8 of 187 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 14 of 181 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 13 of 169 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 12 of 160 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 6 of 150 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 15 of 145 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 16 of 133 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 7 of 119 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 10 of 114 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 6 of 109 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 7 of 105 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 4 of 100 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 8 of 100 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 13 of 95 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 5 of 82 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 7 of 81 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 75 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 5 of 75 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 6 of 72 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 7 of 71 surface elements
20:11:47 DEBUG opendrift.models.openoil.openoil:1033: Entraining 10 of 67 surface elements
20:11:47 DEBUG opendrift.models.physics_methods:915: Advecting 77 of 6000 elements above 0.100m with wind-sheared ocean current (0.010491 m/s - 0.231261 m/s)
20:11:47 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:11:47 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007415119119782797 and 0.45181176289201724 m/s
20:11:47 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:11:47 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:11:47 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:11:47 INFO opendrift.models.basemodel:2035: 2024-12-07 21:11:28.612916 - step 2 of 120 - 6000 active elements (0 deactivated)
20:11:47 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:11:47 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:11:47 DEBUG opendrift.models.basemodel:2054: 34.98614882213756 <- latitude -> 35.01273308182248
20:11:47 DEBUG opendrift.models.basemodel:2059: 23.485667481423956 <- longitude -> 23.52600770749094
20:11:47 DEBUG opendrift.models.basemodel:2064: -149.92524704114044 <- z -> 0.0
20:11:47 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:11:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:11:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:11:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:47 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:47 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:47 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:47 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:11:47 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:47 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:47 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:47 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:11:47 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:47 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-07 21:00:00 (before)
2024-12-08 00:00:00 (after)
20:11:47 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:11:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:11:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:11:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:11:48 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 9x9x23) for time after (2024-12-08 00:00:00)
20:11:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-07 21:00:00) in space (linearNDFast)
20:11:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 00:00:00) in space (linearNDFast)
20:11:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-07 21:00:00, weight 0.94) and
after (2024-12-08 00:00:00, weight 0.06) in time
20:11:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:11:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-07 21:00:00 (before)
2024-12-08 00:00:00 (after)
20:11:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:11:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:11:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:11:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:11:48 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-08 00:00:00)
20:11:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-07 21:00:00) in space (linearNDFast)
20:11:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 00:00:00) in space (linearNDFast)
20:11:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-07 21:00:00, weight 0.94) and
after (2024-12-08 00:00:00, weight 0.06) in time
20:11:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:48 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:11:48 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:11:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:11:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:11:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:11:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:11:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0448183 (min) 0.212484 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.118922 (min) -0.0266034 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.74111 (min) 5.78007 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.76181 (min) 5.93553 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:11:48 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.635035, mean: 1.653384, max: 1.679542
20:11:48 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:11:48 DEBUG opendrift.models.physics_methods:1061: min: 6.966154, mean: 7.005124, max: 7.060331
20:11:48 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.966154, mean: 7.005124, max: 7.060331
20:11:48 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:11:48 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:11:48 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:11:48 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:11:48 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:11:48 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:11:48 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:11:48 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:11:48 DEBUG opendrift.models.physics_methods:1061: min: 6.966155, mean: 7.005124, max: 7.060331
20:11:48 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:11:48 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.000856, dN_50: 0.000067
20:11:48 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:11:48 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.024638514929460207
20:11:48 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:11:48 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:11:48 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 58 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 73 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 80 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 5 of 81 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 81 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 81 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 81 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 84 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 84 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 84 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 85 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 91 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 89 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 89 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 101 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 102 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 102 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 105 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 105 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 108 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 108 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 108 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 107 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 107 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 111 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 110 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 113 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 111 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 115 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 117 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 119 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 121 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 122 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 122 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 123 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 124 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 125 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 124 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 123 surface elements
20:11:48 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 123 surface elements
20:11:48 DEBUG opendrift.models.physics_methods:915: Advecting 134 of 6000 elements above 0.100m with wind-sheared ocean current (0.011551 m/s - 0.247286 m/s)
20:11:48 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:11:48 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006187029221147531 and 0.44917116345340774 m/s
20:11:48 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:11:48 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:11:48 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:11:48 INFO opendrift.models.basemodel:2035: 2024-12-07 22:11:28.612916 - step 3 of 120 - 6000 active elements (0 deactivated)
20:11:48 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:11:48 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:11:48 DEBUG opendrift.models.basemodel:2054: 34.97980256854238 <- latitude -> 35.017104088335394
20:11:48 DEBUG opendrift.models.basemodel:2059: 23.48337602077722 <- longitude -> 23.540636592035266
20:11:48 DEBUG opendrift.models.basemodel:2064: -149.25762736124256 <- z -> 0.0
20:11:48 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:11:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:11:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:48 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:11:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-07 21:00:00 (before)
2024-12-08 00:00:00 (after)
20:11:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-07 21:00:00) in space (linearNDFast)
20:11:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 00:00:00) in space (linearNDFast)
20:11:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-07 21:00:00, weight 0.60) and
after (2024-12-08 00:00:00, weight 0.40) in time
20:11:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:11:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:11:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-07 21:00:00 (before)
2024-12-08 00:00:00 (after)
20:11:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-07 21:00:00) in space (linearNDFast)
20:11:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 00:00:00) in space (linearNDFast)
20:11:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-07 21:00:00, weight 0.60) and
after (2024-12-08 00:00:00, weight 0.40) in time
20:11:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:48 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:11:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:11:48 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:11:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:11:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:11:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:11:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:11:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0396976 (min) 0.240382 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.123495 (min) -0.0212206 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.9897 (min) 6.0462 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.09163 (min) 6.31876 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:11:48 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:11:48 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.810570, mean: 1.835913, max: 1.869188
20:11:48 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:11:48 DEBUG opendrift.models.physics_methods:1061: min: 7.330561, mean: 7.381672, max: 7.448282
20:11:48 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.330561, mean: 7.381672, max: 7.448282
20:11:48 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:11:49 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:11:49 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:11:49 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:11:49 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:11:49 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:11:49 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:11:49 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:11:49 DEBUG opendrift.models.physics_methods:1061: min: 7.330561, mean: 7.381672, max: 7.448282
20:11:49 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:11:49 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.000881, dN_50: 0.000069
20:11:49 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:11:49 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02742010160304161
20:11:49 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:11:49 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:11:49 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 122 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 122 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 122 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 121 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 125 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 131 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 7 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 128 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 128 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 131 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 130 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 137 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 140 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 139 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 4 of 137 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 135 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 135 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 134 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 134 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 134 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 135 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 135 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 134 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 4 of 134 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 131 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 131 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 136 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 137 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 136 surface elements
20:11:49 DEBUG opendrift.models.physics_methods:915: Advecting 144 of 6000 elements above 0.100m with wind-sheared ocean current (0.065512 m/s - 0.260931 m/s)
20:11:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:11:49 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0028491461483782397 and 0.44629425153650665 m/s
20:11:49 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:11:49 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:11:49 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:11:49 INFO opendrift.models.basemodel:2035: 2024-12-07 23:11:28.612916 - step 4 of 120 - 6000 active elements (0 deactivated)
20:11:49 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:11:49 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:11:49 DEBUG opendrift.models.basemodel:2054: 34.97180851488493 <- latitude -> 35.022016255147506
20:11:49 DEBUG opendrift.models.basemodel:2059: 23.4737977070924 <- longitude -> 23.55605848982929
20:11:49 DEBUG opendrift.models.basemodel:2064: -148.90679599086104 <- z -> 0.0
20:11:49 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:11:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:11:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:11:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-07 21:00:00 (before)
2024-12-08 00:00:00 (after)
20:11:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-07 21:00:00) in space (linearNDFast)
20:11:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 00:00:00) in space (linearNDFast)
20:11:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-07 21:00:00, weight 0.27) and
after (2024-12-08 00:00:00, weight 0.73) in time
20:11:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:11:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-07 21:00:00 (before)
2024-12-08 00:00:00 (after)
20:11:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-07 21:00:00) in space (linearNDFast)
20:11:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 00:00:00) in space (linearNDFast)
20:11:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-07 21:00:00, weight 0.27) and
after (2024-12-08 00:00:00, weight 0.73) in time
20:11:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:49 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:11:49 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:11:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:11:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:11:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:11:49 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:11:49 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.028805 (min) 0.266706 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.123105 (min) -0.00704985 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.23783 (min) 6.3258 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.4199 (min) 6.72229 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:11:49 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:11:49 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.998279, mean: 2.028868, max: 2.072640
20:11:49 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:11:49 DEBUG opendrift.models.physics_methods:1061: min: 7.701185, mean: 7.759884, max: 7.843167
20:11:49 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.701185, mean: 7.759884, max: 7.843167
20:11:49 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:11:49 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:11:49 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:11:49 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:11:49 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:11:49 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:11:49 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:11:49 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:11:49 DEBUG opendrift.models.physics_methods:1061: min: 7.701185, mean: 7.759884, max: 7.843167
20:11:49 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:11:49 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.000945, dN_50: 0.000074
20:11:49 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:11:49 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.030404183724951496
20:11:49 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:11:49 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:11:49 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 135 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 135 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 134 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 134 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 135 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 134 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 132 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 133 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 131 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 129 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 130 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 129 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 129 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 130 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 130 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 130 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 128 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 128 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 128 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 127 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 127 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 126 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 126 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 125 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 128 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 127 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 5 of 127 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 122 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 123 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 125 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 125 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 123 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 4 of 125 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 125 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 124 surface elements
20:11:49 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 123 surface elements
20:11:49 DEBUG opendrift.models.physics_methods:915: Advecting 134 of 6000 elements above 0.100m with wind-sheared ocean current (0.011589 m/s - 0.274286 m/s)
20:11:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:11:49 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009101120910275361 and 0.4309464221600793 m/s
20:11:49 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:11:49 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:11:49 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:11:49 INFO opendrift.models.basemodel:2035: 2024-12-08 00:11:28.612916 - step 5 of 120 - 6000 active elements (0 deactivated)
20:11:49 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:11:49 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:11:49 DEBUG opendrift.models.basemodel:2054: 34.96778444337297 <- latitude -> 35.0327889300338
20:11:49 DEBUG opendrift.models.basemodel:2059: 23.473223455360365 <- longitude -> 23.57682137208925
20:11:49 DEBUG opendrift.models.basemodel:2064: -147.95048162391438 <- z -> 0.0
20:11:49 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:11:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:11:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:11:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:11:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 00:00:00 (before)
2024-12-08 03:00:00 (after)
20:11:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:11:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:11:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:53 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:11:53 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:11:53 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 9x9x23) for time after (2024-12-08 03:00:00)
20:11:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 00:00:00) in space (linearNDFast)
20:11:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 03:00:00) in space (linearNDFast)
20:11:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 00:00:00, weight 0.94) and
after (2024-12-08 03:00:00, weight 0.06) in time
20:11:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:11:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:11:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 00:00:00 (before)
2024-12-08 03:00:00 (after)
20:11:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:11:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:11:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:54 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:11:54 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:11:54 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-08 03:00:00)
20:11:54 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 00:00:00) in space (linearNDFast)
20:11:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:54 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 03:00:00) in space (linearNDFast)
20:11:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:54 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 00:00:00, weight 0.94) and
after (2024-12-08 03:00:00, weight 0.06) in time
20:11:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:54 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:11:54 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:11:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:11:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:11:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:11:54 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:11:54 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0207706 (min) 0.287381 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.129311 (min) -0.00862739 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.3325 (min) 6.45246 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.76915 (min) 7.14061 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:11:54 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.148763, mean: 2.191113, max: 2.247021
20:11:54 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:11:54 DEBUG opendrift.models.physics_methods:1061: min: 7.985900, mean: 8.064177, max: 8.166447
20:11:54 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.985900, mean: 8.064177, max: 8.166447
20:11:54 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:11:54 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:11:54 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:11:54 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:11:54 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:11:54 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:11:54 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:11:54 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:11:54 DEBUG opendrift.models.physics_methods:1061: min: 7.985900, mean: 8.064178, max: 8.166448
20:11:54 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:11:54 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.001058, dN_50: 0.000083
20:11:54 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:11:54 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03296188680807481
20:11:54 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:11:54 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:11:54 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 124 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 123 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 122 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 122 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 4 of 121 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 118 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 119 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 119 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 119 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 120 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 125 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 126 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 131 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 131 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 130 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 131 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 130 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 129 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 129 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 128 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 128 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 128 surface elements
20:11:54 DEBUG opendrift.models.physics_methods:915: Advecting 143 of 6000 elements above 0.100m with wind-sheared ocean current (0.009949 m/s - 0.284296 m/s)
20:11:54 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:11:54 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003380636729584489 and 0.46612251038291197 m/s
20:11:54 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:11:54 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:11:54 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:11:54 INFO opendrift.models.basemodel:2035: 2024-12-08 01:11:28.612916 - step 6 of 120 - 6000 active elements (0 deactivated)
20:11:54 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:11:54 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:11:54 DEBUG opendrift.models.basemodel:2054: 34.964336047667516 <- latitude -> 35.03876886324294
20:11:54 DEBUG opendrift.models.basemodel:2059: 23.475088672884397 <- longitude -> 23.60032304244951
20:11:54 DEBUG opendrift.models.basemodel:2064: -146.98784711815406 <- z -> 0.0
20:11:54 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:11:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:11:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:11:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:54 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:11:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:11:54 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 00:00:00 (before)
2024-12-08 03:00:00 (after)
20:11:54 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 00:00:00) in space (linearNDFast)
20:11:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:54 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 03:00:00) in space (linearNDFast)
20:11:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:54 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 00:00:00, weight 0.60) and
after (2024-12-08 03:00:00, weight 0.40) in time
20:11:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:11:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:11:54 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 00:00:00 (before)
2024-12-08 03:00:00 (after)
20:11:54 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 00:00:00) in space (linearNDFast)
20:11:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:54 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 03:00:00) in space (linearNDFast)
20:11:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:54 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 00:00:00, weight 0.60) and
after (2024-12-08 03:00:00, weight 0.40) in time
20:11:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:54 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:11:54 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:11:54 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:11:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:11:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:11:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:11:54 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:11:54 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0193984 (min) 0.311551 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.129551 (min) 0.0224944 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.76544 (min) 5.93018 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.09844 (min) 7.6516 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:11:54 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:11:54 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.094441, mean: 2.197613, max: 2.268145
20:11:54 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:11:54 DEBUG opendrift.models.physics_methods:1061: min: 7.884309, mean: 8.076048, max: 8.204742
20:11:54 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.884309, mean: 8.076048, max: 8.204742
20:11:54 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:11:54 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:11:54 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:11:54 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:11:54 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:11:54 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:11:54 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:11:54 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:11:54 DEBUG opendrift.models.physics_methods:1061: min: 7.884309, mean: 8.076048, max: 8.204742
20:11:54 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:11:54 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.001248, dN_50: 0.000098
20:11:54 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:11:54 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03327171078467832
20:11:54 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:11:54 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:11:54 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 130 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 130 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 129 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 131 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 133 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 131 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 131 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 132 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 131 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 129 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 127 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 126 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 126 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 132 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 132 surface elements
20:11:54 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 134 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 135 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 135 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 136 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 136 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 135 surface elements
20:11:55 DEBUG opendrift.models.physics_methods:915: Advecting 140 of 6000 elements above 0.100m with wind-sheared ocean current (0.074655 m/s - 0.283753 m/s)
20:11:55 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:11:55 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.004161841768363598 and 0.445781632089122 m/s
20:11:55 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:11:55 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:11:55 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:11:55 INFO opendrift.models.basemodel:2035: 2024-12-08 02:11:28.612916 - step 7 of 120 - 6000 active elements (0 deactivated)
20:11:55 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:11:55 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:11:55 DEBUG opendrift.models.basemodel:2054: 34.95868389549097 <- latitude -> 35.053776128643605
20:11:55 DEBUG opendrift.models.basemodel:2059: 23.471935420159067 <- longitude -> 23.61783723368501
20:11:55 DEBUG opendrift.models.basemodel:2064: -146.40197658839745 <- z -> 0.0
20:11:55 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:11:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:11:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:55 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:11:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 00:00:00 (before)
2024-12-08 03:00:00 (after)
20:11:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 00:00:00) in space (linearNDFast)
20:11:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:55 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 03:00:00) in space (linearNDFast)
20:11:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:55 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 00:00:00, weight 0.27) and
after (2024-12-08 03:00:00, weight 0.73) in time
20:11:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:11:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 00:00:00 (before)
2024-12-08 03:00:00 (after)
20:11:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 00:00:00) in space (linearNDFast)
20:11:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:55 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 03:00:00) in space (linearNDFast)
20:11:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:55 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 00:00:00, weight 0.27) and
after (2024-12-08 03:00:00, weight 0.73) in time
20:11:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:55 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:11:55 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:11:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:11:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:11:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:11:55 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:11:55 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0161429 (min) 0.326826 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.135635 (min) 0.0464076 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.16752 (min) 5.40063 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.39559 (min) 8.16852 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:11:55 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:11:55 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.052784, mean: 2.226164, max: 2.320408
20:11:55 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:11:55 DEBUG opendrift.models.physics_methods:1061: min: 7.805509, mean: 8.128151, max: 8.298732
20:11:55 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.805509, mean: 8.128151, max: 8.298732
20:11:55 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:11:55 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:11:55 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:11:55 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:11:55 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:11:55 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:11:55 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:11:55 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:11:55 DEBUG opendrift.models.physics_methods:1061: min: 7.805509, mean: 8.128151, max: 8.298733
20:11:55 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:11:55 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.001469, dN_50: 0.000115
20:11:55 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:11:55 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03403827110622631
20:11:55 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:11:55 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:11:55 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 133 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 135 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 135 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 135 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 136 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 136 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 141 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 142 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 143 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 148 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 149 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 148 surface elements
20:11:55 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 148 surface elements
20:11:55 DEBUG opendrift.models.physics_methods:915: Advecting 158 of 6000 elements above 0.100m with wind-sheared ocean current (0.033293 m/s - 0.285580 m/s)
20:11:55 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:11:55 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002694005446996871 and 0.5081921870952719 m/s
20:11:55 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:11:55 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:11:55 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:11:55 INFO opendrift.models.basemodel:2035: 2024-12-08 03:11:28.612916 - step 8 of 120 - 6000 active elements (0 deactivated)
20:11:55 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:11:55 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:11:55 DEBUG opendrift.models.basemodel:2054: 34.95401716399 <- latitude -> 35.0599783197519
20:11:55 DEBUG opendrift.models.basemodel:2059: 23.471761445936565 <- longitude -> 23.635746162263075
20:11:55 DEBUG opendrift.models.basemodel:2064: -145.44324404903918 <- z -> 0.0
20:11:55 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:11:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:11:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:11:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:11:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:11:55 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:11:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:11:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:11:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:11:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 03:00:00 (before)
2024-12-08 06:00:00 (after)
20:11:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:11:57 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:11:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:11:59 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:11:59 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:11:59 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 10x11x23) for time after (2024-12-08 06:00:00)
20:11:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 03:00:00) in space (linearNDFast)
20:11:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:59 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 06:00:00) in space (linearNDFast)
20:11:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:11:59 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 03:00:00, weight 0.94) and
after (2024-12-08 06:00:00, weight 0.06) in time
20:11:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:11:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:11:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:11:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:11:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:11:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:11:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:11:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:11:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:11:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:11:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 03:00:00 (before)
2024-12-08 06:00:00 (after)
20:11:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:11:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:00 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:00 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:00 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-08 06:00:00)
20:12:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 03:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 06:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 03:00:00, weight 0.94) and
after (2024-12-08 06:00:00, weight 0.06) in time
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:00 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0119673 (min) 0.345538 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.141321 (min) 0.0623973 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.72793 (min) 5.06243 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.58864 (min) 8.5116 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:00 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.016357, mean: 2.257414, max: 2.383853
20:12:00 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:00 DEBUG opendrift.models.physics_methods:1061: min: 7.735944, mean: 8.184745, max: 8.411421
20:12:00 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.735944, mean: 8.184745, max: 8.411421
20:12:00 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:00 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:00 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:00 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:00 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:00 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:00 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:00 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:00 DEBUG opendrift.models.physics_methods:1061: min: 7.735944, mean: 8.184745, max: 8.411421
20:12:00 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:00 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.001729, dN_50: 0.000136
20:12:00 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:00 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03496883950223683
20:12:00 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:00 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:00 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 149 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 150 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 152 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 151 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 151 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 150 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 153 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 155 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 154 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 153 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 152 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 151 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 151 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 150 surface elements
20:12:00 DEBUG opendrift.models.physics_methods:915: Advecting 159 of 6000 elements above 0.100m with wind-sheared ocean current (0.008503 m/s - 0.289456 m/s)
20:12:00 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:00 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001267059074596719 and 0.4084726466927891 m/s
20:12:00 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:00 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:00 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:00 INFO opendrift.models.basemodel:2035: 2024-12-08 04:11:28.612916 - step 9 of 120 - 6000 active elements (0 deactivated)
20:12:00 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:00 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:00 DEBUG opendrift.models.basemodel:2054: 34.953662541166885 <- latitude -> 35.073023395594404
20:12:00 DEBUG opendrift.models.basemodel:2059: 23.474141463949948 <- longitude -> 23.65133572330141
20:12:00 DEBUG opendrift.models.basemodel:2064: -144.66305401495345 <- z -> 0.0
20:12:00 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:00 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 03:00:00 (before)
2024-12-08 06:00:00 (after)
20:12:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 03:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 06:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 03:00:00, weight 0.60) and
after (2024-12-08 06:00:00, weight 0.40) in time
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 03:00:00 (before)
2024-12-08 06:00:00 (after)
20:12:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 03:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 06:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 03:00:00, weight 0.60) and
after (2024-12-08 06:00:00, weight 0.40) in time
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:00 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0150279 (min) 0.374002 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.13838 (min) 0.0440915 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.04518 (min) 5.49401 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.41242 (min) 8.1637 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:00 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.019266, mean: 2.230776, max: 2.333827
20:12:00 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:00 DEBUG opendrift.models.physics_methods:1061: min: 7.741523, mean: 8.136448, max: 8.322694
20:12:00 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.741523, mean: 8.136448, max: 8.322694
20:12:00 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:00 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:00 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:00 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:00 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:00 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:00 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:00 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:00 DEBUG opendrift.models.physics_methods:1061: min: 7.741523, mean: 8.136449, max: 8.322695
20:12:00 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:00 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.002047, dN_50: 0.000161
20:12:00 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:00 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03423509207754868
20:12:00 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:00 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:00 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 152 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 152 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 155 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 155 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 3 of 159 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 156 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 155 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 155 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 158 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 158 surface elements
20:12:00 DEBUG opendrift.models.physics_methods:915: Advecting 181 of 6000 elements above 0.100m with wind-sheared ocean current (0.000172 m/s - 0.287902 m/s)
20:12:00 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:00 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025685760291628518 and 0.42276818859269666 m/s
20:12:00 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:00 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:00 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:00 INFO opendrift.models.basemodel:2035: 2024-12-08 05:11:28.612916 - step 10 of 120 - 6000 active elements (0 deactivated)
20:12:00 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:00 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:00 DEBUG opendrift.models.basemodel:2054: 34.94616839775946 <- latitude -> 35.07978123788622
20:12:00 DEBUG opendrift.models.basemodel:2059: 23.46873711364477 <- longitude -> 23.658404336646193
20:12:00 DEBUG opendrift.models.basemodel:2064: -143.71625925156957 <- z -> 0.0
20:12:00 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:00 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 03:00:00 (before)
2024-12-08 06:00:00 (after)
20:12:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 03:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 06:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 03:00:00, weight 0.27) and
after (2024-12-08 06:00:00, weight 0.73) in time
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 03:00:00 (before)
2024-12-08 06:00:00 (after)
20:12:00 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 03:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 06:00:00) in space (linearNDFast)
20:12:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:00 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 03:00:00, weight 0.27) and
after (2024-12-08 06:00:00, weight 0.73) in time
20:12:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:00 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:00 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:00 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:00 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:00 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0148251 (min) 0.412249 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.135781 (min) 0.0402313 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.3637 (min) 5.92426 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.27372 (min) 7.80861 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:00 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:00 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.053579, mean: 2.222640, max: 2.311297
20:12:00 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:00 DEBUG opendrift.models.physics_methods:1061: min: 7.807020, mean: 8.121731, max: 8.282424
20:12:00 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.807020, mean: 8.121731, max: 8.282424
20:12:00 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:00 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:00 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:00 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:00 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:00 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:00 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:00 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:00 DEBUG opendrift.models.physics_methods:1061: min: 7.807020, mean: 8.121732, max: 8.282424
20:12:00 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:00 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.002401, dN_50: 0.000188
20:12:00 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:00 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03390463267757345
20:12:00 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:00 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:00 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 163 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 165 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 164 surface elements
20:12:00 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 164 surface elements
20:12:01 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 162 surface elements
20:12:01 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 174 surface elements
20:12:01 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 174 surface elements
20:12:01 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 174 surface elements
20:12:01 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 175 surface elements
20:12:01 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 175 surface elements
20:12:01 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 175 surface elements
20:12:01 DEBUG opendrift.models.physics_methods:915: Advecting 188 of 6000 elements above 0.100m with wind-sheared ocean current (0.011850 m/s - 0.285677 m/s)
20:12:01 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:01 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012327289283346158 and 0.4831221654354385 m/s
20:12:01 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:01 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:01 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:01 INFO opendrift.models.basemodel:2035: 2024-12-08 06:11:28.612916 - step 11 of 120 - 6000 active elements (0 deactivated)
20:12:01 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:01 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:01 DEBUG opendrift.models.basemodel:2054: 34.94102946919872 <- latitude -> 35.09102525961212
20:12:01 DEBUG opendrift.models.basemodel:2059: 23.47020892227657 <- longitude -> 23.670831784690083
20:12:01 DEBUG opendrift.models.basemodel:2064: -143.2779271588689 <- z -> 0.0
20:12:01 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:01 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:01 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:01 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:01 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:01 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:01 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:01 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:01 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:01 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:01 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:01 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:01 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:01 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:01 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:01 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 06:00:00 (before)
2024-12-08 09:00:00 (after)
20:12:01 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:01 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:03 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:03 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:03 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:03 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 11x12x23) for time after (2024-12-08 09:00:00)
20:12:03 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 06:00:00) in space (linearNDFast)
20:12:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:03 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 09:00:00) in space (linearNDFast)
20:12:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:03 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 06:00:00, weight 0.94) and
after (2024-12-08 09:00:00, weight 0.06) in time
20:12:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 06:00:00 (before)
2024-12-08 09:00:00 (after)
20:12:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:03 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:03 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:03 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-08 09:00:00)
20:12:03 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 06:00:00) in space (linearNDFast)
20:12:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:03 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 09:00:00) in space (linearNDFast)
20:12:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:03 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 06:00:00, weight 0.94) and
after (2024-12-08 09:00:00, weight 0.06) in time
20:12:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:03 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:03 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:03 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:03 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.013181 (min) 0.441214 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.142831 (min) 0.0172022 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.42696 (min) 6.09925 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.20368 (min) 7.59296 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:03 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.017596, mean: 2.201367, max: 2.282677
20:12:03 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:03 DEBUG opendrift.models.physics_methods:1061: min: 7.738319, mean: 8.082864, max: 8.230984
20:12:03 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.738319, mean: 8.082864, max: 8.230984
20:12:03 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:03 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:03 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:03 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:03 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:03 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:03 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:03 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:03 DEBUG opendrift.models.physics_methods:1061: min: 7.738319, mean: 8.082864, max: 8.230985
20:12:03 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:03 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.002811, dN_50: 0.000221
20:12:03 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:03 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03348485182686823
20:12:03 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:03 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:03 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 175 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 177 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 177 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 2 of 179 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 178 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 177 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 177 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 179 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 180 surface elements
20:12:03 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 182 surface elements
20:12:03 DEBUG opendrift.models.physics_methods:915: Advecting 196 of 6000 elements above 0.100m with wind-sheared ocean current (0.009686 m/s - 0.283525 m/s)
20:12:03 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:03 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0036066258604353536 and 0.4322542143635402 m/s
20:12:03 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:03 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:03 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:03 INFO opendrift.models.basemodel:2035: 2024-12-08 07:11:28.612916 - step 12 of 120 - 6000 active elements (0 deactivated)
20:12:03 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:03 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:03 DEBUG opendrift.models.basemodel:2054: 34.94033537805296 <- latitude -> 35.08925312510974
20:12:03 DEBUG opendrift.models.basemodel:2059: 23.472306589738146 <- longitude -> 23.682658195318744
20:12:03 DEBUG opendrift.models.basemodel:2064: -142.0256502425454 <- z -> 0.0
20:12:03 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:03 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 06:00:00 (before)
2024-12-08 09:00:00 (after)
20:12:03 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 06:00:00) in space (linearNDFast)
20:12:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:03 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 09:00:00) in space (linearNDFast)
20:12:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:03 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 06:00:00, weight 0.60) and
after (2024-12-08 09:00:00, weight 0.40) in time
20:12:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 06:00:00 (before)
2024-12-08 09:00:00 (after)
20:12:03 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 06:00:00) in space (linearNDFast)
20:12:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:03 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 09:00:00) in space (linearNDFast)
20:12:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:03 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 06:00:00, weight 0.60) and
after (2024-12-08 09:00:00, weight 0.40) in time
20:12:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:03 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:03 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:03 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:03 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:03 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0137961 (min) 0.438406 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.178645 (min) 0.0089461 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.71165 (min) 5.20648 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.32778 (min) 8.00383 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:03 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:03 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.884765, mean: 2.086960, max: 2.167835
20:12:03 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:03 DEBUG opendrift.models.physics_methods:1061: min: 7.479252, mean: 7.869950, max: 8.021262
20:12:03 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.479252, mean: 7.869950, max: 8.021262
20:12:03 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:03 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:03 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:03 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:03 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:03 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:03 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:03 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:03 DEBUG opendrift.models.physics_methods:1061: min: 7.479252, mean: 7.869950, max: 8.021262
20:12:03 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:03 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.003327, dN_50: 0.000261
20:12:04 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:04 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03180044000186085
20:12:04 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:04 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:04 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 193 surface elements
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 192 surface elements
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 193 surface elements
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 197 surface elements
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 197 surface elements
20:12:04 DEBUG opendrift.models.physics_methods:915: Advecting 198 of 6000 elements above 0.100m with wind-sheared ocean current (0.014343 m/s - 0.276672 m/s)
20:12:04 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:04 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002746716925772088 and 0.45041203473427394 m/s
20:12:04 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:04 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:04 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:04 INFO opendrift.models.basemodel:2035: 2024-12-08 08:11:28.612916 - step 13 of 120 - 6000 active elements (0 deactivated)
20:12:04 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:04 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:04 DEBUG opendrift.models.basemodel:2054: 34.93366621044506 <- latitude -> 35.09719597786354
20:12:04 DEBUG opendrift.models.basemodel:2059: 23.460598597386678 <- longitude -> 23.696320991161862
20:12:04 DEBUG opendrift.models.basemodel:2064: -141.1091916342004 <- z -> 0.0
20:12:04 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:04 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:04 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 06:00:00 (before)
2024-12-08 09:00:00 (after)
20:12:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 06:00:00) in space (linearNDFast)
20:12:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 09:00:00) in space (linearNDFast)
20:12:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 06:00:00, weight 0.27) and
after (2024-12-08 09:00:00, weight 0.73) in time
20:12:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:04 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 06:00:00 (before)
2024-12-08 09:00:00 (after)
20:12:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 06:00:00) in space (linearNDFast)
20:12:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 09:00:00) in space (linearNDFast)
20:12:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 06:00:00, weight 0.27) and
after (2024-12-08 09:00:00, weight 0.73) in time
20:12:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:04 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:04 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:04 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:04 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:04 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0216665 (min) 0.434987 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.218997 (min) 0.00609324 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.85509 (min) 4.60143 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.43301 (min) 8.41319 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:04 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:04 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.778473, mean: 2.020429, max: 2.140943
20:12:04 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:04 DEBUG opendrift.models.physics_methods:1061: min: 7.265294, mean: 7.743223, max: 7.971354
20:12:04 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.265294, mean: 7.743223, max: 7.971354
20:12:04 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:04 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:04 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:04 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:04 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:04 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:04 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:04 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:04 DEBUG opendrift.models.physics_methods:1061: min: 7.265294, mean: 7.743223, max: 7.971354
20:12:04 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:04 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.003875, dN_50: 0.000304
20:12:04 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:04 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03140600127027334
20:12:04 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:04 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:04 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 197 surface elements
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 197 surface elements
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 201 surface elements
20:12:04 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 200 surface elements
20:12:04 DEBUG opendrift.models.physics_methods:915: Advecting 206 of 6000 elements above 0.100m with wind-sheared ocean current (0.076302 m/s - 0.275558 m/s)
20:12:04 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:04 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002747581214621217 and 0.4652281267790299 m/s
20:12:04 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:04 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:04 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:04 INFO opendrift.models.basemodel:2035: 2024-12-08 09:11:28.612916 - step 14 of 120 - 6000 active elements (0 deactivated)
20:12:04 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:04 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:04 DEBUG opendrift.models.basemodel:2054: 34.91919361432179 <- latitude -> 35.102707603572476
20:12:04 DEBUG opendrift.models.basemodel:2059: 23.456771263788223 <- longitude -> 23.709586219788118
20:12:04 DEBUG opendrift.models.basemodel:2064: -140.52249599109638 <- z -> 0.0
20:12:04 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:04 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:04 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 09:00:00 (before)
2024-12-08 12:00:00 (after)
20:12:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:06 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:06 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:06 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 11x13x23) for time after (2024-12-08 12:00:00)
20:12:06 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 09:00:00) in space (linearNDFast)
20:12:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:06 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 12:00:00) in space (linearNDFast)
20:12:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:06 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 09:00:00, weight 0.94) and
after (2024-12-08 12:00:00, weight 0.06) in time
20:12:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:06 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 09:00:00 (before)
2024-12-08 12:00:00 (after)
20:12:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:07 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:07 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:07 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-08 12:00:00)
20:12:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 09:00:00) in space (linearNDFast)
20:12:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 12:00:00) in space (linearNDFast)
20:12:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 09:00:00, weight 0.94) and
after (2024-12-08 12:00:00, weight 0.06) in time
20:12:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:07 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:07 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:07 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:07 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0349585 (min) 0.44989 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.252075 (min) 0.00421467 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.25198 (min) 4.40074 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: y_wind: 7.33141 (min) 8.59938 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:07 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.673647, mean: 1.971187, max: 2.139495
20:12:07 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:07 DEBUG opendrift.models.physics_methods:1061: min: 7.047929, mean: 7.647822, max: 7.968659
20:12:07 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.047929, mean: 7.647822, max: 7.968659
20:12:07 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:07 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:07 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:07 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:07 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:07 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:07 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:07 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:07 DEBUG opendrift.models.physics_methods:1061: min: 7.047929, mean: 7.647821, max: 7.968658
20:12:07 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:07 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.004474, dN_50: 0.000351
20:12:07 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:07 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03138476649238715
20:12:07 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:07 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:07 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:07 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 202 surface elements
20:12:07 DEBUG opendrift.models.physics_methods:915: Advecting 212 of 6000 elements above 0.100m with wind-sheared ocean current (0.031128 m/s - 0.270679 m/s)
20:12:07 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:07 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0010137294541979057 and 0.46543462203736635 m/s
20:12:07 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:07 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:07 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:07 INFO opendrift.models.basemodel:2035: 2024-12-08 10:11:28.612916 - step 15 of 120 - 6000 active elements (0 deactivated)
20:12:07 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:07 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:07 DEBUG opendrift.models.basemodel:2054: 34.907666164331594 <- latitude -> 35.11176327253121
20:12:07 DEBUG opendrift.models.basemodel:2059: 23.46196970264478 <- longitude -> 23.727830458918813
20:12:07 DEBUG opendrift.models.basemodel:2064: -139.6502724896515 <- z -> 0.0
20:12:07 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:07 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:07 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:07 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:07 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:07 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:07 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 09:00:00 (before)
2024-12-08 12:00:00 (after)
20:12:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 09:00:00) in space (linearNDFast)
20:12:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 12:00:00) in space (linearNDFast)
20:12:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 09:00:00, weight 0.60) and
after (2024-12-08 12:00:00, weight 0.40) in time
20:12:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:07 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:07 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 09:00:00 (before)
2024-12-08 12:00:00 (after)
20:12:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 09:00:00) in space (linearNDFast)
20:12:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 12:00:00) in space (linearNDFast)
20:12:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 09:00:00, weight 0.60) and
after (2024-12-08 12:00:00, weight 0.40) in time
20:12:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:07 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:07 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:07 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:07 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:07 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:07 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0184734 (min) 0.420936 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.262272 (min) -0.00498355 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.50398 (min) 5.49865 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: y_wind: 6.36893 (min) 7.78423 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:07 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:07 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.581949, mean: 1.888098, max: 2.035342
20:12:07 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:07 DEBUG opendrift.models.physics_methods:1061: min: 6.852134, mean: 7.484878, max: 7.772278
20:12:07 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.852134, mean: 7.484878, max: 7.772278
20:12:07 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:07 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:07 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:07 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:07 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:07 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:07 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:07 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:07 DEBUG opendrift.models.physics_methods:1061: min: 6.852134, mean: 7.484878, max: 7.772278
20:12:07 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:07 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.005160, dN_50: 0.000405
20:12:07 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:07 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.029857131705905964
20:12:07 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:07 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:07 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:07 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 212 surface elements
20:12:07 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 213 surface elements
20:12:08 DEBUG opendrift.models.physics_methods:915: Advecting 221 of 6000 elements above 0.100m with wind-sheared ocean current (0.071160 m/s - 0.264061 m/s)
20:12:08 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:08 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005100047373104568 and 0.4270118932567999 m/s
20:12:08 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:08 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:08 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:08 INFO opendrift.models.basemodel:2035: 2024-12-08 11:11:28.612916 - step 16 of 120 - 6000 active elements (0 deactivated)
20:12:08 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:08 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:08 DEBUG opendrift.models.basemodel:2054: 34.89900682474085 <- latitude -> 35.11694851688088
20:12:08 DEBUG opendrift.models.basemodel:2059: 23.464987867094713 <- longitude -> 23.752737249612753
20:12:08 DEBUG opendrift.models.basemodel:2064: -138.9528039662258 <- z -> 0.0
20:12:08 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:08 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 09:00:00 (before)
2024-12-08 12:00:00 (after)
20:12:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 09:00:00) in space (linearNDFast)
20:12:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:08 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 12:00:00) in space (linearNDFast)
20:12:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:08 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 09:00:00, weight 0.27) and
after (2024-12-08 12:00:00, weight 0.73) in time
20:12:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 09:00:00 (before)
2024-12-08 12:00:00 (after)
20:12:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 09:00:00) in space (linearNDFast)
20:12:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:08 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 12:00:00) in space (linearNDFast)
20:12:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:08 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 09:00:00, weight 0.27) and
after (2024-12-08 12:00:00, weight 0.73) in time
20:12:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:08 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:08 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:08 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:08 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.000113076 (min) 0.407695 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.28066 (min) -0.0129237 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.63049 (min) 6.59119 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: y_wind: 5.25969 (min) 6.96824 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:08 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:08 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.580519, mean: 1.907889, max: 2.046106
20:12:08 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:08 DEBUG opendrift.models.physics_methods:1061: min: 6.849037, mean: 7.524016, max: 7.792802
20:12:08 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.849037, mean: 7.524016, max: 7.792802
20:12:08 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:08 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:08 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:08 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:08 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:08 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:08 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:08 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:08 DEBUG opendrift.models.physics_methods:1061: min: 6.849037, mean: 7.524015, max: 7.792802
20:12:08 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:08 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.005815, dN_50: 0.000456
20:12:08 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:08 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.030015001685017365
20:12:08 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:08 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:08 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:08 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 214 surface elements
20:12:08 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 215 surface elements
20:12:08 DEBUG opendrift.models.physics_methods:915: Advecting 227 of 6000 elements above 0.100m with wind-sheared ocean current (0.004525 m/s - 0.264031 m/s)
20:12:08 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:08 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014141304776901593 and 0.488578492022291 m/s
20:12:08 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:08 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:08 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:08 INFO opendrift.models.basemodel:2035: 2024-12-08 12:11:28.612916 - step 17 of 120 - 6000 active elements (0 deactivated)
20:12:08 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:08 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:08 DEBUG opendrift.models.basemodel:2054: 34.88910688532589 <- latitude -> 35.12331785962738
20:12:08 DEBUG opendrift.models.basemodel:2059: 23.470725840640334 <- longitude -> 23.770865225383144
20:12:08 DEBUG opendrift.models.basemodel:2064: -138.25651323282347 <- z -> 0.0
20:12:08 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:08 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 12:00:00 (before)
2024-12-08 15:00:00 (after)
20:12:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:13 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:13 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:13 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:13 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 12x14x23) for time after (2024-12-08 15:00:00)
20:12:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 12:00:00) in space (linearNDFast)
20:12:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:13 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 15:00:00) in space (linearNDFast)
20:12:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:13 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 12:00:00, weight 0.94) and
after (2024-12-08 15:00:00, weight 0.06) in time
20:12:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:13 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 12:00:00 (before)
2024-12-08 15:00:00 (after)
20:12:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:14 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:14 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:14 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-08 15:00:00)
20:12:14 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 12:00:00) in space (linearNDFast)
20:12:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:14 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 15:00:00) in space (linearNDFast)
20:12:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:14 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 12:00:00, weight 0.94) and
after (2024-12-08 15:00:00, weight 0.06) in time
20:12:14 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:14 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:14 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:14 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:14 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:14 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:14 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:14 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0198485 (min) 0.382425 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.296296 (min) -0.0169414 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.43409 (min) 7.45831 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.37683 (min) 6.22088 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:14 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.644908, mean: 1.998339, max: 2.122322
20:12:14 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:14 DEBUG opendrift.models.physics_methods:1061: min: 6.987156, mean: 7.700302, max: 7.936614
20:12:14 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.987156, mean: 7.700302, max: 7.936614
20:12:14 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:14 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:14 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:14 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:14 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:14 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:14 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:14 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:14 DEBUG opendrift.models.physics_methods:1061: min: 6.987155, mean: 7.700302, max: 7.936614
20:12:14 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:14 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.006470, dN_50: 0.000508
20:12:14 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:14 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.031132885994873728
20:12:14 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:14 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:14 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:14 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 220 surface elements
20:12:14 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 229 surface elements
20:12:14 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 229 surface elements
20:12:14 DEBUG opendrift.models.physics_methods:915: Advecting 241 of 6000 elements above 0.100m with wind-sheared ocean current (0.001299 m/s - 0.270948 m/s)
20:12:14 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:14 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021357948655367355 and 0.4392192819433471 m/s
20:12:14 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:14 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:14 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:14 INFO opendrift.models.basemodel:2035: 2024-12-08 13:11:28.612916 - step 18 of 120 - 6000 active elements (0 deactivated)
20:12:14 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:14 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:14 DEBUG opendrift.models.basemodel:2054: 34.881802132785374 <- latitude -> 35.1282075588915
20:12:14 DEBUG opendrift.models.basemodel:2059: 23.47354343063577 <- longitude -> 23.784138211282627
20:12:14 DEBUG opendrift.models.basemodel:2064: -137.57666836688117 <- z -> 0.0
20:12:14 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:14 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:14 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:14 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:14 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:14 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 12:00:00 (before)
2024-12-08 15:00:00 (after)
20:12:14 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 12:00:00) in space (linearNDFast)
20:12:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:14 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 15:00:00) in space (linearNDFast)
20:12:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:14 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 12:00:00, weight 0.60) and
after (2024-12-08 15:00:00, weight 0.40) in time
20:12:14 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:14 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:14 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 12:00:00 (before)
2024-12-08 15:00:00 (after)
20:12:14 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 12:00:00) in space (linearNDFast)
20:12:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:14 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 15:00:00) in space (linearNDFast)
20:12:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:14 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 12:00:00, weight 0.60) and
after (2024-12-08 15:00:00, weight 0.40) in time
20:12:14 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:14 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:14 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:14 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:14 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:14 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:14 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:14 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:14 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.020963 (min) 0.370291 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.280608 (min) -0.0144547 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.47821 (min) 7.61964 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.34247 (min) 5.83837 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:14 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:14 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.627076, mean: 2.008821, max: 2.128830
20:12:14 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:14 DEBUG opendrift.models.physics_methods:1061: min: 6.949179, mean: 7.720504, max: 7.948773
20:12:14 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.949179, mean: 7.720504, max: 7.948773
20:12:15 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:15 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:15 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:15 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:15 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:15 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:15 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:15 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:15 DEBUG opendrift.models.physics_methods:1061: min: 6.949179, mean: 7.720503, max: 7.948772
20:12:15 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:15 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.007234, dN_50: 0.000568
20:12:15 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:15 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.031228342015340055
20:12:15 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:15 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:15 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:15 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 232 surface elements
20:12:15 DEBUG opendrift.models.physics_methods:915: Advecting 249 of 6000 elements above 0.100m with wind-sheared ocean current (0.039078 m/s - 0.271105 m/s)
20:12:15 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:15 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0012457069194288218 and 0.4233950945458242 m/s
20:12:15 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:15 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:15 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:15 INFO opendrift.models.basemodel:2035: 2024-12-08 14:11:28.612916 - step 19 of 120 - 6000 active elements (0 deactivated)
20:12:15 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:15 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:15 DEBUG opendrift.models.basemodel:2054: 34.87407659311856 <- latitude -> 35.13346420184548
20:12:15 DEBUG opendrift.models.basemodel:2059: 23.46704337731067 <- longitude -> 23.797441678851428
20:12:15 DEBUG opendrift.models.basemodel:2064: -136.40196260189168 <- z -> 0.0
20:12:15 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:15 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 12:00:00 (before)
2024-12-08 15:00:00 (after)
20:12:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 12:00:00) in space (linearNDFast)
20:12:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:15 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 15:00:00) in space (linearNDFast)
20:12:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:15 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 12:00:00, weight 0.27) and
after (2024-12-08 15:00:00, weight 0.73) in time
20:12:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 12:00:00 (before)
2024-12-08 15:00:00 (after)
20:12:15 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 12:00:00) in space (linearNDFast)
20:12:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:15 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 15:00:00) in space (linearNDFast)
20:12:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:15 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 12:00:00, weight 0.27) and
after (2024-12-08 15:00:00, weight 0.73) in time
20:12:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:15 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:15 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:15 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:15 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:15 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.012579 (min) 0.361833 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.263682 (min) -0.0118174 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.47982 (min) 7.82901 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.33552 (min) 5.50939 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:15 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:15 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.622241, mean: 2.025057, max: 2.148160
20:12:15 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:15 DEBUG opendrift.models.physics_methods:1061: min: 6.938845, mean: 7.751559, max: 7.984779
20:12:15 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.938845, mean: 7.751559, max: 7.984779
20:12:15 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:15 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:15 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:15 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:15 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:15 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:15 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:15 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:15 DEBUG opendrift.models.physics_methods:1061: min: 6.938846, mean: 7.751559, max: 7.984779
20:12:15 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:15 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.007609, dN_50: 0.000597
20:12:15 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:15 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.031511857854373125
20:12:15 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:15 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:15 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:15 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 240 surface elements
20:12:15 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 245 surface elements
20:12:15 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 245 surface elements
20:12:15 DEBUG opendrift.models.physics_methods:915: Advecting 264 of 6000 elements above 0.100m with wind-sheared ocean current (0.017075 m/s - 0.275816 m/s)
20:12:15 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:15 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0024306303749270855 and 0.4334800333632837 m/s
20:12:15 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:15 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:15 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:15 INFO opendrift.models.basemodel:2035: 2024-12-08 15:11:28.612916 - step 20 of 120 - 6000 active elements (0 deactivated)
20:12:15 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:15 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:15 DEBUG opendrift.models.basemodel:2054: 34.87026863856236 <- latitude -> 35.13714426871848
20:12:15 DEBUG opendrift.models.basemodel:2059: 23.468025397377684 <- longitude -> 23.815311625998635
20:12:15 DEBUG opendrift.models.basemodel:2064: -135.61166840893213 <- z -> 0.0
20:12:15 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:15 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:15 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:15 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:15 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:15 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:15 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:15 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:15 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:15 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 15:00:00 (before)
2024-12-08 18:00:00 (after)
20:12:15 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:18 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:18 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:18 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:18 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 12x15x23) for time after (2024-12-08 18:00:00)
20:12:18 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 15:00:00) in space (linearNDFast)
20:12:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:18 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 18:00:00) in space (linearNDFast)
20:12:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:18 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 15:00:00, weight 0.94) and
after (2024-12-08 18:00:00, weight 0.06) in time
20:12:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:18 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:18 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:18 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:18 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:18 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:18 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:18 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:18 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:18 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 15:00:00 (before)
2024-12-08 18:00:00 (after)
20:12:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:18 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:18 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:18 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-08 18:00:00)
20:12:18 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 15:00:00) in space (linearNDFast)
20:12:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:18 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 18:00:00) in space (linearNDFast)
20:12:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:18 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 15:00:00, weight 0.94) and
after (2024-12-08 18:00:00, weight 0.06) in time
20:12:18 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:18 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:18 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:18 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:18 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:18 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:18 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:18 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0291454 (min) 0.358477 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.247116 (min) -0.0103987 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.40089 (min) 7.97816 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.29158 (min) 5.24295 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:18 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:18 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.580113, mean: 2.010274, max: 2.140857
20:12:18 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:18 DEBUG opendrift.models.physics_methods:1061: min: 6.848155, mean: 7.723088, max: 7.971194
20:12:18 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.848155, mean: 7.723088, max: 7.971194
20:12:18 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:18 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:18 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:18 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:18 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:18 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:18 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:18 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:18 DEBUG opendrift.models.physics_methods:1061: min: 6.848155, mean: 7.723089, max: 7.971194
20:12:18 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:18 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.008019, dN_50: 0.000629
20:12:18 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:18 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03140473557456337
20:12:18 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:18 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:18 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:18 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 254 surface elements
20:12:19 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 253 surface elements
20:12:19 DEBUG opendrift.models.physics_methods:915: Advecting 269 of 6000 elements above 0.100m with wind-sheared ocean current (0.026435 m/s - 0.274890 m/s)
20:12:19 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:19 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026822030802538628 and 0.45072497897088043 m/s
20:12:19 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:19 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:19 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:19 INFO opendrift.models.basemodel:2035: 2024-12-08 16:11:28.612916 - step 21 of 120 - 6000 active elements (0 deactivated)
20:12:19 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:19 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:19 DEBUG opendrift.models.basemodel:2054: 34.860674597127826 <- latitude -> 35.14173408424047
20:12:19 DEBUG opendrift.models.basemodel:2059: 23.472434813456466 <- longitude -> 23.82974754616834
20:12:19 DEBUG opendrift.models.basemodel:2064: -134.87976469454316 <- z -> 0.0
20:12:19 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:19 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 15:00:00 (before)
2024-12-08 18:00:00 (after)
20:12:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 15:00:00) in space (linearNDFast)
20:12:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 18:00:00) in space (linearNDFast)
20:12:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 15:00:00, weight 0.60) and
after (2024-12-08 18:00:00, weight 0.40) in time
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 15:00:00 (before)
2024-12-08 18:00:00 (after)
20:12:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 15:00:00) in space (linearNDFast)
20:12:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 18:00:00) in space (linearNDFast)
20:12:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 15:00:00, weight 0.60) and
after (2024-12-08 18:00:00, weight 0.40) in time
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:19 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:19 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:19 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0304974 (min) 0.313463 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.231161 (min) -0.0220824 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.06474 (min) 7.77913 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.01712 (min) 4.99655 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:19 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.432738, mean: 1.852874, max: 2.000419
20:12:19 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:19 DEBUG opendrift.models.physics_methods:1061: min: 6.520981, mean: 7.414545, max: 7.705310
20:12:19 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.520981, mean: 7.414545, max: 7.705310
20:12:19 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:19 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:19 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:19 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:19 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:19 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:19 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:19 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:19 DEBUG opendrift.models.physics_methods:1061: min: 6.520981, mean: 7.414546, max: 7.705310
20:12:19 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:19 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.008641, dN_50: 0.000678
20:12:19 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:19 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02934490923538072
20:12:19 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:19 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:19 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:19 DEBUG opendrift.models.physics_methods:915: Advecting 292 of 6000 elements above 0.100m with wind-sheared ocean current (0.027448 m/s - 0.266828 m/s)
20:12:19 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:19 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017110831770266116 and 0.47816703343356826 m/s
20:12:19 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:19 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:19 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:19 INFO opendrift.models.basemodel:2035: 2024-12-08 17:11:28.612916 - step 22 of 120 - 6000 active elements (0 deactivated)
20:12:19 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:19 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:19 DEBUG opendrift.models.basemodel:2054: 34.85689192844226 <- latitude -> 35.14613152049805
20:12:19 DEBUG opendrift.models.basemodel:2059: 23.471370090906593 <- longitude -> 23.85324336071179
20:12:19 DEBUG opendrift.models.basemodel:2064: -134.07719144625352 <- z -> 0.0
20:12:19 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:19 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 15:00:00 (before)
2024-12-08 18:00:00 (after)
20:12:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 15:00:00) in space (linearNDFast)
20:12:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 18:00:00) in space (linearNDFast)
20:12:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 15:00:00, weight 0.27) and
after (2024-12-08 18:00:00, weight 0.73) in time
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 15:00:00 (before)
2024-12-08 18:00:00 (after)
20:12:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 15:00:00) in space (linearNDFast)
20:12:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 18:00:00) in space (linearNDFast)
20:12:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 15:00:00, weight 0.27) and
after (2024-12-08 18:00:00, weight 0.73) in time
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:19 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:19 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:19 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00238417 (min) 0.267336 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.215887 (min) -0.0207059 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.76517 (min) 7.57053 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.70839 (min) 4.82795 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:19 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:19 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.300652, mean: 1.705390, max: 1.872424
20:12:19 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:19 DEBUG opendrift.models.physics_methods:1061: min: 6.213125, mean: 7.112989, max: 7.454727
20:12:19 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.213125, mean: 7.112989, max: 7.454727
20:12:19 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:19 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:19 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:19 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:19 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:19 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:19 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:19 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:19 DEBUG opendrift.models.physics_methods:1061: min: 6.213125, mean: 7.112989, max: 7.454727
20:12:19 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:19 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.009314, dN_50: 0.000731
20:12:19 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:19 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02746756871778024
20:12:19 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:19 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:19 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:19 DEBUG opendrift.models.physics_methods:915: Advecting 292 of 6000 elements above 0.100m with wind-sheared ocean current (0.057544 m/s - 0.258851 m/s)
20:12:19 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:19 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005510257353160126 and 0.5019457675898372 m/s
20:12:19 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:19 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:19 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:19 INFO opendrift.models.basemodel:2035: 2024-12-08 18:11:28.612916 - step 23 of 120 - 6000 active elements (0 deactivated)
20:12:19 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:19 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:19 DEBUG opendrift.models.basemodel:2054: 34.852319527764216 <- latitude -> 35.14789136263598
20:12:19 DEBUG opendrift.models.basemodel:2059: 23.477647153627164 <- longitude -> 23.87098562758557
20:12:19 DEBUG opendrift.models.basemodel:2064: -133.18914855576105 <- z -> 0.0
20:12:19 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:19 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 18:00:00 (before)
2024-12-08 21:00:00 (after)
20:12:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:22 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x15x23) for time after (2024-12-08 21:00:00)
20:12:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 18:00:00) in space (linearNDFast)
20:12:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 21:00:00) in space (linearNDFast)
20:12:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 18:00:00, weight 0.94) and
after (2024-12-08 21:00:00, weight 0.06) in time
20:12:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 18:00:00 (before)
2024-12-08 21:00:00 (after)
20:12:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:22 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:22 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:22 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-08 21:00:00)
20:12:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 18:00:00) in space (linearNDFast)
20:12:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 21:00:00) in space (linearNDFast)
20:12:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 18:00:00, weight 0.94) and
after (2024-12-08 21:00:00, weight 0.06) in time
20:12:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:22 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:22 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:22 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:22 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:22 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0255492 (min) 0.241406 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.205459 (min) -0.0170661 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.55482 (min) 7.46571 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.49494 (min) 4.78088 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:22 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:22 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.232230, mean: 1.618579, max: 1.801220
20:12:22 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:22 DEBUG opendrift.models.physics_methods:1061: min: 6.047494, mean: 6.929149, max: 7.311609
20:12:22 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.047494, mean: 6.929149, max: 7.311609
20:12:22 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:22 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:22 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:22 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:22 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:22 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:22 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:22 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:22 DEBUG opendrift.models.physics_methods:1061: min: 6.047494, mean: 6.929149, max: 7.311609
20:12:22 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:22 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.009958, dN_50: 0.000782
20:12:23 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:23 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.026423195239123627
20:12:23 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:23 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:23 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:23 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 289 surface elements
20:12:23 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 289 surface elements
20:12:23 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 290 surface elements
20:12:23 DEBUG opendrift.models.physics_methods:915: Advecting 297 of 6000 elements above 0.100m with wind-sheared ocean current (0.017040 m/s - 0.253066 m/s)
20:12:23 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:23 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002759402245452866 and 0.4665936127275161 m/s
20:12:23 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:23 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:23 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:23 INFO opendrift.models.basemodel:2035: 2024-12-08 19:11:28.612916 - step 24 of 120 - 6000 active elements (0 deactivated)
20:12:23 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:23 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:23 DEBUG opendrift.models.basemodel:2054: 34.8466632473867 <- latitude -> 35.14976807254825
20:12:23 DEBUG opendrift.models.basemodel:2059: 23.473173669307094 <- longitude -> 23.881521080183447
20:12:23 DEBUG opendrift.models.basemodel:2064: -132.39235850564802 <- z -> 0.0
20:12:23 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 18:00:00 (before)
2024-12-08 21:00:00 (after)
20:12:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 18:00:00) in space (linearNDFast)
20:12:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 21:00:00) in space (linearNDFast)
20:12:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 18:00:00, weight 0.60) and
after (2024-12-08 21:00:00, weight 0.40) in time
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 18:00:00 (before)
2024-12-08 21:00:00 (after)
20:12:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 18:00:00) in space (linearNDFast)
20:12:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 21:00:00) in space (linearNDFast)
20:12:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 18:00:00, weight 0.60) and
after (2024-12-08 21:00:00, weight 0.40) in time
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:23 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.020006 (min) 0.270363 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.187466 (min) -0.026967 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.7882 (min) 7.54046 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.62653 (min) 5.21529 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:23 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.338368, mean: 1.752322, max: 1.902632
20:12:23 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:23 DEBUG opendrift.models.physics_methods:1061: min: 6.302564, mean: 7.210357, max: 7.514618
20:12:23 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.302564, mean: 7.210357, max: 7.514618
20:12:23 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:23 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:23 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:23 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:23 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:23 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:23 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:23 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:23 DEBUG opendrift.models.physics_methods:1061: min: 6.302564, mean: 7.210357, max: 7.514618
20:12:23 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:23 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.010284, dN_50: 0.000807
20:12:23 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:23 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02791062567733564
20:12:23 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:23 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:23 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:23 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 297 surface elements
20:12:23 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 301 surface elements
20:12:23 DEBUG opendrift.models.physics_methods:915: Advecting 314 of 6000 elements above 0.100m with wind-sheared ocean current (0.034502 m/s - 0.259265 m/s)
20:12:23 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:23 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016629619182540248 and 0.454073836509572 m/s
20:12:23 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:23 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:23 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:23 INFO opendrift.models.basemodel:2035: 2024-12-08 20:11:28.612916 - step 25 of 120 - 6000 active elements (0 deactivated)
20:12:23 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:23 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:23 DEBUG opendrift.models.basemodel:2054: 34.83759903255367 <- latitude -> 35.158807835088645
20:12:23 DEBUG opendrift.models.basemodel:2059: 23.471997648204017 <- longitude -> 23.887134162345234
20:12:23 DEBUG opendrift.models.basemodel:2064: -131.5812487564483 <- z -> 0.0
20:12:23 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 18:00:00 (before)
2024-12-08 21:00:00 (after)
20:12:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 18:00:00) in space (linearNDFast)
20:12:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 21:00:00) in space (linearNDFast)
20:12:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 18:00:00, weight 0.27) and
after (2024-12-08 21:00:00, weight 0.73) in time
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 18:00:00 (before)
2024-12-08 21:00:00 (after)
20:12:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 18:00:00) in space (linearNDFast)
20:12:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-08 21:00:00) in space (linearNDFast)
20:12:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 18:00:00, weight 0.27) and
after (2024-12-08 21:00:00, weight 0.73) in time
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:23 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0391482 (min) 0.310716 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.170234 (min) -0.0237862 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.97613 (min) 7.61922 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.75661 (min) 5.63547 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:23 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:23 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.444768, mean: 1.887775, max: 2.079077
20:12:23 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:23 DEBUG opendrift.models.physics_methods:1061: min: 6.548300, mean: 7.483797, max: 7.855338
20:12:23 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.548300, mean: 7.483797, max: 7.855338
20:12:23 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:23 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:23 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:23 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:23 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:23 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:23 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:23 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:23 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:23 DEBUG opendrift.models.physics_methods:1061: min: 6.548300, mean: 7.483797, max: 7.855338
20:12:23 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:23 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.010651, dN_50: 0.000836
20:12:23 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:23 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.030498599689054478
20:12:23 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:23 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:23 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:23 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 311 surface elements
20:12:23 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 313 surface elements
20:12:23 DEBUG opendrift.models.physics_methods:915: Advecting 322 of 6000 elements above 0.100m with wind-sheared ocean current (0.031319 m/s - 0.266170 m/s)
20:12:23 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:23 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001283620157565291 and 0.4184917083063707 m/s
20:12:23 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:23 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:23 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:23 INFO opendrift.models.basemodel:2035: 2024-12-08 21:11:28.612916 - step 26 of 120 - 6000 active elements (0 deactivated)
20:12:23 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:23 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:23 DEBUG opendrift.models.basemodel:2054: 34.83241631989153 <- latitude -> 35.15726204595362
20:12:23 DEBUG opendrift.models.basemodel:2059: 23.478153395033672 <- longitude -> 23.896277378376443
20:12:23 DEBUG opendrift.models.basemodel:2064: -130.4671994235815 <- z -> 0.0
20:12:23 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 21:00:00 (before)
2024-12-09 00:00:00 (after)
20:12:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:26 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 13x16x23) for time after (2024-12-09 00:00:00)
20:12:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 21:00:00) in space (linearNDFast)
20:12:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:26 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 00:00:00) in space (linearNDFast)
20:12:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:26 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 21:00:00, weight 0.94) and
after (2024-12-09 00:00:00, weight 0.06) in time
20:12:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 21:00:00 (before)
2024-12-09 00:00:00 (after)
20:12:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:26 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-09 00:00:00)
20:12:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 21:00:00) in space (linearNDFast)
20:12:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:26 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 00:00:00) in space (linearNDFast)
20:12:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:26 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 21:00:00, weight 0.94) and
after (2024-12-09 00:00:00, weight 0.06) in time
20:12:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:26 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:26 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:26 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:26 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:26 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0428134 (min) 0.329609 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.15992 (min) -0.0129232 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.1525 (min) 7.62662 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.89584 (min) 5.99549 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:26 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:26 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.523692, mean: 1.997965, max: 2.212810
20:12:26 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:26 DEBUG opendrift.models.physics_methods:1061: min: 6.724781, mean: 7.698614, max: 8.104041
20:12:26 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.724781, mean: 7.698614, max: 8.104041
20:12:26 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:27 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:27 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:27 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:27 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:27 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:27 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:27 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:27 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:27 DEBUG opendrift.models.physics_methods:1061: min: 6.724782, mean: 7.698614, max: 8.104041
20:12:27 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:27 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.011080, dN_50: 0.000870
20:12:27 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:27 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.032460093106101345
20:12:27 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:27 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:27 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:27 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 319 surface elements
20:12:27 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 319 surface elements
20:12:27 DEBUG opendrift.models.physics_methods:915: Advecting 327 of 6000 elements above 0.100m with wind-sheared ocean current (0.016603 m/s - 0.271436 m/s)
20:12:27 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:27 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0002914579376952525 and 0.431620491407613 m/s
20:12:27 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:27 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:27 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:27 INFO opendrift.models.basemodel:2035: 2024-12-08 22:11:28.612916 - step 27 of 120 - 6000 active elements (0 deactivated)
20:12:27 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:27 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:27 DEBUG opendrift.models.basemodel:2054: 34.82676227910821 <- latitude -> 35.157148521921144
20:12:27 DEBUG opendrift.models.basemodel:2059: 23.478878980859296 <- longitude -> 23.912162347526213
20:12:27 DEBUG opendrift.models.basemodel:2064: -129.7040835567561 <- z -> 0.0
20:12:27 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 21:00:00 (before)
2024-12-09 00:00:00 (after)
20:12:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 21:00:00) in space (linearNDFast)
20:12:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 00:00:00) in space (linearNDFast)
20:12:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 21:00:00, weight 0.60) and
after (2024-12-09 00:00:00, weight 0.40) in time
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 21:00:00 (before)
2024-12-09 00:00:00 (after)
20:12:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 21:00:00) in space (linearNDFast)
20:12:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 00:00:00) in space (linearNDFast)
20:12:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 21:00:00, weight 0.60) and
after (2024-12-09 00:00:00, weight 0.40) in time
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:27 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:27 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:27 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00333393 (min) 0.332261 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.160444 (min) -0.00335003 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: x_wind: 6.01276 (min) 7.47926 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.1755 (min) 6.24373 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:27 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.526690, mean: 2.000493, max: 2.198675
20:12:27 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:27 DEBUG opendrift.models.physics_methods:1061: min: 6.731393, mean: 7.703748, max: 8.078116
20:12:27 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.731393, mean: 7.703748, max: 8.078116
20:12:27 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:27 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:27 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:27 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:27 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:27 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:27 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:27 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:27 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:27 DEBUG opendrift.models.physics_methods:1061: min: 6.731393, mean: 7.703748, max: 8.078116
20:12:27 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:27 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.011681, dN_50: 0.000917
20:12:27 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:27 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.032252772853931376
20:12:27 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:27 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:27 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:27 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 321 surface elements
20:12:27 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 322 surface elements
20:12:27 DEBUG opendrift.models.physics_methods:915: Advecting 329 of 6000 elements above 0.100m with wind-sheared ocean current (0.031186 m/s - 0.270357 m/s)
20:12:27 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:27 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017965204721947176 and 0.49811742001960796 m/s
20:12:27 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:27 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:27 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:27 INFO opendrift.models.basemodel:2035: 2024-12-08 23:11:28.612916 - step 28 of 120 - 6000 active elements (0 deactivated)
20:12:27 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:27 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:27 DEBUG opendrift.models.basemodel:2054: 34.81788248180198 <- latitude -> 35.16234623403107
20:12:27 DEBUG opendrift.models.basemodel:2059: 23.48141481297602 <- longitude -> 23.929871179252345
20:12:27 DEBUG opendrift.models.basemodel:2064: -128.682565013033 <- z -> 0.0
20:12:27 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 21:00:00 (before)
2024-12-09 00:00:00 (after)
20:12:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 21:00:00) in space (linearNDFast)
20:12:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 00:00:00) in space (linearNDFast)
20:12:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
20:12:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 21:00:00, weight 0.27) and
after (2024-12-09 00:00:00, weight 0.73) in time
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-08 21:00:00 (before)
2024-12-09 00:00:00 (after)
20:12:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-08 21:00:00) in space (linearNDFast)
20:12:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 00:00:00) in space (linearNDFast)
20:12:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-08 21:00:00, weight 0.27) and
after (2024-12-09 00:00:00, weight 0.73) in time
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:27 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:27 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:27 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0117404 (min) 0.354217 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.161555 (min) 0.0153329 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.85228 (min) 7.3376 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.44057 (min) 6.50896 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:27 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:27 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.518085, mean: 2.009727, max: 2.189315
20:12:27 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:27 DEBUG opendrift.models.physics_methods:1061: min: 6.712396, mean: 7.721713, max: 8.060904
20:12:27 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.712396, mean: 7.721713, max: 8.060904
20:12:27 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:27 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:27 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:27 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:27 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:27 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:27 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:27 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:27 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:27 DEBUG opendrift.models.physics_methods:1061: min: 6.712396, mean: 7.721714, max: 8.060904
20:12:27 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:27 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.012311, dN_50: 0.000966
20:12:27 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:27 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03211549599081421
20:12:27 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:27 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:27 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:27 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 322 surface elements
20:12:27 DEBUG opendrift.models.physics_methods:915: Advecting 338 of 6000 elements above 0.100m with wind-sheared ocean current (0.051193 m/s - 0.273837 m/s)
20:12:27 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:27 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016566471491460896 and 0.5125368659590086 m/s
20:12:27 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:27 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:27 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:27 INFO opendrift.models.basemodel:2035: 2024-12-09 00:11:28.612916 - step 29 of 120 - 6000 active elements (0 deactivated)
20:12:27 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:27 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:27 DEBUG opendrift.models.basemodel:2054: 34.81178319548388 <- latitude -> 35.16988681643988
20:12:27 DEBUG opendrift.models.basemodel:2059: 23.477428432094708 <- longitude -> 23.951784839603903
20:12:27 DEBUG opendrift.models.basemodel:2064: -127.97671644087175 <- z -> 0.0
20:12:27 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 00:00:00 (before)
2024-12-09 03:00:00 (after)
20:12:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:28 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:28 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:28 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:28 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 14x17x23) for time after (2024-12-09 03:00:00)
20:12:28 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 00:00:00) in space (linearNDFast)
20:12:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:28 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 03:00:00) in space (linearNDFast)
20:12:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
20:12:28 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 00:00:00, weight 0.94) and
after (2024-12-09 03:00:00, weight 0.06) in time
20:12:28 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:28 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:28 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:28 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:28 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:28 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 00:00:00 (before)
2024-12-09 03:00:00 (after)
20:12:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:28 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:28 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:28 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-09 03:00:00)
20:12:28 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 00:00:00) in space (linearNDFast)
20:12:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:28 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 03:00:00) in space (linearNDFast)
20:12:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:28 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 00:00:00, weight 0.94) and
after (2024-12-09 03:00:00, weight 0.06) in time
20:12:28 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:28 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:28 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:28 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:28 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:28 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:28 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:28 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:28 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0249009 (min) 0.362234 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.168867 (min) 0.028827 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.63198 (min) 7.16811 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.62014 (min) 6.71403 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:28 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.489707, mean: 1.989386, max: 2.163740
20:12:28 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:28 DEBUG opendrift.models.physics_methods:1061: min: 6.649363, mean: 7.682575, max: 8.013683
20:12:28 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.649363, mean: 7.682575, max: 8.013683
20:12:28 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:28 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:28 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:28 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:28 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:28 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:28 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:28 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:28 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:28 DEBUG opendrift.models.physics_methods:1061: min: 6.649363, mean: 7.682574, max: 8.013683
20:12:28 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:28 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.013050, dN_50: 0.001024
20:12:28 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:28 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.03174037762828138
20:12:28 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:28 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:28 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:28 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 334 surface elements
20:12:28 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 333 surface elements
20:12:28 DEBUG opendrift.models.physics_methods:915: Advecting 355 of 6000 elements above 0.100m with wind-sheared ocean current (0.048036 m/s - 0.271989 m/s)
20:12:28 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:28 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0023933952029447135 and 0.4980713141225855 m/s
20:12:28 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:28 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:28 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:28 INFO opendrift.models.basemodel:2035: 2024-12-09 01:11:28.612916 - step 30 of 120 - 6000 active elements (0 deactivated)
20:12:28 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:28 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:28 DEBUG opendrift.models.basemodel:2054: 34.80447733784192 <- latitude -> 35.177190306574175
20:12:28 DEBUG opendrift.models.basemodel:2059: 23.474748971704614 <- longitude -> 23.96880665503143
20:12:28 DEBUG opendrift.models.basemodel:2064: -127.12253395777712 <- z -> 0.0
20:12:28 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:28 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:28 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:28 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:28 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:28 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:28 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:28 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:28 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:28 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:28 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:28 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:28 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:28 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:28 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 00:00:00 (before)
2024-12-09 03:00:00 (after)
20:12:28 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 00:00:00) in space (linearNDFast)
20:12:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:28 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 03:00:00) in space (linearNDFast)
20:12:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:28 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 00:00:00, weight 0.60) and
after (2024-12-09 03:00:00, weight 0.40) in time
20:12:28 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:28 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:28 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:28 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:28 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:28 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:28 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 00:00:00 (before)
2024-12-09 03:00:00 (after)
20:12:28 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 00:00:00) in space (linearNDFast)
20:12:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:28 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 03:00:00) in space (linearNDFast)
20:12:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:28 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 00:00:00, weight 0.60) and
after (2024-12-09 03:00:00, weight 0.40) in time
20:12:28 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:28 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:28 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:28 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:28 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:28 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:28 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:28 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:28 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:28 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.017908 (min) 0.363358 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.182509 (min) 0.0201021 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: x_wind: 5.16534 (min) 6.60793 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.58779 (min) 6.65195 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:28 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:28 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.337407, mean: 1.825038, max: 2.015179
20:12:28 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:28 DEBUG opendrift.models.physics_methods:1061: min: 6.300301, mean: 7.357810, max: 7.733684
20:12:28 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.300301, mean: 7.357810, max: 7.733684
20:12:28 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:28 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:28 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:28 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:28 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:28 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:28 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:28 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:28 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:28 DEBUG opendrift.models.physics_methods:1061: min: 6.300302, mean: 7.357810, max: 7.733684
20:12:28 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:28 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.014204, dN_50: 0.001115
20:12:28 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:29 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02956138903477771
20:12:29 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:29 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:29 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:29 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 344 surface elements
20:12:29 DEBUG opendrift.models.physics_methods:915: Advecting 359 of 6000 elements above 0.100m with wind-sheared ocean current (0.015327 m/s - 0.259814 m/s)
20:12:29 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:29 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011796229060205793 and 0.4994055249255445 m/s
20:12:29 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:29 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:29 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:29 INFO opendrift.models.basemodel:2035: 2024-12-09 02:11:28.612916 - step 31 of 120 - 6000 active elements (0 deactivated)
20:12:29 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:29 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:29 DEBUG opendrift.models.basemodel:2054: 34.8010105615283 <- latitude -> 35.18392759227681
20:12:29 DEBUG opendrift.models.basemodel:2059: 23.469619533736296 <- longitude -> 23.983204925593146
20:12:29 DEBUG opendrift.models.basemodel:2064: -126.45944055953612 <- z -> 0.0
20:12:29 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:29 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 00:00:00 (before)
2024-12-09 03:00:00 (after)
20:12:29 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 00:00:00) in space (linearNDFast)
20:12:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:29 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 03:00:00) in space (linearNDFast)
20:12:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:29 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 00:00:00, weight 0.27) and
after (2024-12-09 03:00:00, weight 0.73) in time
20:12:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 00:00:00 (before)
2024-12-09 03:00:00 (after)
20:12:29 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 00:00:00) in space (linearNDFast)
20:12:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:29 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 03:00:00) in space (linearNDFast)
20:12:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:29 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 00:00:00, weight 0.27) and
after (2024-12-09 03:00:00, weight 0.73) in time
20:12:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:29 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:29 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:29 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:29 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:29 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:29 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:29 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00674725 (min) 0.361465 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.199409 (min) 0.0176377 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.71049 (min) 6.05526 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.54601 (min) 6.59839 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:29 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:29 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.200999, mean: 1.671699, max: 1.879003
20:12:29 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:29 DEBUG opendrift.models.physics_methods:1061: min: 5.970364, mean: 7.041205, max: 7.467812
20:12:29 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.970364, mean: 7.041205, max: 7.467812
20:12:29 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:29 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:29 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:29 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:29 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:29 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:29 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:29 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:29 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:29 DEBUG opendrift.models.physics_methods:1061: min: 5.970364, mean: 7.041205, max: 7.467812
20:12:29 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:29 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.015473, dN_50: 0.001214
20:12:29 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:29 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.027564066557417305
20:12:29 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:29 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:29 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:29 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 352 surface elements
20:12:29 DEBUG opendrift.models.physics_methods:915: Advecting 363 of 6000 elements above 0.100m with wind-sheared ocean current (0.016986 m/s - 0.247490 m/s)
20:12:29 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:29 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007962287474743972 and 0.44123663925808704 m/s
20:12:29 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:29 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:29 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:29 INFO opendrift.models.basemodel:2035: 2024-12-09 03:11:28.612916 - step 32 of 120 - 6000 active elements (0 deactivated)
20:12:29 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:29 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:29 DEBUG opendrift.models.basemodel:2054: 34.79012858975255 <- latitude -> 35.19014957015732
20:12:29 DEBUG opendrift.models.basemodel:2059: 23.467178136430917 <- longitude -> 23.997221837456884
20:12:29 DEBUG opendrift.models.basemodel:2064: -125.84809533010389 <- z -> 0.0
20:12:29 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:29 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 03:00:00 (before)
2024-12-09 06:00:00 (after)
20:12:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:33 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 15x18x23) for time after (2024-12-09 06:00:00)
20:12:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 03:00:00) in space (linearNDFast)
20:12:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 06:00:00) in space (linearNDFast)
20:12:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 1
20:12:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 03:00:00, weight 0.94) and
after (2024-12-09 06:00:00, weight 0.06) in time
20:12:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:33 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:33 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:33 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 03:00:00 (before)
2024-12-09 06:00:00 (after)
20:12:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:34 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:34 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:34 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-09 06:00:00)
20:12:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 03:00:00) in space (linearNDFast)
20:12:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 06:00:00) in space (linearNDFast)
20:12:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 03:00:00, weight 0.94) and
after (2024-12-09 06:00:00, weight 0.06) in time
20:12:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:34 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:34 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:34 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:34 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00222153 (min) 0.356337 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.215903 (min) 0.0272582 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: x_wind: 4.28103 (min) 5.55895 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.57443 (min) 6.61951 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:34 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.087443, mean: 1.553934, max: 1.773138
20:12:34 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:34 DEBUG opendrift.models.physics_methods:1061: min: 5.681104, mean: 6.787837, max: 7.254390
20:12:34 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.681104, mean: 6.787837, max: 7.254390
20:12:34 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:34 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:34 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:34 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:34 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:34 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:34 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:34 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:34 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:34 DEBUG opendrift.models.physics_methods:1061: min: 5.681104, mean: 6.787837, max: 7.254390
20:12:34 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:34 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.016782, dN_50: 0.001317
20:12:34 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:34 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02601130647712806
20:12:34 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:34 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:34 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:34 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 356 surface elements
20:12:34 DEBUG opendrift.models.physics_methods:915: Advecting 368 of 6000 elements above 0.100m with wind-sheared ocean current (0.008137 m/s - 0.237444 m/s)
20:12:34 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:34 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001813417952798883 and 0.47273625919227213 m/s
20:12:34 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:34 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:34 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:34 INFO opendrift.models.basemodel:2035: 2024-12-09 04:11:28.612916 - step 33 of 120 - 6000 active elements (0 deactivated)
20:12:34 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:34 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:34 DEBUG opendrift.models.basemodel:2054: 34.78576622771829 <- latitude -> 35.19204559639787
20:12:34 DEBUG opendrift.models.basemodel:2059: 23.47070868200294 <- longitude -> 24.014605630587333
20:12:34 DEBUG opendrift.models.basemodel:2064: -124.83267673145245 <- z -> 0.0
20:12:34 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:34 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 03:00:00 (before)
2024-12-09 06:00:00 (after)
20:12:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 03:00:00) in space (linearNDFast)
20:12:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 06:00:00) in space (linearNDFast)
20:12:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 03:00:00, weight 0.60) and
after (2024-12-09 06:00:00, weight 0.40) in time
20:12:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 03:00:00 (before)
2024-12-09 06:00:00 (after)
20:12:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 03:00:00) in space (linearNDFast)
20:12:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 06:00:00) in space (linearNDFast)
20:12:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 03:00:00, weight 0.60) and
after (2024-12-09 06:00:00, weight 0.40) in time
20:12:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:34 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:34 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:34 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:34 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0156852 (min) 0.328346 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.228452 (min) 0.0239654 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.95212 (min) 5.29956 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.72482 (min) 6.96139 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:34 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:34 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.031201, mean: 1.549430, max: 1.780201
20:12:34 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:34 DEBUG opendrift.models.physics_methods:1061: min: 5.532244, mean: 6.776994, max: 7.268823
20:12:34 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.532244, mean: 6.776994, max: 7.268823
20:12:34 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:34 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:34 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:34 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:34 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:34 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:34 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:34 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:34 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:34 DEBUG opendrift.models.physics_methods:1061: min: 5.532244, mean: 6.776995, max: 7.268823
20:12:34 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:34 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.017812, dN_50: 0.001398
20:12:34 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:34 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.026114896090917227
20:12:34 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:34 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:34 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:34 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 366 surface elements
20:12:34 DEBUG opendrift.models.physics_methods:915: Advecting 376 of 6000 elements above 0.100m with wind-sheared ocean current (0.002015 m/s - 0.235943 m/s)
20:12:34 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:34 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007977319741265959 and 0.48456871195056234 m/s
20:12:34 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:34 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:34 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:34 INFO opendrift.models.basemodel:2035: 2024-12-09 05:11:28.612916 - step 34 of 120 - 6000 active elements (0 deactivated)
20:12:34 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:34 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:34 DEBUG opendrift.models.basemodel:2054: 34.77616782438909 <- latitude -> 35.19630292471945
20:12:34 DEBUG opendrift.models.basemodel:2059: 23.464952966024754 <- longitude -> 24.03172378516262
20:12:34 DEBUG opendrift.models.basemodel:2064: -123.68527650142832 <- z -> 0.0
20:12:34 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:34 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 03:00:00 (before)
2024-12-09 06:00:00 (after)
20:12:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 03:00:00) in space (linearNDFast)
20:12:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:35 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 06:00:00) in space (linearNDFast)
20:12:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:35 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 03:00:00, weight 0.27) and
after (2024-12-09 06:00:00, weight 0.73) in time
20:12:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:35 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:35 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:35 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:35 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:35 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 03:00:00 (before)
2024-12-09 06:00:00 (after)
20:12:35 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 03:00:00) in space (linearNDFast)
20:12:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:35 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 06:00:00) in space (linearNDFast)
20:12:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:35 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 03:00:00, weight 0.27) and
after (2024-12-09 06:00:00, weight 0.73) in time
20:12:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:35 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:35 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:35 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:35 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:35 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0345335 (min) 0.294979 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.242727 (min) 0.0210477 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.63212 (min) 5.05784 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.88619 (min) 7.33564 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:35 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:35 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.996420, mean: 1.555442, max: 1.808530
20:12:35 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:35 DEBUG opendrift.models.physics_methods:1061: min: 5.438144, mean: 6.788851, max: 7.326430
20:12:35 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.438144, mean: 6.788851, max: 7.326430
20:12:35 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:35 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:35 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:35 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:35 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:35 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:35 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:35 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:35 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:35 DEBUG opendrift.models.physics_methods:1061: min: 5.438144, mean: 6.788850, max: 7.326430
20:12:35 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:35 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.018874, dN_50: 0.001481
20:12:35 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:35 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.026530407422110543
20:12:35 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:35 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:35 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:35 DEBUG opendrift.models.physics_methods:915: Advecting 385 of 6000 elements above 0.100m with wind-sheared ocean current (0.041061 m/s - 0.236580 m/s)
20:12:35 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:35 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007640791530405201 and 0.4259625840877755 m/s
20:12:35 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:35 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:35 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:35 INFO opendrift.models.basemodel:2035: 2024-12-09 06:11:28.612916 - step 35 of 120 - 6000 active elements (0 deactivated)
20:12:35 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:35 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:35 DEBUG opendrift.models.basemodel:2054: 34.767248741996816 <- latitude -> 35.20650612349465
20:12:35 DEBUG opendrift.models.basemodel:2059: 23.466168526579946 <- longitude -> 24.049216795659238
20:12:35 DEBUG opendrift.models.basemodel:2064: -122.59475240270906 <- z -> 0.0
20:12:35 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:35 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:35 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:35 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:35 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:35 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:35 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:35 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:35 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:35 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 06:00:00 (before)
2024-12-09 09:00:00 (after)
20:12:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:39 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:39 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:39 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 15x19x22) for time after (2024-12-09 09:00:00)
20:12:39 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 06:00:00) in space (linearNDFast)
20:12:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:39 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 09:00:00) in space (linearNDFast)
20:12:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 1
20:12:39 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 06:00:00, weight 0.94) and
after (2024-12-09 09:00:00, weight 0.06) in time
20:12:39 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:39 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:39 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:39 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:39 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:39 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:39 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:39 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:39 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:39 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:39 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 06:00:00 (before)
2024-12-09 09:00:00 (after)
20:12:39 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:40 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:40 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:40 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-12-09 09:00:00)
20:12:40 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 06:00:00) in space (linearNDFast)
20:12:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:40 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 09:00:00) in space (linearNDFast)
20:12:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:40 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 06:00:00, weight 0.94) and
after (2024-12-09 09:00:00, weight 0.06) in time
20:12:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:40 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:40 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:40 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:40 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:40 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:40 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:40 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0450665 (min) 0.264229 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.252941 (min) 0.0143821 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.27335 (min) 4.77604 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.93109 (min) 7.66213 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:40 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.938774, mean: 1.556980, max: 1.834549
20:12:40 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:40 DEBUG opendrift.models.physics_methods:1061: min: 5.278494, mean: 6.790501, max: 7.378945
20:12:40 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.278494, mean: 6.790501, max: 7.378945
20:12:40 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:40 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:40 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:40 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:40 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:40 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:40 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:40 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:40 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:40 DEBUG opendrift.models.physics_methods:1061: min: 5.278494, mean: 6.790501, max: 7.378945
20:12:40 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:40 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.020027, dN_50: 0.001572
20:12:40 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:40 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02691204640919933
20:12:40 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:40 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:40 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:40 DEBUG opendrift.models.physics_methods:915: Advecting 394 of 6000 elements above 0.100m with wind-sheared ocean current (0.029745 m/s - 0.235283 m/s)
20:12:40 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:40 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008915783567190878 and 0.4060011042431557 m/s
20:12:40 DEBUG opendrift.models.basemodel:2123: 6000 active elements (0 deactivated)
20:12:40 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:40 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:40 INFO opendrift.models.basemodel:2035: 2024-12-09 07:11:28.612916 - step 36 of 120 - 6000 active elements (0 deactivated)
20:12:40 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:40 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:40 DEBUG opendrift.models.basemodel:2054: 34.76047479459154 <- latitude -> 35.212737468235545
20:12:40 DEBUG opendrift.models.basemodel:2059: 23.47558932018891 <- longitude -> 24.069484541245888
20:12:40 DEBUG opendrift.models.basemodel:2064: -121.55976643039787 <- z -> 0.0
20:12:40 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 6000 elements
20:12:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 6000 elements
20:12:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:40 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 6000 elements
20:12:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 06:00:00 (before)
2024-12-09 09:00:00 (after)
20:12:40 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 06:00:00) in space (linearNDFast)
20:12:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:40 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 09:00:00) in space (linearNDFast)
20:12:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:40 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 06:00:00, weight 0.60) and
after (2024-12-09 09:00:00, weight 0.40) in time
20:12:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:40 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:40 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:40 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:630: Data needed for 6000 elements
20:12:40 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 6000 elements
20:12:40 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:40 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 06:00:00 (before)
2024-12-09 09:00:00 (after)
20:12:40 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 06:00:00) in space (linearNDFast)
20:12:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:40 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 09:00:00) in space (linearNDFast)
20:12:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:40 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 06:00:00, weight 0.60) and
after (2024-12-09 09:00:00, weight 0.40) in time
20:12:40 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:40 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:40 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:40 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:40 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:40 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:40 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:40 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:40 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:40 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0476391 (min) 0.251052 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.251219 (min) 0.0317876 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.91013 (min) 4.26856 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.84814 (min) 7.75896 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:40 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:40 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.831449, mean: 1.507609, max: 1.809687
20:12:40 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:40 DEBUG opendrift.models.physics_methods:1061: min: 4.967610, mean: 6.679514, max: 7.328773
20:12:40 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.967610, mean: 6.679514, max: 7.328773
20:12:40 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:12:40 DEBUG opendrift.models.basemodel:1682: Added status stranded
20:12:40 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:12:40 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:42 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:12:42 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:12:42 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:42 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:42 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:42 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:42 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:12:42 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:42 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:42 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:42 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:42 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:42 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:42 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:42 DEBUG opendrift.models.physics_methods:1061: min: 4.967610, mean: 6.679657, max: 7.328773
20:12:42 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:42 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.021458, dN_50: 0.001684
20:12:42 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:42 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.026547379731714418
20:12:42 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:42 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:42 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:42 DEBUG opendrift.models.physics_methods:915: Advecting 402 of 5999 elements above 0.100m with wind-sheared ocean current (0.053565 m/s - 0.232507 m/s)
20:12:42 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:42 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016980722808691549 and 0.4660735255612887 m/s
20:12:42 DEBUG opendrift.models.basemodel:2123: 5999 active elements (1 deactivated)
20:12:42 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:42 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:42 INFO opendrift.models.basemodel:2035: 2024-12-09 08:11:28.612916 - step 37 of 120 - 5999 active elements (1 deactivated)
20:12:42 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:42 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:42 DEBUG opendrift.models.basemodel:2054: 34.75945256270905 <- latitude -> 35.22937043308548
20:12:42 DEBUG opendrift.models.basemodel:2059: 23.482345091674308 <- longitude -> 24.082555821518277
20:12:42 DEBUG opendrift.models.basemodel:2064: -120.89363633889671 <- z -> 0.0
20:12:42 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements
20:12:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5999 elements
20:12:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:42 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements
20:12:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5999 elements
20:12:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:42 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:42 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements
20:12:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5999 elements
20:12:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 06:00:00 (before)
2024-12-09 09:00:00 (after)
20:12:42 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 06:00:00) in space (linearNDFast)
20:12:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:42 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 09:00:00) in space (linearNDFast)
20:12:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:42 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 06:00:00, weight 0.27) and
after (2024-12-09 09:00:00, weight 0.73) in time
20:12:42 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5999 elements
20:12:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5999 elements
20:12:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 06:00:00 (before)
2024-12-09 09:00:00 (after)
20:12:42 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 06:00:00) in space (linearNDFast)
20:12:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:42 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 09:00:00) in space (linearNDFast)
20:12:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:42 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 06:00:00, weight 0.27) and
after (2024-12-09 09:00:00, weight 0.73) in time
20:12:42 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:42 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:42 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:42 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:42 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:42 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:42 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:42 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:42 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.03398 (min) 0.26351 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.249373 (min) 0.0458044 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.51679 (min) 3.7392 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.68515 (min) 7.88077 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:42 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:42 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.718254, mean: 1.469401, max: 1.794577
20:12:42 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:42 DEBUG opendrift.models.physics_methods:1061: min: 4.617094, mean: 6.591787, max: 7.298114
20:12:42 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.617094, mean: 6.591787, max: 7.298114
20:12:42 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:12:42 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:12:42 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:43 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:12:43 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:12:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:43 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:12:43 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:43 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:43 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:43 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:43 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:43 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:43 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:43 DEBUG opendrift.models.physics_methods:1061: min: 4.659895, mean: 6.592279, max: 7.298114
20:12:43 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:43 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.022918, dN_50: 0.001799
20:12:43 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:43 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.026325763111566942
20:12:43 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:43 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:43 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:43 DEBUG opendrift.models.physics_methods:915: Advecting 411 of 5997 elements above 0.100m with wind-sheared ocean current (0.010143 m/s - 0.231309 m/s)
20:12:43 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:43 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021031844481374314 and 0.4355325619886984 m/s
20:12:43 DEBUG opendrift.models.basemodel:2123: 5997 active elements (3 deactivated)
20:12:43 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:43 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:43 INFO opendrift.models.basemodel:2035: 2024-12-09 09:11:28.612916 - step 38 of 120 - 5997 active elements (3 deactivated)
20:12:43 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:43 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:43 DEBUG opendrift.models.basemodel:2054: 34.745277525071074 <- latitude -> 35.184867189908836
20:12:43 DEBUG opendrift.models.basemodel:2059: 23.485239177247557 <- longitude -> 24.101765523225076
20:12:43 DEBUG opendrift.models.basemodel:2064: -119.69189301553538 <- z -> 0.0
20:12:43 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5997 elements
20:12:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5997 elements
20:12:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5997 elements
20:12:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5997 elements
20:12:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:43 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5997 elements
20:12:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5997 elements
20:12:43 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 09:00:00 (before)
2024-12-09 12:00:00 (after)
20:12:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:44 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:44 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:44 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 16x19x22) for time after (2024-12-09 12:00:00)
20:12:44 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 09:00:00) in space (linearNDFast)
20:12:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:44 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 12:00:00) in space (linearNDFast)
20:12:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:12:44 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 09:00:00, weight 0.94) and
after (2024-12-09 12:00:00, weight 0.06) in time
20:12:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5997 elements
20:12:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5997 elements
20:12:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 09:00:00 (before)
2024-12-09 12:00:00 (after)
20:12:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:45 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-12-09 12:00:00)
20:12:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 09:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 12:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 09:00:00, weight 0.94) and
after (2024-12-09 12:00:00, weight 0.06) in time
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:45 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0149093 (min) 0.277965 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.236131 (min) 0.046156 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.34761 (min) 3.28636 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.485 (min) 7.93224 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:45 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.634149, mean: 1.426289, max: 1.760253
20:12:45 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:45 DEBUG opendrift.models.physics_methods:1061: min: 4.338356, mean: 6.492345, max: 7.227983
20:12:45 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.338356, mean: 6.492345, max: 7.227983
20:12:45 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:45 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:45 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:45 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:45 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:45 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:45 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:45 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:45 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:45 DEBUG opendrift.models.physics_methods:1061: min: 4.338356, mean: 6.492344, max: 7.227983
20:12:45 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:45 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.024466, dN_50: 0.001920
20:12:45 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:45 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02582231237064171
20:12:45 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:45 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:45 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:45 DEBUG opendrift.models.physics_methods:915: Advecting 416 of 5997 elements above 0.100m with wind-sheared ocean current (0.051740 m/s - 0.229071 m/s)
20:12:45 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:45 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0015249628585547843 and 0.4862148330739705 m/s
20:12:45 DEBUG opendrift.models.basemodel:2123: 5997 active elements (3 deactivated)
20:12:45 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:45 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:45 INFO opendrift.models.basemodel:2035: 2024-12-09 10:11:28.612916 - step 39 of 120 - 5997 active elements (3 deactivated)
20:12:45 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:45 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:45 DEBUG opendrift.models.basemodel:2054: 34.73674714847936 <- latitude -> 35.19065478941865
20:12:45 DEBUG opendrift.models.basemodel:2059: 23.48681737335165 <- longitude -> 24.114727747175973
20:12:45 DEBUG opendrift.models.basemodel:2064: -118.80324134173813 <- z -> 0.0
20:12:45 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5997 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5997 elements
20:12:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5997 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5997 elements
20:12:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:45 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5997 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5997 elements
20:12:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 09:00:00 (before)
2024-12-09 12:00:00 (after)
20:12:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 09:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 12:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 09:00:00, weight 0.60) and
after (2024-12-09 12:00:00, weight 0.40) in time
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5997 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5997 elements
20:12:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 09:00:00 (before)
2024-12-09 12:00:00 (after)
20:12:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 09:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 12:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 09:00:00, weight 0.60) and
after (2024-12-09 12:00:00, weight 0.40) in time
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:45 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0123645 (min) 0.303395 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.214286 (min) 0.053491 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.02955 (min) 3.04425 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: 4.10769 (min) 7.75147 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:45 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.518836, mean: 1.320583, max: 1.630630
20:12:45 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:45 DEBUG opendrift.models.physics_methods:1061: min: 3.924140, mean: 6.246614, max: 6.956765
20:12:45 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.924140, mean: 6.246614, max: 6.956765
20:12:45 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:12:45 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:12:45 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:45 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:12:45 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:12:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:45 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:12:45 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:45 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:45 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:45 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:45 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:45 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:45 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:45 DEBUG opendrift.models.physics_methods:1061: min: 3.924140, mean: 6.246956, max: 6.956765
20:12:45 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:45 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.026435, dN_50: 0.002075
20:12:45 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:45 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02392110520371355
20:12:45 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:45 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:45 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:45 DEBUG opendrift.models.openoil.openoil:1033: Entraining 1 of 407 surface elements
20:12:45 DEBUG opendrift.models.physics_methods:915: Advecting 420 of 5995 elements above 0.100m with wind-sheared ocean current (0.040216 m/s - 0.222446 m/s)
20:12:45 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:45 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009452684639904209 and 0.48038767092185386 m/s
20:12:45 DEBUG opendrift.models.basemodel:2123: 5995 active elements (5 deactivated)
20:12:45 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:45 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:45 INFO opendrift.models.basemodel:2035: 2024-12-09 11:11:28.612916 - step 40 of 120 - 5995 active elements (5 deactivated)
20:12:45 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:45 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:45 DEBUG opendrift.models.basemodel:2054: 34.73837931265076 <- latitude -> 35.191255953497965
20:12:45 DEBUG opendrift.models.basemodel:2059: 23.496725788112325 <- longitude -> 24.132059307429902
20:12:45 DEBUG opendrift.models.basemodel:2064: -117.83796303137044 <- z -> 0.0
20:12:45 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5995 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5995 elements
20:12:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5995 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5995 elements
20:12:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:45 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5995 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5995 elements
20:12:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 09:00:00 (before)
2024-12-09 12:00:00 (after)
20:12:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 09:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 12:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 09:00:00, weight 0.27) and
after (2024-12-09 12:00:00, weight 0.73) in time
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5995 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5995 elements
20:12:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 09:00:00 (before)
2024-12-09 12:00:00 (after)
20:12:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 09:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 12:00:00) in space (linearNDFast)
20:12:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 09:00:00, weight 0.27) and
after (2024-12-09 12:00:00, weight 0.73) in time
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:45 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0188078 (min) 0.32928 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.199022 (min) 0.0577517 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.73146 (min) 2.79751 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.84645 (min) 7.56547 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:45 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:45 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.437888, mean: 1.223734, max: 1.508908
20:12:45 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:45 DEBUG opendrift.models.physics_methods:1061: min: 3.605050, mean: 6.012281, max: 6.692077
20:12:45 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.605050, mean: 6.012281, max: 6.692077
20:12:45 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:12:45 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:12:45 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:45 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:12:45 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:12:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:45 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:12:45 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:45 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:45 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:45 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:45 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:45 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:45 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:45 DEBUG opendrift.models.physics_methods:1061: min: 3.605050, mean: 6.012447, max: 6.692077
20:12:45 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:45 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.028563, dN_50: 0.002242
20:12:45 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:45 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.022135769129699005
20:12:45 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:45 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:45 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:45 DEBUG opendrift.models.physics_methods:915: Advecting 424 of 5994 elements above 0.100m with wind-sheared ocean current (0.029358 m/s - 0.215169 m/s)
20:12:45 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:45 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011466735115106131 and 0.44704340409997545 m/s
20:12:45 DEBUG opendrift.models.basemodel:2123: 5994 active elements (6 deactivated)
20:12:45 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:45 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:45 INFO opendrift.models.basemodel:2035: 2024-12-09 12:11:28.612916 - step 41 of 120 - 5994 active elements (6 deactivated)
20:12:45 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:45 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:45 DEBUG opendrift.models.basemodel:2054: 34.73513273917219 <- latitude -> 35.19123600030494
20:12:45 DEBUG opendrift.models.basemodel:2059: 23.4986187945476 <- longitude -> 24.143464872039115
20:12:45 DEBUG opendrift.models.basemodel:2064: -116.69989246198958 <- z -> 0.0
20:12:45 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5994 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5994 elements
20:12:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5994 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5994 elements
20:12:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:45 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5994 elements
20:12:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5994 elements
20:12:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 12:00:00 (before)
2024-12-09 15:00:00 (after)
20:12:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:48 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 16x19x22) for time after (2024-12-09 15:00:00)
20:12:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 12:00:00) in space (linearNDFast)
20:12:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 15:00:00) in space (linearNDFast)
20:12:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
20:12:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 12:00:00, weight 0.94) and
after (2024-12-09 15:00:00, weight 0.06) in time
20:12:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5994 elements
20:12:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5994 elements
20:12:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 12:00:00 (before)
2024-12-09 15:00:00 (after)
20:12:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:48 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-12-09 15:00:00)
20:12:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 12:00:00) in space (linearNDFast)
20:12:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 15:00:00) in space (linearNDFast)
20:12:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 12:00:00, weight 0.94) and
after (2024-12-09 15:00:00, weight 0.06) in time
20:12:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:48 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:48 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0145532 (min) 0.349616 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.190371 (min) 0.0574721 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.39755 (min) 2.54981 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.41826 (min) 7.41391 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:48 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:48 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.335487, mean: 1.132784, max: 1.416441
20:12:48 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:48 DEBUG opendrift.models.physics_methods:1061: min: 3.155493, mean: 5.782157, max: 6.483789
20:12:48 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.155493, mean: 5.782157, max: 6.483789
20:12:48 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:12:48 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:12:48 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:48 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:12:48 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:12:48 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:48 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:48 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:48 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:48 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:12:48 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:48 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:48 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:48 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:48 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:48 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:48 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:48 DEBUG opendrift.models.physics_methods:1061: min: 3.155493, mean: 5.782330, max: 6.483789
20:12:48 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:48 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.030926, dN_50: 0.002427
20:12:48 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:48 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.020779539157511875
20:12:48 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:48 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:48 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:49 DEBUG opendrift.models.physics_methods:915: Advecting 430 of 5993 elements above 0.100m with wind-sheared ocean current (0.009331 m/s - 0.207741 m/s)
20:12:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:49 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001342076050079476 and 0.44200701525190095 m/s
20:12:49 DEBUG opendrift.models.basemodel:2123: 5993 active elements (7 deactivated)
20:12:49 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:49 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:49 INFO opendrift.models.basemodel:2035: 2024-12-09 13:11:28.612916 - step 42 of 120 - 5993 active elements (7 deactivated)
20:12:49 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:49 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:49 DEBUG opendrift.models.basemodel:2054: 34.726028868815106 <- latitude -> 35.19539384628667
20:12:49 DEBUG opendrift.models.basemodel:2059: 23.49282955144371 <- longitude -> 24.150109026337066
20:12:49 DEBUG opendrift.models.basemodel:2064: -115.5105292392225 <- z -> 0.0
20:12:49 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5993 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5993 elements
20:12:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5993 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5993 elements
20:12:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5993 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5993 elements
20:12:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 12:00:00 (before)
2024-12-09 15:00:00 (after)
20:12:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 12:00:00) in space (linearNDFast)
20:12:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 15:00:00) in space (linearNDFast)
20:12:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 12:00:00, weight 0.60) and
after (2024-12-09 15:00:00, weight 0.40) in time
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5993 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5993 elements
20:12:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 12:00:00 (before)
2024-12-09 15:00:00 (after)
20:12:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 12:00:00) in space (linearNDFast)
20:12:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 15:00:00) in space (linearNDFast)
20:12:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 12:00:00, weight 0.60) and
after (2024-12-09 15:00:00, weight 0.40) in time
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:49 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:49 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:49 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.0130764 (min) 0.36009 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.187602 (min) 0.0554892 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.956497 (min) 2.31174 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: y_wind: 3.19175 (min) 7.38606 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:49 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.274192, mean: 1.038967, max: 1.389691
20:12:49 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:49 DEBUG opendrift.models.physics_methods:1061: min: 2.852706, mean: 5.529572, max: 6.422272
20:12:49 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.852706, mean: 5.529572, max: 6.422272
20:12:49 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:12:49 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:12:49 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:49 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:12:49 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:12:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:49 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:12:49 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:49 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:49 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:49 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:49 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:49 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:49 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:49 DEBUG opendrift.models.physics_methods:1061: min: 2.852706, mean: 5.529786, max: 6.422272
20:12:49 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:49 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.033813, dN_50: 0.002654
20:12:49 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:49 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.020387184064265845
20:12:49 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:49 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:49 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:49 DEBUG opendrift.models.physics_methods:915: Advecting 439 of 5992 elements above 0.100m with wind-sheared ocean current (0.014653 m/s - 0.198304 m/s)
20:12:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:49 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00048219521744598324 and 0.44244085297097774 m/s
20:12:49 DEBUG opendrift.models.basemodel:2123: 5992 active elements (8 deactivated)
20:12:49 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:49 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:49 INFO opendrift.models.basemodel:2035: 2024-12-09 14:11:28.612916 - step 43 of 120 - 5992 active elements (8 deactivated)
20:12:49 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:49 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:49 DEBUG opendrift.models.basemodel:2054: 34.71912245906306 <- latitude -> 35.19963264850553
20:12:49 DEBUG opendrift.models.basemodel:2059: 23.498651854267937 <- longitude -> 24.159252692885264
20:12:49 DEBUG opendrift.models.basemodel:2064: -114.46188053143524 <- z -> 0.0
20:12:49 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 12:00:00 (before)
2024-12-09 15:00:00 (after)
20:12:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 12:00:00) in space (linearNDFast)
20:12:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 15:00:00) in space (linearNDFast)
20:12:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 12:00:00, weight 0.27) and
after (2024-12-09 15:00:00, weight 0.73) in time
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 12:00:00 (before)
2024-12-09 15:00:00 (after)
20:12:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 12:00:00) in space (linearNDFast)
20:12:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 15:00:00) in space (linearNDFast)
20:12:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 12:00:00, weight 0.27) and
after (2024-12-09 15:00:00, weight 0.73) in time
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:49 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:49 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:49 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: 0.00602773 (min) 0.385848 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.195272 (min) 0.0593842 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.519028 (min) 2.07575 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.97283 (min) 7.34944 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:49 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:49 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.224368, mean: 0.952023, max: 1.361279
20:12:49 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:49 DEBUG opendrift.models.physics_methods:1061: min: 2.580539, mean: 5.283637, max: 6.356281
20:12:49 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.580539, mean: 5.283637, max: 6.356281
20:12:49 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:49 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:49 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:49 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:49 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:49 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:49 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:49 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:49 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:49 DEBUG opendrift.models.physics_methods:1061: min: 2.580539, mean: 5.283638, max: 6.356281
20:12:49 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:49 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.036999, dN_50: 0.002904
20:12:49 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:49 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.019970451107547443
20:12:49 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:49 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:49 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:49 DEBUG opendrift.models.physics_methods:915: Advecting 444 of 5992 elements above 0.100m with wind-sheared ocean current (0.028740 m/s - 0.191941 m/s)
20:12:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:49 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016668858441189422 and 0.4705443100078026 m/s
20:12:49 DEBUG opendrift.models.basemodel:2123: 5992 active elements (8 deactivated)
20:12:49 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:49 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:49 INFO opendrift.models.basemodel:2035: 2024-12-09 15:11:28.612916 - step 44 of 120 - 5992 active elements (8 deactivated)
20:12:49 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:49 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:49 DEBUG opendrift.models.basemodel:2054: 34.71586170405073 <- latitude -> 35.2010553636023
20:12:49 DEBUG opendrift.models.basemodel:2059: 23.500951877667884 <- longitude -> 24.167857207646335
20:12:49 DEBUG opendrift.models.basemodel:2064: -113.79008312850844 <- z -> 0.0
20:12:49 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5992 elements
20:12:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 15:00:00 (before)
2024-12-09 18:00:00 (after)
20:12:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:52 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 17x20x22) for time after (2024-12-09 18:00:00)
20:12:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 15:00:00) in space (linearNDFast)
20:12:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 18:00:00) in space (linearNDFast)
20:12:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 15:00:00, weight 0.94) and
after (2024-12-09 18:00:00, weight 0.06) in time
20:12:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5992 elements
20:12:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5992 elements
20:12:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 15:00:00 (before)
2024-12-09 18:00:00 (after)
20:12:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:52 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:52 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:52 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:52 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-09 18:00:00)
20:12:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 15:00:00) in space (linearNDFast)
20:12:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 18:00:00) in space (linearNDFast)
20:12:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 15:00:00, weight 0.94) and
after (2024-12-09 18:00:00, weight 0.06) in time
20:12:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:52 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:52 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:52 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:52 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00597077 (min) 0.402759 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.202646 (min) 0.0598223 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.12778 (min) 1.83577 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.73993 (min) 7.2793 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:52 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.185099, mean: 0.869732, max: 1.324063
20:12:52 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:52 DEBUG opendrift.models.physics_methods:1061: min: 2.343862, mean: 5.040228, max: 6.268793
20:12:52 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.343862, mean: 5.040228, max: 6.268793
20:12:52 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:12:52 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:12:52 DEBUG opendrift.models.basemodel:1695: (z: -12.078544 to 0.000000)
20:12:52 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:12:52 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:12:52 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:52 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:52 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:52 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:52 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:12:52 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:52 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:52 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:52 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:52 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:52 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:52 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:52 DEBUG opendrift.models.physics_methods:1061: min: 2.343862, mean: 5.041123, max: 6.268793
20:12:52 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:52 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.040521, dN_50: 0.003180
20:12:52 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:52 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01942460308595304
20:12:52 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:52 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:52 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:52 DEBUG opendrift.models.physics_methods:915: Advecting 448 of 5989 elements above 0.100m with wind-sheared ocean current (0.069622 m/s - 0.188712 m/s)
20:12:52 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:52 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018038379760731487 and 0.45922759275294206 m/s
20:12:52 DEBUG opendrift.models.basemodel:2123: 5989 active elements (11 deactivated)
20:12:52 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:52 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:52 INFO opendrift.models.basemodel:2035: 2024-12-09 16:11:28.612916 - step 45 of 120 - 5989 active elements (11 deactivated)
20:12:52 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:52 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:52 DEBUG opendrift.models.basemodel:2054: 34.707833532291396 <- latitude -> 35.20420048151703
20:12:52 DEBUG opendrift.models.basemodel:2059: 23.501530206485985 <- longitude -> 24.184156221526777
20:12:52 DEBUG opendrift.models.basemodel:2064: -112.57935454291595 <- z -> 0.0
20:12:52 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5989 elements
20:12:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5989 elements
20:12:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5989 elements
20:12:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5989 elements
20:12:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:52 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5989 elements
20:12:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5989 elements
20:12:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 15:00:00 (before)
2024-12-09 18:00:00 (after)
20:12:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 15:00:00) in space (linearNDFast)
20:12:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 18:00:00) in space (linearNDFast)
20:12:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 15:00:00, weight 0.60) and
after (2024-12-09 18:00:00, weight 0.40) in time
20:12:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:52 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:52 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:52 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5989 elements
20:12:52 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5989 elements
20:12:52 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:52 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 15:00:00 (before)
2024-12-09 18:00:00 (after)
20:12:52 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 15:00:00) in space (linearNDFast)
20:12:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:52 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 18:00:00) in space (linearNDFast)
20:12:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:52 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 15:00:00, weight 0.60) and
after (2024-12-09 18:00:00, weight 0.40) in time
20:12:52 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:52 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:52 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:52 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:52 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:52 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:52 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:52 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.01722 (min) 0.423975 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.198672 (min) 0.0546198 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.0880219 (min) 1.57002 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.5815 (min) 7.08629 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:52 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:52 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.164085, mean: 0.782357, max: 1.247176
20:12:52 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:52 DEBUG opendrift.models.physics_methods:1061: min: 2.206808, mean: 4.774298, max: 6.084061
20:12:52 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.206808, mean: 4.774298, max: 6.084061
20:12:52 DEBUG opendrift.models.basemodel:662: 4 elements hit land, moving them to the coastline.
20:12:52 DEBUG opendrift.models.basemodel:1693: 4 elements scheduled for deactivation (stranded)
20:12:52 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:52 DEBUG opendrift.models.basemodel:1713: Removed 4 elements.
20:12:52 DEBUG opendrift.models.basemodel:1716: Removed 4 values from environment.
20:12:52 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:52 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:52 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:52 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:52 DEBUG opendrift.models.basemodel:1725: Removed 4 values from environment_profiles.
20:12:52 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:52 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:52 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:52 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:52 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:52 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:52 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:52 DEBUG opendrift.models.physics_methods:1061: min: 2.206808, mean: 4.775609, max: 6.084061
20:12:52 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:52 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.044570, dN_50: 0.003498
20:12:52 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:52 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.018296880548022393
20:12:52 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:52 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:52 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:52 DEBUG opendrift.models.physics_methods:915: Advecting 456 of 5985 elements above 0.100m with wind-sheared ocean current (0.006815 m/s - 0.177711 m/s)
20:12:53 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:53 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013734208594592314 and 0.46182102659077484 m/s
20:12:53 DEBUG opendrift.models.basemodel:2123: 5985 active elements (15 deactivated)
20:12:53 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:53 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:53 INFO opendrift.models.basemodel:2035: 2024-12-09 17:11:28.612916 - step 46 of 120 - 5985 active elements (15 deactivated)
20:12:53 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:53 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:53 DEBUG opendrift.models.basemodel:2054: 34.70068015036114 <- latitude -> 35.21070097923702
20:12:53 DEBUG opendrift.models.basemodel:2059: 23.508739900976572 <- longitude -> 24.192965577700576
20:12:53 DEBUG opendrift.models.basemodel:2064: -111.64308429871288 <- z -> 0.0
20:12:53 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5985 elements
20:12:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5985 elements
20:12:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5985 elements
20:12:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5985 elements
20:12:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:53 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5985 elements
20:12:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5985 elements
20:12:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 15:00:00 (before)
2024-12-09 18:00:00 (after)
20:12:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 15:00:00) in space (linearNDFast)
20:12:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 18:00:00) in space (linearNDFast)
20:12:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 15:00:00, weight 0.27) and
after (2024-12-09 18:00:00, weight 0.73) in time
20:12:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5985 elements
20:12:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5985 elements
20:12:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 15:00:00 (before)
2024-12-09 18:00:00 (after)
20:12:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 15:00:00) in space (linearNDFast)
20:12:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 18:00:00) in space (linearNDFast)
20:12:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 15:00:00, weight 0.27) and
after (2024-12-09 18:00:00, weight 0.73) in time
20:12:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:53 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:53 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:53 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:53 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0405116 (min) 0.445012 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.196693 (min) 0.0485039 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.467939 (min) 1.25981 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.42269 (min) 6.84551 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:53 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:53 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.147881, mean: 0.702702, max: 1.158160
20:12:53 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:53 DEBUG opendrift.models.physics_methods:1061: min: 2.095012, mean: 4.519035, max: 5.862920
20:12:53 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.095012, mean: 4.519035, max: 5.862920
20:12:53 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:12:53 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:12:53 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:53 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:12:53 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:12:53 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:53 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:53 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:53 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:53 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:12:53 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:53 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:53 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:53 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:53 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:53 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:53 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:53 DEBUG opendrift.models.physics_methods:1061: min: 2.095012, mean: 4.519354, max: 5.862920
20:12:53 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:53 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.049049, dN_50: 0.003849
20:12:53 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:53 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.016991260776160068
20:12:53 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:53 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:53 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:53 DEBUG opendrift.models.physics_methods:915: Advecting 454 of 5984 elements above 0.100m with wind-sheared ocean current (0.003052 m/s - 0.166106 m/s)
20:12:53 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:53 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0004659266927172242 and 0.4098571238880438 m/s
20:12:53 DEBUG opendrift.models.basemodel:2123: 5984 active elements (16 deactivated)
20:12:53 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:53 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:53 INFO opendrift.models.basemodel:2035: 2024-12-09 18:11:28.612916 - step 47 of 120 - 5984 active elements (16 deactivated)
20:12:53 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:53 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:53 DEBUG opendrift.models.basemodel:2054: 34.69331711070808 <- latitude -> 35.21176212852393
20:12:53 DEBUG opendrift.models.basemodel:2059: 23.508116757365514 <- longitude -> 24.20180769259138
20:12:53 DEBUG opendrift.models.basemodel:2064: -110.67145776305226 <- z -> 0.0
20:12:53 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5984 elements
20:12:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5984 elements
20:12:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5984 elements
20:12:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5984 elements
20:12:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:53 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5984 elements
20:12:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5984 elements
20:12:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 18:00:00 (before)
2024-12-09 21:00:00 (after)
20:12:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:12:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:55 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:12:55 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:12:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:55 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 16x21x22) for time after (2024-12-09 21:00:00)
20:12:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 18:00:00) in space (linearNDFast)
20:12:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:55 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 21:00:00) in space (linearNDFast)
20:12:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:12:55 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 18:00:00, weight 0.94) and
after (2024-12-09 21:00:00, weight 0.06) in time
20:12:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5984 elements
20:12:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5984 elements
20:12:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 18:00:00 (before)
2024-12-09 21:00:00 (after)
20:12:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:12:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:12:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:12:55 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:12:55 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:12:55 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-09 21:00:00)
20:12:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 18:00:00) in space (linearNDFast)
20:12:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:55 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 21:00:00) in space (linearNDFast)
20:12:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:55 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 18:00:00, weight 0.94) and
after (2024-12-09 21:00:00, weight 0.06) in time
20:12:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:55 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:55 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:55 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:55 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:55 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0619684 (min) 0.445424 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.192761 (min) 0.0391092 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.828396 (min) 1.05486 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.16432 (min) 6.64589 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:55 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:55 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.130071, mean: 0.637792, max: 1.089970
20:12:55 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:55 DEBUG opendrift.models.physics_methods:1061: min: 1.964809, mean: 4.302183, max: 5.687702
20:12:55 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.964809, mean: 4.302183, max: 5.687702
20:12:55 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:12:55 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:12:55 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:56 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:12:56 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:12:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:56 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:12:56 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:56 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:56 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:56 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:56 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:56 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:56 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:56 DEBUG opendrift.models.physics_methods:1061: min: 1.964809, mean: 4.302497, max: 5.687702
20:12:56 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:56 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.053573, dN_50: 0.004204
20:12:56 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:56 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01599109321856041
20:12:56 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:56 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:56 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:56 DEBUG opendrift.models.physics_methods:915: Advecting 456 of 5983 elements above 0.100m with wind-sheared ocean current (0.043335 m/s - 0.155406 m/s)
20:12:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:56 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0031600208765173486 and 0.42518155978505195 m/s
20:12:56 DEBUG opendrift.models.basemodel:2123: 5983 active elements (17 deactivated)
20:12:56 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:56 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:56 INFO opendrift.models.basemodel:2035: 2024-12-09 19:11:28.612916 - step 48 of 120 - 5983 active elements (17 deactivated)
20:12:56 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:56 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:56 DEBUG opendrift.models.basemodel:2054: 34.683438991382936 <- latitude -> 35.21500778336464
20:12:56 DEBUG opendrift.models.basemodel:2059: 23.500074603086574 <- longitude -> 24.205004604753153
20:12:56 DEBUG opendrift.models.basemodel:2064: -109.67476300849279 <- z -> 0.0
20:12:56 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5983 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5983 elements
20:12:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5983 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5983 elements
20:12:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5983 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5983 elements
20:12:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 18:00:00 (before)
2024-12-09 21:00:00 (after)
20:12:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 18:00:00) in space (linearNDFast)
20:12:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 21:00:00) in space (linearNDFast)
20:12:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 18:00:00, weight 0.60) and
after (2024-12-09 21:00:00, weight 0.40) in time
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5983 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5983 elements
20:12:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 18:00:00 (before)
2024-12-09 21:00:00 (after)
20:12:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 18:00:00) in space (linearNDFast)
20:12:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 21:00:00) in space (linearNDFast)
20:12:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 18:00:00, weight 0.60) and
after (2024-12-09 21:00:00, weight 0.40) in time
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:56 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:56 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:56 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0588909 (min) 0.437548 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.174834 (min) 0.0274398 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.07561 (min) 1.27064 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.13477 (min) 6.43388 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:56 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.131460, mean: 0.608992, max: 1.032262
20:12:56 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:56 DEBUG opendrift.models.physics_methods:1061: min: 1.975266, mean: 4.210092, max: 5.535089
20:12:56 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.975266, mean: 4.210092, max: 5.535089
20:12:56 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:12:56 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:12:56 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:12:56 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:12:56 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:12:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:12:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:12:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:12:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:12:56 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:12:56 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:56 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:56 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:56 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:56 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:56 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:56 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:56 DEBUG opendrift.models.physics_methods:1061: min: 1.975266, mean: 4.210999, max: 5.535089
20:12:56 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:56 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.056651, dN_50: 0.004446
20:12:56 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:56 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.015144675959188874
20:12:56 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:56 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:56 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:56 DEBUG opendrift.models.physics_methods:915: Advecting 465 of 5980 elements above 0.100m with wind-sheared ocean current (0.003754 m/s - 0.154681 m/s)
20:12:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:56 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021770523338276726 and 0.43948789457694987 m/s
20:12:56 DEBUG opendrift.models.basemodel:2123: 5980 active elements (20 deactivated)
20:12:56 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:56 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:56 INFO opendrift.models.basemodel:2035: 2024-12-09 20:11:28.612916 - step 49 of 120 - 5980 active elements (20 deactivated)
20:12:56 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:56 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:56 DEBUG opendrift.models.basemodel:2054: 34.67847370431636 <- latitude -> 35.2239211244341
20:12:56 DEBUG opendrift.models.basemodel:2059: 23.503258751891092 <- longitude -> 24.213332220362567
20:12:56 DEBUG opendrift.models.basemodel:2064: -109.13169281733752 <- z -> 0.0
20:12:56 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 18:00:00 (before)
2024-12-09 21:00:00 (after)
20:12:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 18:00:00) in space (linearNDFast)
20:12:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 21:00:00) in space (linearNDFast)
20:12:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 18:00:00, weight 0.27) and
after (2024-12-09 21:00:00, weight 0.73) in time
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 18:00:00 (before)
2024-12-09 21:00:00 (after)
20:12:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 18:00:00) in space (linearNDFast)
20:12:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-09 21:00:00) in space (linearNDFast)
20:12:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:12:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 18:00:00, weight 0.27) and
after (2024-12-09 21:00:00, weight 0.73) in time
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:12:56 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:12:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:12:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:12:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:12:56 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:12:56 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0646256 (min) 0.425442 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.15869 (min) 0.0121408 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.33308 (min) 1.52163 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: y_wind: 2.12051 (min) 6.14367 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:12:56 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:12:56 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.135140, mean: 0.583975, max: 0.957874
20:12:56 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:12:56 DEBUG opendrift.models.physics_methods:1061: min: 2.002728, mean: 4.127986, max: 5.331922
20:12:56 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.002728, mean: 4.127986, max: 5.331922
20:12:56 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:12:56 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:12:56 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:12:56 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:12:56 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:12:56 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:12:56 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:12:56 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:12:56 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:12:56 DEBUG opendrift.models.physics_methods:1061: min: 2.002728, mean: 4.127986, max: 5.331922
20:12:56 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:12:56 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.059860, dN_50: 0.004698
20:12:56 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:12:56 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01405360483122177
20:12:56 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:12:56 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:12:56 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:12:56 DEBUG opendrift.models.physics_methods:915: Advecting 465 of 5980 elements above 0.100m with wind-sheared ocean current (0.011086 m/s - 0.155397 m/s)
20:12:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:12:56 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001269690094290278 and 0.43662259199455733 m/s
20:12:56 DEBUG opendrift.models.basemodel:2123: 5980 active elements (20 deactivated)
20:12:56 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:12:56 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:12:56 INFO opendrift.models.basemodel:2035: 2024-12-09 21:11:28.612916 - step 50 of 120 - 5980 active elements (20 deactivated)
20:12:56 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:12:56 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:12:56 DEBUG opendrift.models.basemodel:2054: 34.67746430470293 <- latitude -> 35.23297606086485
20:12:56 DEBUG opendrift.models.basemodel:2059: 23.50723643636436 <- longitude -> 24.222672669240346
20:12:56 DEBUG opendrift.models.basemodel:2064: -108.19912877932148 <- z -> 0.0
20:12:56 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:12:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:12:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:12:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:12:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:12:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:12:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:12:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5980 elements
20:12:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:12:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 21:00:00 (before)
2024-12-10 00:00:00 (after)
20:12:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:12:59 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:01 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:01 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:01 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:01 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:01 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 16x22x22) for time after (2024-12-10 00:00:00)
20:13:01 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 21:00:00) in space (linearNDFast)
20:13:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:01 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 00:00:00) in space (linearNDFast)
20:13:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:01 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 1
20:13:02 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 21:00:00, weight 0.94) and
after (2024-12-10 00:00:00, weight 0.06) in time
20:13:02 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:02 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:02 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:02 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5980 elements
20:13:02 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5980 elements
20:13:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 21:00:00 (before)
2024-12-10 00:00:00 (after)
20:13:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:02 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:02 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:02 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-10 00:00:00)
20:13:02 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 21:00:00) in space (linearNDFast)
20:13:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:02 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 00:00:00) in space (linearNDFast)
20:13:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:02 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 21:00:00, weight 0.94) and
after (2024-12-10 00:00:00, weight 0.06) in time
20:13:02 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:02 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:02 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:02 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:02 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:02 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:02 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:02 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:02 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0627621 (min) 0.4358 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.167333 (min) 0.0136961 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.36984 (min) 1.88722 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.99002 (min) 5.8157 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:02 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.118082, mean: 0.549216, max: 0.889367
20:13:02 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:02 DEBUG opendrift.models.physics_methods:1061: min: 1.872066, mean: 4.003966, max: 5.137716
20:13:02 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.872066, mean: 4.003966, max: 5.137716
20:13:02 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:02 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:02 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:02 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:02 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:02 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:02 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:02 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:02 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:02 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:02 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:02 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:02 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:02 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:02 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:02 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:02 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:02 DEBUG opendrift.models.physics_methods:1061: min: 1.872066, mean: 4.004559, max: 5.137716
20:13:02 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:02 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.063885, dN_50: 0.005014
20:13:02 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:02 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01304879580174976
20:13:02 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:02 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:02 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:02 DEBUG opendrift.models.physics_methods:915: Advecting 465 of 5978 elements above 0.100m with wind-sheared ocean current (0.016075 m/s - 0.155853 m/s)
20:13:02 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:02 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007870824550318902 and 0.41971725917786884 m/s
20:13:02 DEBUG opendrift.models.basemodel:2123: 5978 active elements (22 deactivated)
20:13:02 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:02 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:02 INFO opendrift.models.basemodel:2035: 2024-12-09 22:11:28.612916 - step 51 of 120 - 5978 active elements (22 deactivated)
20:13:02 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:02 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:02 DEBUG opendrift.models.basemodel:2054: 34.67646993500394 <- latitude -> 35.188484069671006
20:13:02 DEBUG opendrift.models.basemodel:2059: 23.50716688788351 <- longitude -> 24.230913440054508
20:13:02 DEBUG opendrift.models.basemodel:2064: -106.88038881015322 <- z -> 0.0
20:13:02 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:02 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5978 elements
20:13:02 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5978 elements
20:13:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:02 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:02 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:02 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:02 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5978 elements
20:13:02 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5978 elements
20:13:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:02 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:02 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:02 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:02 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:02 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5978 elements
20:13:02 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5978 elements
20:13:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 21:00:00 (before)
2024-12-10 00:00:00 (after)
20:13:02 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 21:00:00) in space (linearNDFast)
20:13:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:02 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 00:00:00) in space (linearNDFast)
20:13:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:02 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 21:00:00, weight 0.60) and
after (2024-12-10 00:00:00, weight 0.40) in time
20:13:02 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:02 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:02 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:02 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:02 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5978 elements
20:13:02 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5978 elements
20:13:02 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:02 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 21:00:00 (before)
2024-12-10 00:00:00 (after)
20:13:02 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 21:00:00) in space (linearNDFast)
20:13:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:02 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 00:00:00) in space (linearNDFast)
20:13:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:02 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 21:00:00, weight 0.60) and
after (2024-12-10 00:00:00, weight 0.40) in time
20:13:02 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:02 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:02 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:02 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:02 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:02 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:02 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:02 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:02 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:02 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0573912 (min) 0.437838 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.167003 (min) 0.00833184 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.409544 (min) 2.66502 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.53555 (min) 5.36964 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:02 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:02 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.058010, mean: 0.491217, max: 0.848187
20:13:02 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:02 DEBUG opendrift.models.physics_methods:1061: min: 1.312140, mean: 3.774947, max: 5.017361
20:13:02 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.312140, mean: 3.774947, max: 5.017361
20:13:02 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:02 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:02 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:02 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:02 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:02 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:02 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:02 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:02 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:02 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:02 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:02 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:02 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:02 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:02 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:02 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:02 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:02 DEBUG opendrift.models.physics_methods:1061: min: 1.312140, mean: 3.775266, max: 5.017361
20:13:02 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:02 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.070419, dN_50: 0.005526
20:13:03 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:03 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.012444789238563016
20:13:03 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:03 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:03 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:03 DEBUG opendrift.models.physics_methods:915: Advecting 473 of 5977 elements above 0.100m with wind-sheared ocean current (0.006361 m/s - 0.147258 m/s)
20:13:03 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:03 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003066621337075275 and 0.4530030507261859 m/s
20:13:03 DEBUG opendrift.models.basemodel:2123: 5977 active elements (23 deactivated)
20:13:03 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:03 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:03 INFO opendrift.models.basemodel:2035: 2024-12-09 23:11:28.612916 - step 52 of 120 - 5977 active elements (23 deactivated)
20:13:03 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:03 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:03 DEBUG opendrift.models.basemodel:2054: 34.66881363624878 <- latitude -> 35.1905554846522
20:13:03 DEBUG opendrift.models.basemodel:2059: 23.5085971539822 <- longitude -> 24.248525085382656
20:13:03 DEBUG opendrift.models.basemodel:2064: -105.76813183923889 <- z -> 0.0
20:13:03 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:03 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 21:00:00 (before)
2024-12-10 00:00:00 (after)
20:13:03 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 21:00:00) in space (linearNDFast)
20:13:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:03 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 00:00:00) in space (linearNDFast)
20:13:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:03 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 21:00:00, weight 0.27) and
after (2024-12-10 00:00:00, weight 0.73) in time
20:13:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-09 21:00:00 (before)
2024-12-10 00:00:00 (after)
20:13:03 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-09 21:00:00) in space (linearNDFast)
20:13:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:03 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 00:00:00) in space (linearNDFast)
20:13:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:03 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-09 21:00:00, weight 0.27) and
after (2024-12-10 00:00:00, weight 0.73) in time
20:13:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:03 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:03 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:03 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:03 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:03 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0547093 (min) 0.440827 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.168685 (min) 0.00452349 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.546718 (min) 3.44703 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.03357 (min) 4.91629 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:03 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:03 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.050284, mean: 0.481644, max: 0.848289
20:13:03 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:03 DEBUG opendrift.models.physics_methods:1061: min: 1.221650, mean: 3.734529, max: 5.017663
20:13:03 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.221650, mean: 3.734529, max: 5.017663
20:13:03 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:13:03 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:13:03 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:03 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:03 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:03 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:03 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:03 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:03 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:03 DEBUG opendrift.models.physics_methods:1061: min: 1.221650, mean: 3.734529, max: 5.017663
20:13:03 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:03 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.074948, dN_50: 0.005882
20:13:03 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:03 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.012446287624849192
20:13:03 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:03 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:03 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:03 DEBUG opendrift.models.physics_methods:915: Advecting 476 of 5977 elements above 0.100m with wind-sheared ocean current (0.042891 m/s - 0.142675 m/s)
20:13:03 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:03 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00039525526230876993 and 0.49472486485932016 m/s
20:13:03 DEBUG opendrift.models.basemodel:2123: 5977 active elements (23 deactivated)
20:13:03 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:03 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:03 INFO opendrift.models.basemodel:2035: 2024-12-10 00:11:28.612916 - step 53 of 120 - 5977 active elements (23 deactivated)
20:13:03 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:03 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:03 DEBUG opendrift.models.basemodel:2054: 34.66167318680285 <- latitude -> 35.19692385504793
20:13:03 DEBUG opendrift.models.basemodel:2059: 23.51147722482744 <- longitude -> 24.264297003739923
20:13:03 DEBUG opendrift.models.basemodel:2064: -105.32741723442862 <- z -> 0.0
20:13:03 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:03 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:03 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:03 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:03 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:03 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:03 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:03 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5977 elements
20:13:03 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:03 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 00:00:00 (before)
2024-12-10 03:00:00 (after)
20:13:03 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:08 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 17x21x22) for time after (2024-12-10 03:00:00)
20:13:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 00:00:00) in space (linearNDFast)
20:13:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:08 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 03:00:00) in space (linearNDFast)
20:13:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:08 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 00:00:00, weight 0.94) and
after (2024-12-10 03:00:00, weight 0.06) in time
20:13:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5977 elements
20:13:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5977 elements
20:13:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 00:00:00 (before)
2024-12-10 03:00:00 (after)
20:13:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:08 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-10 03:00:00)
20:13:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 00:00:00) in space (linearNDFast)
20:13:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:08 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 03:00:00) in space (linearNDFast)
20:13:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:08 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 00:00:00, weight 0.94) and
after (2024-12-10 03:00:00, weight 0.06) in time
20:13:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:08 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:08 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:08 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:08 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:08 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0523301 (min) 0.452931 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.173768 (min) 0.000872867 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.27485 (min) 4.07732 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.682176 (min) 4.4986 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:08 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:08 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.089599, mean: 0.510521, max: 0.877331
20:13:08 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:08 DEBUG opendrift.models.physics_methods:1061: min: 1.630728, mean: 3.851042, max: 5.102833
20:13:08 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.630728, mean: 3.851042, max: 5.102833
20:13:08 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:08 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:08 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:08 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:08 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:08 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:08 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:08 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:08 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:08 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:08 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:08 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:08 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:08 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:08 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:08 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:08 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:08 DEBUG opendrift.models.physics_methods:1061: min: 1.630728, mean: 3.851339, max: 5.102833
20:13:08 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:08 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.077200, dN_50: 0.006059
20:13:08 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:08 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.012872257692320012
20:13:08 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:08 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:08 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:09 DEBUG opendrift.models.physics_methods:915: Advecting 485 of 5976 elements above 0.100m with wind-sheared ocean current (0.026992 m/s - 0.143405 m/s)
20:13:09 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:09 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017326060778819737 and 0.4271926553738904 m/s
20:13:09 DEBUG opendrift.models.basemodel:2123: 5976 active elements (24 deactivated)
20:13:09 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:09 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:09 INFO opendrift.models.basemodel:2035: 2024-12-10 01:11:28.612916 - step 54 of 120 - 5976 active elements (24 deactivated)
20:13:09 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:09 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:09 DEBUG opendrift.models.basemodel:2054: 34.66126891777217 <- latitude -> 35.20263304152085
20:13:09 DEBUG opendrift.models.basemodel:2059: 23.514737325692543 <- longitude -> 24.279979313467063
20:13:09 DEBUG opendrift.models.basemodel:2064: -104.32097799824058 <- z -> 0.0
20:13:09 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5976 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5976 elements
20:13:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5976 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5976 elements
20:13:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:09 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5976 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5976 elements
20:13:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 00:00:00 (before)
2024-12-10 03:00:00 (after)
20:13:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 00:00:00) in space (linearNDFast)
20:13:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 03:00:00) in space (linearNDFast)
20:13:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
20:13:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 00:00:00, weight 0.60) and
after (2024-12-10 03:00:00, weight 0.40) in time
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5976 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5976 elements
20:13:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 00:00:00 (before)
2024-12-10 03:00:00 (after)
20:13:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 00:00:00) in space (linearNDFast)
20:13:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 03:00:00) in space (linearNDFast)
20:13:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 00:00:00, weight 0.60) and
after (2024-12-10 03:00:00, weight 0.40) in time
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:09 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:09 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:09 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0221347 (min) 0.472069 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.176703 (min) 0.00465966 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.57662 (min) 4.23285 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.602227 (min) 4.26916 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:09 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.105634, mean: 0.519114, max: 0.877936
20:13:09 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:09 DEBUG opendrift.models.physics_methods:1061: min: 1.770643, mean: 3.884808, max: 5.104591
20:13:09 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.770643, mean: 3.884808, max: 5.104591
20:13:09 DEBUG opendrift.models.basemodel:662: 5 elements hit land, moving them to the coastline.
20:13:09 DEBUG opendrift.models.basemodel:1693: 5 elements scheduled for deactivation (stranded)
20:13:09 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:09 DEBUG opendrift.models.basemodel:1713: Removed 5 elements.
20:13:09 DEBUG opendrift.models.basemodel:1716: Removed 5 values from environment.
20:13:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:09 DEBUG opendrift.models.basemodel:1725: Removed 5 values from environment_profiles.
20:13:09 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:09 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:09 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:09 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:09 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:09 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:09 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:09 DEBUG opendrift.models.physics_methods:1061: min: 1.770643, mean: 3.886129, max: 5.104591
20:13:09 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:09 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.080711, dN_50: 0.006334
20:13:09 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:09 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.012881126376326772
20:13:09 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:09 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:09 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:09 DEBUG opendrift.models.physics_methods:915: Advecting 486 of 5971 elements above 0.100m with wind-sheared ocean current (0.005666 m/s - 0.145527 m/s)
20:13:09 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:09 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014869978768584369 and 0.42215356407761406 m/s
20:13:09 DEBUG opendrift.models.basemodel:2123: 5971 active elements (29 deactivated)
20:13:09 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:09 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:09 INFO opendrift.models.basemodel:2035: 2024-12-10 02:11:28.612916 - step 55 of 120 - 5971 active elements (29 deactivated)
20:13:09 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:09 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:09 DEBUG opendrift.models.basemodel:2054: 34.657422608006804 <- latitude -> 35.20011375231702
20:13:09 DEBUG opendrift.models.basemodel:2059: 23.515060414886655 <- longitude -> 24.29745179469569
20:13:09 DEBUG opendrift.models.basemodel:2064: -103.04951971631195 <- z -> 0.0
20:13:09 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5971 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5971 elements
20:13:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5971 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5971 elements
20:13:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:09 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5971 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5971 elements
20:13:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 00:00:00 (before)
2024-12-10 03:00:00 (after)
20:13:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 00:00:00) in space (linearNDFast)
20:13:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 03:00:00) in space (linearNDFast)
20:13:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 00:00:00, weight 0.27) and
after (2024-12-10 03:00:00, weight 0.73) in time
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5971 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5971 elements
20:13:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 00:00:00 (before)
2024-12-10 03:00:00 (after)
20:13:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 00:00:00) in space (linearNDFast)
20:13:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 03:00:00) in space (linearNDFast)
20:13:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 00:00:00, weight 0.27) and
after (2024-12-10 03:00:00, weight 0.73) in time
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:09 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:09 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:09 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00345206 (min) 0.491501 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.201806 (min) 0.00633976 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.82062 (min) 4.43139 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.605633 (min) 4.06334 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:09 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:09 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.124596, mean: 0.532463, max: 0.889239
20:13:09 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:09 DEBUG opendrift.models.physics_methods:1061: min: 1.923012, mean: 3.936961, max: 5.137346
20:13:09 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.923012, mean: 3.936961, max: 5.137346
20:13:09 DEBUG opendrift.models.basemodel:662: 5 elements hit land, moving them to the coastline.
20:13:09 DEBUG opendrift.models.basemodel:1693: 5 elements scheduled for deactivation (stranded)
20:13:09 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:09 DEBUG opendrift.models.basemodel:1713: Removed 5 elements.
20:13:09 DEBUG opendrift.models.basemodel:1716: Removed 5 values from environment.
20:13:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:09 DEBUG opendrift.models.basemodel:1725: Removed 5 values from environment_profiles.
20:13:09 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:09 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:09 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:09 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:09 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:09 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:09 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:09 DEBUG opendrift.models.physics_methods:1061: min: 1.923012, mean: 3.938208, max: 5.137346
20:13:09 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:09 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.084027, dN_50: 0.006594
20:13:09 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:09 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.013046913123451366
20:13:09 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:09 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:09 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:09 DEBUG opendrift.models.physics_methods:915: Advecting 490 of 5966 elements above 0.100m with wind-sheared ocean current (0.020339 m/s - 0.148236 m/s)
20:13:09 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:09 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011511891970338935 and 0.46141653666602656 m/s
20:13:09 DEBUG opendrift.models.basemodel:2123: 5966 active elements (34 deactivated)
20:13:09 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:09 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:09 INFO opendrift.models.basemodel:2035: 2024-12-10 03:11:28.612916 - step 56 of 120 - 5966 active elements (34 deactivated)
20:13:09 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:09 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:09 DEBUG opendrift.models.basemodel:2054: 34.65175841559256 <- latitude -> 35.19743138187483
20:13:09 DEBUG opendrift.models.basemodel:2059: 23.511543817663405 <- longitude -> 24.320631481188304
20:13:09 DEBUG opendrift.models.basemodel:2064: -102.31570055256142 <- z -> 0.0
20:13:09 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5966 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5966 elements
20:13:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5966 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5966 elements
20:13:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:09 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5966 elements
20:13:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5966 elements
20:13:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 03:00:00 (before)
2024-12-10 06:00:00 (after)
20:13:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:11 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:11 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:11 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:11 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 18x21x22) for time after (2024-12-10 06:00:00)
20:13:11 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 03:00:00) in space (linearNDFast)
20:13:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:11 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 06:00:00) in space (linearNDFast)
20:13:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:11 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 03:00:00, weight 0.94) and
after (2024-12-10 06:00:00, weight 0.06) in time
20:13:11 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:11 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:11 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:11 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:11 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:11 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:11 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:11 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5966 elements
20:13:11 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5966 elements
20:13:11 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:11 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 03:00:00 (before)
2024-12-10 06:00:00 (after)
20:13:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:12 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:12 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:12 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-10 06:00:00)
20:13:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 03:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 06:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 03:00:00, weight 0.94) and
after (2024-12-10 06:00:00, weight 0.06) in time
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:12 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:12 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.00590488 (min) 0.503685 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.222002 (min) 0.0114553 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.99833 (min) 4.59023 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.559529 (min) 3.86776 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:12 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.145789, mean: 0.536884, max: 0.886334
20:13:12 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:12 DEBUG opendrift.models.physics_methods:1061: min: 2.080134, mean: 3.957094, max: 5.128948
20:13:12 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.080134, mean: 3.957094, max: 5.128948
20:13:12 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:12 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:12 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:12 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:12 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:12 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:12 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:12 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:12 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:12 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:12 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:12 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:12 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:12 DEBUG opendrift.models.physics_methods:1061: min: 2.080134, mean: 3.957364, max: 5.128948
20:13:12 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:12 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.087761, dN_50: 0.006888
20:13:12 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:12 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.013004303424491036
20:13:12 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:12 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:12 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:12 DEBUG opendrift.models.physics_methods:915: Advecting 487 of 5965 elements above 0.100m with wind-sheared ocean current (0.044452 m/s - 0.146956 m/s)
20:13:12 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:12 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0019159182005457065 and 0.510966777754027 m/s
20:13:12 DEBUG opendrift.models.basemodel:2123: 5965 active elements (35 deactivated)
20:13:12 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:12 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:12 INFO opendrift.models.basemodel:2035: 2024-12-10 04:11:28.612916 - step 57 of 120 - 5965 active elements (35 deactivated)
20:13:12 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:12 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:12 DEBUG opendrift.models.basemodel:2054: 34.64223146231318 <- latitude -> 35.19408449150851
20:13:12 DEBUG opendrift.models.basemodel:2059: 23.516494301512076 <- longitude -> 24.345365568355078
20:13:12 DEBUG opendrift.models.basemodel:2064: -101.87523362605585 <- z -> 0.0
20:13:12 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5965 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5965 elements
20:13:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5965 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5965 elements
20:13:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:12 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5965 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5965 elements
20:13:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 03:00:00 (before)
2024-12-10 06:00:00 (after)
20:13:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 03:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 06:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 03:00:00, weight 0.60) and
after (2024-12-10 06:00:00, weight 0.40) in time
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5965 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5965 elements
20:13:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 03:00:00 (before)
2024-12-10 06:00:00 (after)
20:13:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 03:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 06:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 03:00:00, weight 0.60) and
after (2024-12-10 06:00:00, weight 0.40) in time
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:12 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:12 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0235133 (min) 0.498326 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.236794 (min) 0.0185871 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.90424 (min) 4.23809 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.720901 (min) 3.59629 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:12 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.141354, mean: 0.486072, max: 0.760010
20:13:12 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:12 DEBUG opendrift.models.physics_methods:1061: min: 2.048250, mean: 3.768591, max: 4.749405
20:13:12 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.048250, mean: 3.768591, max: 4.749405
20:13:12 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:13:12 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:13:12 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:12 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:13:12 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:12 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:13:12 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:12 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:12 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:12 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:12 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:12 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:12 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:12 DEBUG opendrift.models.physics_methods:1061: min: 2.048250, mean: 3.769197, max: 4.749405
20:13:12 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:12 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.094431, dN_50: 0.007411
20:13:12 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:12 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.011151472980917586
20:13:12 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:12 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:12 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:12 DEBUG opendrift.models.physics_methods:915: Advecting 495 of 5962 elements above 0.100m with wind-sheared ocean current (0.016344 m/s - 0.142173 m/s)
20:13:12 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:12 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014132257179051884 and 0.4973767914784131 m/s
20:13:12 DEBUG opendrift.models.basemodel:2123: 5962 active elements (38 deactivated)
20:13:12 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:12 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:12 INFO opendrift.models.basemodel:2035: 2024-12-10 05:11:28.612916 - step 58 of 120 - 5962 active elements (38 deactivated)
20:13:12 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:12 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:12 DEBUG opendrift.models.basemodel:2054: 34.63382396657489 <- latitude -> 35.189802751972856
20:13:12 DEBUG opendrift.models.basemodel:2059: 23.516013013234236 <- longitude -> 24.3691699053454
20:13:12 DEBUG opendrift.models.basemodel:2064: -101.32450136355756 <- z -> 0.0
20:13:12 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5962 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5962 elements
20:13:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5962 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5962 elements
20:13:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:12 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5962 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5962 elements
20:13:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 03:00:00 (before)
2024-12-10 06:00:00 (after)
20:13:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 03:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 06:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 03:00:00, weight 0.27) and
after (2024-12-10 06:00:00, weight 0.73) in time
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5962 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5962 elements
20:13:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 03:00:00 (before)
2024-12-10 06:00:00 (after)
20:13:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 03:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 06:00:00) in space (linearNDFast)
20:13:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 03:00:00, weight 0.27) and
after (2024-12-10 06:00:00, weight 0.73) in time
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:12 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:12 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:12 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.035744 (min) 0.49906 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.252064 (min) 0.00119996 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.57099 (min) 3.90438 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.872196 (min) 3.35505 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:12 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:12 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.101054, mean: 0.437669, max: 0.651914
20:13:12 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:12 DEBUG opendrift.models.physics_methods:1061: min: 1.731837, mean: 3.578556, max: 4.398705
20:13:12 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.731837, mean: 3.578556, max: 4.398705
20:13:12 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:12 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:12 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:12 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:12 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:12 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:12 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:12 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:12 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:12 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:12 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:12 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:12 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:12 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:12 DEBUG opendrift.models.physics_methods:1061: min: 1.731837, mean: 3.578707, max: 4.398705
20:13:12 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:12 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.101738, dN_50: 0.007984
20:13:12 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:12 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.009566009297827022
20:13:12 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:12 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:12 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:12 DEBUG opendrift.models.physics_methods:915: Advecting 495 of 5961 elements above 0.100m with wind-sheared ocean current (0.026582 m/s - 0.133315 m/s)
20:13:12 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:12 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0010735714875693182 and 0.4679930540157627 m/s
20:13:12 DEBUG opendrift.models.basemodel:2123: 5961 active elements (39 deactivated)
20:13:12 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:12 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:12 INFO opendrift.models.basemodel:2035: 2024-12-10 06:11:28.612916 - step 59 of 120 - 5961 active elements (39 deactivated)
20:13:12 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:12 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:12 DEBUG opendrift.models.basemodel:2054: 34.62627624429155 <- latitude -> 35.18966584650349
20:13:12 DEBUG opendrift.models.basemodel:2059: 23.522571292535183 <- longitude -> 24.39603791099844
20:13:12 DEBUG opendrift.models.basemodel:2064: -100.28738833661745 <- z -> 0.0
20:13:12 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5961 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5961 elements
20:13:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5961 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5961 elements
20:13:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:12 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5961 elements
20:13:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5961 elements
20:13:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 06:00:00 (before)
2024-12-10 09:00:00 (after)
20:13:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:16 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:16 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:16 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:16 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 19x22x22) for time after (2024-12-10 09:00:00)
20:13:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 06:00:00) in space (linearNDFast)
20:13:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 09:00:00) in space (linearNDFast)
20:13:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 06:00:00, weight 0.94) and
after (2024-12-10 09:00:00, weight 0.06) in time
20:13:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5961 elements
20:13:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5961 elements
20:13:16 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:16 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 06:00:00 (before)
2024-12-10 09:00:00 (after)
20:13:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:16 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:16 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:16 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-10 09:00:00)
20:13:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 06:00:00) in space (linearNDFast)
20:13:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 09:00:00) in space (linearNDFast)
20:13:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 06:00:00, weight 0.94) and
after (2024-12-10 09:00:00, weight 0.06) in time
20:13:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:16 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:16 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:16 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:16 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.0439006 (min) 0.493655 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.26354 (min) 0.00352151 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.07511 (min) 3.56197 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.989987 (min) 3.15516 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:16 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:16 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.072083, mean: 0.391923, max: 0.557010
20:13:16 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:16 DEBUG opendrift.models.physics_methods:1061: min: 1.462667, mean: 3.387319, max: 4.065942
20:13:16 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.462667, mean: 3.387319, max: 4.065942
20:13:16 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:13:16 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:13:16 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:16 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:13:16 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:13:16 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:16 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:16 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:16 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:16 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:13:16 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:16 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:16 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:16 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:16 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:16 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:16 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:16 DEBUG opendrift.models.physics_methods:1061: min: 1.462667, mean: 3.387853, max: 4.065942
20:13:16 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:16 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.109865, dN_50: 0.008622
20:13:16 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:16 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.008174024303236964
20:13:16 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:16 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:16 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:16 DEBUG opendrift.models.physics_methods:915: Advecting 495 of 5958 elements above 0.100m with wind-sheared ocean current (0.002223 m/s - 0.124708 m/s)
20:13:16 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:16 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0004984976390891109 and 0.4210149542971051 m/s
20:13:16 DEBUG opendrift.models.basemodel:2123: 5958 active elements (42 deactivated)
20:13:16 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:16 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:16 INFO opendrift.models.basemodel:2035: 2024-12-10 07:11:28.612916 - step 60 of 120 - 5958 active elements (42 deactivated)
20:13:16 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:16 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:16 DEBUG opendrift.models.basemodel:2054: 34.6137656484031 <- latitude -> 35.18575350341263
20:13:16 DEBUG opendrift.models.basemodel:2059: 23.52377955544759 <- longitude -> 24.41521384617149
20:13:16 DEBUG opendrift.models.basemodel:2064: -99.41065421126252 <- z -> 0.0
20:13:16 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5958 elements
20:13:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5958 elements
20:13:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5958 elements
20:13:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5958 elements
20:13:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:16 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5958 elements
20:13:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5958 elements
20:13:16 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:16 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 06:00:00 (before)
2024-12-10 09:00:00 (after)
20:13:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 06:00:00) in space (linearNDFast)
20:13:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:17 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 09:00:00) in space (linearNDFast)
20:13:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:17 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 06:00:00, weight 0.60) and
after (2024-12-10 09:00:00, weight 0.40) in time
20:13:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 06:00:00 (before)
2024-12-10 09:00:00 (after)
20:13:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 06:00:00) in space (linearNDFast)
20:13:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:17 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 09:00:00) in space (linearNDFast)
20:13:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:17 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 06:00:00, weight 0.60) and
after (2024-12-10 09:00:00, weight 0.40) in time
20:13:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:17 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:17 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:17 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:17 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.082955 (min) 0.471941 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.254883 (min) 0.0123291 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.007 (min) 3.25264 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: y_wind: 1.00429 (min) 3.25983 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:17 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.061232, mean: 0.352951, max: 0.518300
20:13:17 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:17 DEBUG opendrift.models.physics_methods:1061: min: 1.348091, mean: 3.211773, max: 3.922113
20:13:17 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.348091, mean: 3.211773, max: 3.922113
20:13:17 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:13:17 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:13:17 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:17 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:17 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:17 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:17 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:17 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:17 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:17 DEBUG opendrift.models.physics_methods:1061: min: 1.348091, mean: 3.211773, max: 3.922113
20:13:17 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:17 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.118758, dN_50: 0.009320
20:13:17 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:17 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.007606246957642539
20:13:17 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:17 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:17 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:17 DEBUG opendrift.models.physics_methods:915: Advecting 498 of 5958 elements above 0.100m with wind-sheared ocean current (0.037885 m/s - 0.119294 m/s)
20:13:17 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:17 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009097102398432655 and 0.4175768228841061 m/s
20:13:17 DEBUG opendrift.models.basemodel:2123: 5958 active elements (42 deactivated)
20:13:17 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:17 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:17 INFO opendrift.models.basemodel:2035: 2024-12-10 08:11:28.612916 - step 61 of 120 - 5958 active elements (42 deactivated)
20:13:17 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:17 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:17 DEBUG opendrift.models.basemodel:2054: 34.61210783242155 <- latitude -> 35.18395069872853
20:13:17 DEBUG opendrift.models.basemodel:2059: 23.5277192597135 <- longitude -> 24.431166935341036
20:13:17 DEBUG opendrift.models.basemodel:2064: -98.50862925544021 <- z -> 0.0
20:13:17 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:17 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 06:00:00 (before)
2024-12-10 09:00:00 (after)
20:13:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 06:00:00) in space (linearNDFast)
20:13:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:17 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 09:00:00) in space (linearNDFast)
20:13:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:17 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 06:00:00, weight 0.27) and
after (2024-12-10 09:00:00, weight 0.73) in time
20:13:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5958 elements
20:13:17 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 06:00:00 (before)
2024-12-10 09:00:00 (after)
20:13:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 06:00:00) in space (linearNDFast)
20:13:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:17 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 09:00:00) in space (linearNDFast)
20:13:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:17 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 06:00:00, weight 0.27) and
after (2024-12-10 09:00:00, weight 0.73) in time
20:13:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:17 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:17 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:17 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:17 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.111736 (min) 0.455179 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.256943 (min) 0.0218638 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.958207 (min) 2.94956 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.994214 (min) 3.34863 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:17 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:17 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.049542, mean: 0.320020, max: 0.482263
20:13:17 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:17 DEBUG opendrift.models.physics_methods:1061: min: 1.212595, mean: 3.055410, max: 3.783306
20:13:17 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.212595, mean: 3.055410, max: 3.783306
20:13:17 DEBUG opendrift.models.basemodel:662: 5 elements hit land, moving them to the coastline.
20:13:17 DEBUG opendrift.models.basemodel:1693: 5 elements scheduled for deactivation (stranded)
20:13:17 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:17 DEBUG opendrift.models.basemodel:1713: Removed 5 elements.
20:13:17 DEBUG opendrift.models.basemodel:1716: Removed 5 values from environment.
20:13:17 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:17 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:17 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:17 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:17 DEBUG opendrift.models.basemodel:1725: Removed 5 values from environment_profiles.
20:13:17 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:17 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:17 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:17 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:17 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:17 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:17 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:17 DEBUG opendrift.models.physics_methods:1061: min: 1.212595, mean: 3.056238, max: 3.783306
20:13:17 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:17 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.127929, dN_50: 0.010040
20:13:17 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:17 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.007077682821859162
20:13:17 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:17 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:17 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:17 DEBUG opendrift.models.physics_methods:915: Advecting 495 of 5953 elements above 0.100m with wind-sheared ocean current (0.042574 m/s - 0.115175 m/s)
20:13:17 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:17 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0029366822706805087 and 0.4570984563638099 m/s
20:13:17 DEBUG opendrift.models.basemodel:2123: 5953 active elements (47 deactivated)
20:13:17 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:17 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:17 INFO opendrift.models.basemodel:2035: 2024-12-10 09:11:28.612916 - step 62 of 120 - 5953 active elements (47 deactivated)
20:13:17 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:17 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:17 DEBUG opendrift.models.basemodel:2054: 34.60430921424435 <- latitude -> 35.18151242042389
20:13:17 DEBUG opendrift.models.basemodel:2059: 23.525334658156943 <- longitude -> 24.45497550521432
20:13:17 DEBUG opendrift.models.basemodel:2064: -98.0367090032743 <- z -> 0.0
20:13:17 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5953 elements
20:13:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5953 elements
20:13:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5953 elements
20:13:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5953 elements
20:13:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:17 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5953 elements
20:13:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5953 elements
20:13:17 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 09:00:00 (before)
2024-12-10 12:00:00 (after)
20:13:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:18 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:19 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 19x22x21) for time after (2024-12-10 12:00:00)
20:13:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 09:00:00) in space (linearNDFast)
20:13:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 12:00:00) in space (linearNDFast)
20:13:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
20:13:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 09:00:00, weight 0.94) and
after (2024-12-10 12:00:00, weight 0.06) in time
20:13:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5953 elements
20:13:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5953 elements
20:13:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 09:00:00 (before)
2024-12-10 12:00:00 (after)
20:13:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:19 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:19 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:19 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-10 12:00:00)
20:13:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 09:00:00) in space (linearNDFast)
20:13:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 12:00:00) in space (linearNDFast)
20:13:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 09:00:00, weight 0.94) and
after (2024-12-10 12:00:00, weight 0.06) in time
20:13:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:19 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:19 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:19 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:19 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.141112 (min) 0.454835 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.257232 (min) 0.0307045 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.849406 (min) 2.69686 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.978904 (min) 3.4203 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:19 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.042258, mean: 0.290817, max: 0.454488
20:13:19 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:19 DEBUG opendrift.models.physics_methods:1061: min: 1.119911, mean: 2.910182, max: 3.672745
20:13:19 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.119911, mean: 2.910182, max: 3.672745
20:13:19 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:19 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:19 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:19 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:19 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:19 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:19 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:19 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:19 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:19 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:19 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:19 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:19 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:19 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:19 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:19 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:19 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:19 DEBUG opendrift.models.physics_methods:1061: min: 1.119911, mean: 2.910440, max: 3.672745
20:13:19 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:19 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.137491, dN_50: 0.010790
20:13:19 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:19 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.006670300236268344
20:13:19 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:19 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:19 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:19 DEBUG opendrift.models.physics_methods:915: Advecting 495 of 5951 elements above 0.100m with wind-sheared ocean current (0.013529 m/s - 0.111067 m/s)
20:13:19 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:19 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003966287809380467 and 0.48380373648592595 m/s
20:13:19 DEBUG opendrift.models.basemodel:2123: 5951 active elements (49 deactivated)
20:13:19 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:19 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:19 INFO opendrift.models.basemodel:2035: 2024-12-10 10:11:28.612916 - step 63 of 120 - 5951 active elements (49 deactivated)
20:13:19 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:19 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:19 DEBUG opendrift.models.basemodel:2054: 34.60058284206761 <- latitude -> 35.18318115473845
20:13:19 DEBUG opendrift.models.basemodel:2059: 23.534881674725085 <- longitude -> 24.46349745867057
20:13:19 DEBUG opendrift.models.basemodel:2064: -97.2857906163269 <- z -> 0.0
20:13:19 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5951 elements
20:13:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5951 elements
20:13:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5951 elements
20:13:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5951 elements
20:13:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:19 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5951 elements
20:13:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5951 elements
20:13:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 09:00:00 (before)
2024-12-10 12:00:00 (after)
20:13:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 09:00:00) in space (linearNDFast)
20:13:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 12:00:00) in space (linearNDFast)
20:13:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 09:00:00, weight 0.60) and
after (2024-12-10 12:00:00, weight 0.40) in time
20:13:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:19 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:19 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:19 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5951 elements
20:13:19 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5951 elements
20:13:19 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:19 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 09:00:00 (before)
2024-12-10 12:00:00 (after)
20:13:19 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 09:00:00) in space (linearNDFast)
20:13:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:19 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 12:00:00) in space (linearNDFast)
20:13:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:19 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 09:00:00, weight 0.60) and
after (2024-12-10 12:00:00, weight 0.40) in time
20:13:19 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:19 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:19 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:19 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:19 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:19 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:19 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:19 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.15076 (min) 0.465293 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.231664 (min) 0.0350914 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.793508 (min) 2.6097 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.841446 (min) 3.21076 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:19 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:19 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.034070, mean: 0.254719, max: 0.399292
20:13:19 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:19 DEBUG opendrift.models.physics_methods:1061: min: 1.005576, mean: 2.722017, max: 3.442507
20:13:19 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.005576, mean: 2.722017, max: 3.442507
20:13:19 DEBUG opendrift.models.basemodel:662: 4 elements hit land, moving them to the coastline.
20:13:19 DEBUG opendrift.models.basemodel:1693: 4 elements scheduled for deactivation (stranded)
20:13:19 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:20 DEBUG opendrift.models.basemodel:1713: Removed 4 elements.
20:13:20 DEBUG opendrift.models.basemodel:1716: Removed 4 values from environment.
20:13:20 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:20 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:20 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:20 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:20 DEBUG opendrift.models.basemodel:1725: Removed 4 values from environment_profiles.
20:13:20 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:20 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:20 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:20 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:20 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:20 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:20 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:20 DEBUG opendrift.models.physics_methods:1061: min: 1.005576, mean: 2.722583, max: 3.442507
20:13:20 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:20 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.149262, dN_50: 0.011714
20:13:20 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:20 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.005860723447953513
20:13:20 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:20 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:20 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:20 DEBUG opendrift.models.physics_methods:915: Advecting 494 of 5947 elements above 0.100m with wind-sheared ocean current (0.010680 m/s - 0.104503 m/s)
20:13:20 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:20 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0008160638404486676 and 0.40826464163663134 m/s
20:13:20 DEBUG opendrift.models.basemodel:2123: 5947 active elements (53 deactivated)
20:13:20 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:20 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:20 INFO opendrift.models.basemodel:2035: 2024-12-10 11:11:28.612916 - step 64 of 120 - 5947 active elements (53 deactivated)
20:13:20 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:20 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:20 DEBUG opendrift.models.basemodel:2054: 34.590567821214854 <- latitude -> 35.18132997227993
20:13:20 DEBUG opendrift.models.basemodel:2059: 23.53610470780086 <- longitude -> 24.482167331639545
20:13:20 DEBUG opendrift.models.basemodel:2064: -96.90227686317525 <- z -> 0.0
20:13:20 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5947 elements
20:13:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5947 elements
20:13:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5947 elements
20:13:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5947 elements
20:13:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5947 elements
20:13:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5947 elements
20:13:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 09:00:00 (before)
2024-12-10 12:00:00 (after)
20:13:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 09:00:00) in space (linearNDFast)
20:13:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 12:00:00) in space (linearNDFast)
20:13:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 09:00:00, weight 0.27) and
after (2024-12-10 12:00:00, weight 0.73) in time
20:13:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5947 elements
20:13:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5947 elements
20:13:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 09:00:00 (before)
2024-12-10 12:00:00 (after)
20:13:20 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 09:00:00) in space (linearNDFast)
20:13:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:20 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 12:00:00) in space (linearNDFast)
20:13:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:20 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 09:00:00, weight 0.27) and
after (2024-12-10 12:00:00, weight 0.73) in time
20:13:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:20 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:20 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:20 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:20 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:20 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.161247 (min) 0.475462 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.207563 (min) 0.0430909 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.766946 (min) 2.53953 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.700919 (min) 3.03576 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:20 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:20 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.027779, mean: 0.221301, max: 0.354354
20:13:20 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:20 DEBUG opendrift.models.physics_methods:1061: min: 0.908004, mean: 2.535684, max: 3.243007
20:13:20 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.908004, mean: 2.535684, max: 3.243007
20:13:20 DEBUG opendrift.models.basemodel:662: 8 elements hit land, moving them to the coastline.
20:13:20 DEBUG opendrift.models.basemodel:1693: 8 elements scheduled for deactivation (stranded)
20:13:20 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:20 DEBUG opendrift.models.basemodel:1713: Removed 8 elements.
20:13:20 DEBUG opendrift.models.basemodel:1716: Removed 8 values from environment.
20:13:20 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:20 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:20 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:20 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:20 DEBUG opendrift.models.basemodel:1725: Removed 8 values from environment_profiles.
20:13:20 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:20 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:20 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:20 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:20 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:20 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:20 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:20 DEBUG opendrift.models.physics_methods:1061: min: 0.908004, mean: 2.536811, max: 3.243007
20:13:20 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:20 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.162249, dN_50: 0.012733
20:13:20 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:20 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.005201601830142763
20:13:20 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:20 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:20 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:20 DEBUG opendrift.models.physics_methods:915: Advecting 490 of 5939 elements above 0.100m with wind-sheared ocean current (0.009620 m/s - 0.097865 m/s)
20:13:20 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:20 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002685809813912314 and 0.42989119956466654 m/s
20:13:20 DEBUG opendrift.models.basemodel:2123: 5939 active elements (61 deactivated)
20:13:20 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:20 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:20 INFO opendrift.models.basemodel:2035: 2024-12-10 12:11:28.612916 - step 65 of 120 - 5939 active elements (61 deactivated)
20:13:20 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:20 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:20 DEBUG opendrift.models.basemodel:2054: 34.583137996015374 <- latitude -> 35.18474915549504
20:13:20 DEBUG opendrift.models.basemodel:2059: 23.535495637269825 <- longitude -> 24.490468905045464
20:13:20 DEBUG opendrift.models.basemodel:2064: -95.36770375222403 <- z -> 0.0
20:13:20 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5939 elements
20:13:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5939 elements
20:13:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5939 elements
20:13:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5939 elements
20:13:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:20 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:20 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:20 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:20 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:20 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:20 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:20 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5939 elements
20:13:20 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5939 elements
20:13:20 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:20 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 12:00:00 (before)
2024-12-10 15:00:00 (after)
20:13:20 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:21 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x23x21) for time after (2024-12-10 15:00:00)
20:13:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 12:00:00) in space (linearNDFast)
20:13:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 15:00:00) in space (linearNDFast)
20:13:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 1
20:13:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 12:00:00, weight 0.94) and
after (2024-12-10 15:00:00, weight 0.06) in time
20:13:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5939 elements
20:13:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5939 elements
20:13:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:21 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 12:00:00 (before)
2024-12-10 15:00:00 (after)
20:13:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:21 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 7x7x1) for time after (2024-12-10 15:00:00)
20:13:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 12:00:00) in space (linearNDFast)
20:13:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 15:00:00) in space (linearNDFast)
20:13:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 12:00:00, weight 0.94) and
after (2024-12-10 15:00:00, weight 0.06) in time
20:13:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:21 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:21 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:21 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:21 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.176701 (min) 0.480097 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.188314 (min) 0.0566191 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.74654 (min) 2.49988 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.556439 (min) 2.86789 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:21 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.022482, mean: 0.195390, max: 0.318952
20:13:21 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:21 DEBUG opendrift.models.physics_methods:1061: min: 0.816855, mean: 2.381646, max: 3.076750
20:13:21 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.816855, mean: 2.381646, max: 3.076750
20:13:21 DEBUG opendrift.models.basemodel:662: 4 elements hit land, moving them to the coastline.
20:13:21 DEBUG opendrift.models.basemodel:1693: 4 elements scheduled for deactivation (stranded)
20:13:21 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:21 DEBUG opendrift.models.basemodel:1713: Removed 4 elements.
20:13:21 DEBUG opendrift.models.basemodel:1716: Removed 4 values from environment.
20:13:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:21 DEBUG opendrift.models.basemodel:1725: Removed 4 values from environment_profiles.
20:13:21 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:21 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:21 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:21 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:21 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:21 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:21 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:21 DEBUG opendrift.models.physics_methods:1061: min: 0.816855, mean: 2.382162, max: 3.076750
20:13:21 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:21 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.175370, dN_50: 0.013763
20:13:21 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:21 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004682356775655698
20:13:21 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:21 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:21 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:21 DEBUG opendrift.models.physics_methods:915: Advecting 483 of 5935 elements above 0.100m with wind-sheared ocean current (0.028679 m/s - 0.092936 m/s)
20:13:21 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:21 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002073348771602314 and 0.41834439211826885 m/s
20:13:21 DEBUG opendrift.models.basemodel:2123: 5935 active elements (65 deactivated)
20:13:21 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:21 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:21 INFO opendrift.models.basemodel:2035: 2024-12-10 13:11:28.612916 - step 66 of 120 - 5935 active elements (65 deactivated)
20:13:21 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:21 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:21 DEBUG opendrift.models.basemodel:2054: 34.576685206407 <- latitude -> 35.18370315307726
20:13:21 DEBUG opendrift.models.basemodel:2059: 23.536995480188963 <- longitude -> 24.499194373623364
20:13:21 DEBUG opendrift.models.basemodel:2064: -94.23210192323575 <- z -> 0.0
20:13:21 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5935 elements
20:13:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5935 elements
20:13:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5935 elements
20:13:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5935 elements
20:13:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:21 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5935 elements
20:13:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5935 elements
20:13:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:21 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 12:00:00 (before)
2024-12-10 15:00:00 (after)
20:13:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 12:00:00) in space (linearNDFast)
20:13:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 15:00:00) in space (linearNDFast)
20:13:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 12:00:00, weight 0.60) and
after (2024-12-10 15:00:00, weight 0.40) in time
20:13:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5935 elements
20:13:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5935 elements
20:13:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:21 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 12:00:00 (before)
2024-12-10 15:00:00 (after)
20:13:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 12:00:00) in space (linearNDFast)
20:13:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 15:00:00) in space (linearNDFast)
20:13:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 12:00:00, weight 0.60) and
after (2024-12-10 15:00:00, weight 0.40) in time
20:13:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:21 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:21 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:21 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:21 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:21 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.173424 (min) 0.470117 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.177306 (min) 0.0961298 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.645336 (min) 2.63498 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.395893 (min) 2.67517 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:21 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:21 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.015909, mean: 0.192415, max: 0.306636
20:13:21 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:21 DEBUG opendrift.models.physics_methods:1061: min: 0.687156, mean: 2.364002, max: 3.016763
20:13:21 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.687156, mean: 2.364002, max: 3.016763
20:13:21 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:13:21 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:13:21 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:21 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:13:21 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:13:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:21 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:13:21 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:21 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:21 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:21 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:21 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:21 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:21 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:21 DEBUG opendrift.models.physics_methods:1061: min: 0.687156, mean: 2.364324, max: 3.016763
20:13:21 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:21 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.183509, dN_50: 0.014402
20:13:22 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:22 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004501716613416621
20:13:22 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:22 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:22 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:22 DEBUG opendrift.models.physics_methods:915: Advecting 480 of 5932 elements above 0.100m with wind-sheared ocean current (0.009595 m/s - 0.090977 m/s)
20:13:22 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:22 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003154496261821353 and 0.45638624704173153 m/s
20:13:22 DEBUG opendrift.models.basemodel:2123: 5932 active elements (68 deactivated)
20:13:22 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:22 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:22 INFO opendrift.models.basemodel:2035: 2024-12-10 14:11:28.612916 - step 67 of 120 - 5932 active elements (68 deactivated)
20:13:22 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:22 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:22 DEBUG opendrift.models.basemodel:2054: 34.57318179042913 <- latitude -> 35.17966126827867
20:13:22 DEBUG opendrift.models.basemodel:2059: 23.539469720270798 <- longitude -> 24.51263192689595
20:13:22 DEBUG opendrift.models.basemodel:2064: -93.5145603363379 <- z -> 0.0
20:13:22 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5932 elements
20:13:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5932 elements
20:13:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5932 elements
20:13:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5932 elements
20:13:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5932 elements
20:13:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5932 elements
20:13:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 12:00:00 (before)
2024-12-10 15:00:00 (after)
20:13:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 12:00:00) in space (linearNDFast)
20:13:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 15:00:00) in space (linearNDFast)
20:13:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 12:00:00, weight 0.27) and
after (2024-12-10 15:00:00, weight 0.73) in time
20:13:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5932 elements
20:13:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5932 elements
20:13:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 12:00:00 (before)
2024-12-10 15:00:00 (after)
20:13:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 12:00:00) in space (linearNDFast)
20:13:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 15:00:00) in space (linearNDFast)
20:13:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 12:00:00, weight 0.27) and
after (2024-12-10 15:00:00, weight 0.73) in time
20:13:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:22 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:22 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:22 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:22 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.156837 (min) 0.443728 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.167625 (min) 0.138896 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.479168 (min) 2.76851 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.234543 (min) 2.47444 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:22 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:22 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.010910, mean: 0.192389, max: 0.296387
20:13:22 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:22 DEBUG opendrift.models.physics_methods:1061: min: 0.569040, mean: 2.363621, max: 2.965916
20:13:22 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.569040, mean: 2.363621, max: 2.965916
20:13:22 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:13:22 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:13:22 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:22 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:13:22 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:13:22 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:22 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:22 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:22 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:22 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:13:22 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:22 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:22 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:22 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:22 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:22 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:22 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:22 DEBUG opendrift.models.physics_methods:1061: min: 0.569040, mean: 2.363897, max: 2.965916
20:13:22 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:22 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.191048, dN_50: 0.014993
20:13:22 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:22 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004351385280132074
20:13:22 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:22 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:22 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:22 DEBUG opendrift.models.physics_methods:915: Advecting 480 of 5929 elements above 0.100m with wind-sheared ocean current (0.004692 m/s - 0.089591 m/s)
20:13:22 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:22 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0005732797673447031 and 0.4540687030059768 m/s
20:13:22 DEBUG opendrift.models.basemodel:2123: 5929 active elements (71 deactivated)
20:13:22 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:22 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:22 INFO opendrift.models.basemodel:2035: 2024-12-10 15:11:28.612916 - step 68 of 120 - 5929 active elements (71 deactivated)
20:13:22 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:22 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:22 DEBUG opendrift.models.basemodel:2054: 34.56660703973671 <- latitude -> 35.18251692088279
20:13:22 DEBUG opendrift.models.basemodel:2059: 23.551078466800522 <- longitude -> 24.518143496028063
20:13:22 DEBUG opendrift.models.basemodel:2064: -92.47064689585808 <- z -> 0.0
20:13:22 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5929 elements
20:13:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5929 elements
20:13:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5929 elements
20:13:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5929 elements
20:13:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5929 elements
20:13:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5929 elements
20:13:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 15:00:00 (before)
2024-12-10 18:00:00 (after)
20:13:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:23 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:23 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x23x21) for time after (2024-12-10 18:00:00)
20:13:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 15:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 18:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
20:13:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 15:00:00, weight 0.94) and
after (2024-12-10 18:00:00, weight 0.06) in time
20:13:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5929 elements
20:13:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5929 elements
20:13:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 15:00:00 (before)
2024-12-10 18:00:00 (after)
20:13:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:23 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:23 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:23 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:23 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-12-10 18:00:00)
20:13:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 15:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 18:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 15:00:00, weight 0.94) and
after (2024-12-10 18:00:00, weight 0.06) in time
20:13:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:23 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:23 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.141493 (min) 0.40909 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.16383 (min) 0.156542 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.318568 (min) 2.84602 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.100136 (min) 2.29767 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:23 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.004387, mean: 0.191229, max: 0.284716
20:13:23 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:23 DEBUG opendrift.models.physics_methods:1061: min: 0.360858, mean: 2.354886, max: 2.906935
20:13:23 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.360858, mean: 2.354886, max: 2.906935
20:13:23 DEBUG opendrift.models.basemodel:662: 5 elements hit land, moving them to the coastline.
20:13:23 DEBUG opendrift.models.basemodel:1693: 5 elements scheduled for deactivation (stranded)
20:13:23 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:23 DEBUG opendrift.models.basemodel:1713: Removed 5 elements.
20:13:23 DEBUG opendrift.models.basemodel:1716: Removed 5 values from environment.
20:13:23 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:23 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:23 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:23 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:23 DEBUG opendrift.models.basemodel:1725: Removed 5 values from environment_profiles.
20:13:23 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:23 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:23 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:23 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:23 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:23 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:23 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:23 DEBUG opendrift.models.physics_methods:1061: min: 0.360858, mean: 2.355326, max: 2.906935
20:13:23 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:23 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.199785, dN_50: 0.015679
20:13:23 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:23 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004180205664482796
20:13:23 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:23 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:23 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:23 DEBUG opendrift.models.physics_methods:915: Advecting 470 of 5924 elements above 0.100m with wind-sheared ocean current (0.012670 m/s - 0.087834 m/s)
20:13:23 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:23 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0011928761822784806 and 0.4370508419366624 m/s
20:13:23 DEBUG opendrift.models.basemodel:2123: 5924 active elements (76 deactivated)
20:13:23 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:23 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:23 INFO opendrift.models.basemodel:2035: 2024-12-10 16:11:28.612916 - step 69 of 120 - 5924 active elements (76 deactivated)
20:13:23 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:23 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:23 DEBUG opendrift.models.basemodel:2054: 34.56635508915975 <- latitude -> 35.18793852522859
20:13:23 DEBUG opendrift.models.basemodel:2059: 23.553026514742744 <- longitude -> 24.519334651041294
20:13:23 DEBUG opendrift.models.basemodel:2064: -91.74554076449067 <- z -> 0.0
20:13:23 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5924 elements
20:13:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5924 elements
20:13:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5924 elements
20:13:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5924 elements
20:13:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5924 elements
20:13:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5924 elements
20:13:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 15:00:00 (before)
2024-12-10 18:00:00 (after)
20:13:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 15:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 18:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 15:00:00, weight 0.60) and
after (2024-12-10 18:00:00, weight 0.40) in time
20:13:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5924 elements
20:13:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5924 elements
20:13:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 15:00:00 (before)
2024-12-10 18:00:00 (after)
20:13:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 15:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 18:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 15:00:00, weight 0.60) and
after (2024-12-10 18:00:00, weight 0.40) in time
20:13:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:23 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:23 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:23 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:23 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:23 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.118438 (min) 0.380004 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.15742 (min) 0.153056 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.132943 (min) 2.66148 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.063754 (min) 2.34845 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:23 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:23 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.001567, mean: 0.174101, max: 0.281995
20:13:23 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:23 DEBUG opendrift.models.physics_methods:1061: min: 0.215653, mean: 2.240596, max: 2.893014
20:13:23 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.215653, mean: 2.240596, max: 2.893014
20:13:23 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:23 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:23 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:23 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:23 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:23 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:23 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:23 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:23 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:23 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:23 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:23 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:23 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:23 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:23 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:23 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:23 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:23 DEBUG opendrift.models.physics_methods:1061: min: 0.215653, mean: 2.240692, max: 2.893014
20:13:23 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:23 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.217987, dN_50: 0.017108
20:13:23 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:23 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004140302756278257
20:13:23 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:23 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:23 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:23 DEBUG opendrift.models.physics_methods:915: Advecting 471 of 5923 elements above 0.100m with wind-sheared ocean current (0.007571 m/s - 0.082103 m/s)
20:13:23 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:23 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007653637274901874 and 0.4874666694384423 m/s
20:13:23 DEBUG opendrift.models.basemodel:2123: 5923 active elements (77 deactivated)
20:13:23 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:23 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:23 INFO opendrift.models.basemodel:2035: 2024-12-10 17:11:28.612916 - step 70 of 120 - 5923 active elements (77 deactivated)
20:13:23 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:23 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:23 DEBUG opendrift.models.basemodel:2054: 34.55733910572077 <- latitude -> 35.18331662203807
20:13:23 DEBUG opendrift.models.basemodel:2059: 23.556105533483965 <- longitude -> 24.519842360083597
20:13:23 DEBUG opendrift.models.basemodel:2064: -90.86262815428103 <- z -> 0.0
20:13:23 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5923 elements
20:13:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5923 elements
20:13:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5923 elements
20:13:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5923 elements
20:13:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:23 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:23 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:23 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:23 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:23 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:23 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:23 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5923 elements
20:13:23 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5923 elements
20:13:23 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:23 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 15:00:00 (before)
2024-12-10 18:00:00 (after)
20:13:23 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 15:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:23 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 18:00:00) in space (linearNDFast)
20:13:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 15:00:00, weight 0.27) and
after (2024-12-10 18:00:00, weight 0.73) in time
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5923 elements
20:13:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5923 elements
20:13:24 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:24 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 15:00:00 (before)
2024-12-10 18:00:00 (after)
20:13:24 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 15:00:00) in space (linearNDFast)
20:13:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 18:00:00) in space (linearNDFast)
20:13:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 15:00:00, weight 0.27) and
after (2024-12-10 18:00:00, weight 0.73) in time
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:24 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:24 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:24 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:24 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.143338 (min) 0.344781 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.140884 (min) 0.14364 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.00798111 (min) 2.4721 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: y_wind: 0.0184751 (min) 2.40254 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:24 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000356, mean: 0.158636, max: 0.278865
20:13:24 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:24 DEBUG opendrift.models.physics_methods:1061: min: 0.102844, mean: 2.130235, max: 2.876911
20:13:24 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.102844, mean: 2.130235, max: 2.876911
20:13:24 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:24 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:24 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:24 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:24 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:24 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:24 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:24 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:24 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:24 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:24 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:24 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:24 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:24 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:24 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:24 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:24 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:24 DEBUG opendrift.models.physics_methods:1061: min: 0.102844, mean: 2.130452, max: 2.876911
20:13:24 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:24 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.238689, dN_50: 0.018732
20:13:24 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:24 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004094386912047668
20:13:24 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:24 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:24 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:24 DEBUG opendrift.models.physics_methods:915: Advecting 468 of 5921 elements above 0.100m with wind-sheared ocean current (0.003611 m/s - 0.076412 m/s)
20:13:24 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:24 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016693815436272014 and 0.4349348919345756 m/s
20:13:24 DEBUG opendrift.models.basemodel:2123: 5921 active elements (79 deactivated)
20:13:24 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:24 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:24 INFO opendrift.models.basemodel:2035: 2024-12-10 18:11:28.612916 - step 71 of 120 - 5921 active elements (79 deactivated)
20:13:24 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:24 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:24 DEBUG opendrift.models.basemodel:2054: 34.552233774287046 <- latitude -> 35.191733345474205
20:13:24 DEBUG opendrift.models.basemodel:2059: 23.567666236025936 <- longitude -> 24.52451899577313
20:13:24 DEBUG opendrift.models.basemodel:2064: -89.91882800386907 <- z -> 0.0
20:13:24 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5921 elements
20:13:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5921 elements
20:13:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5921 elements
20:13:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5921 elements
20:13:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:24 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5921 elements
20:13:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5921 elements
20:13:24 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:24 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 18:00:00 (before)
2024-12-10 21:00:00 (after)
20:13:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:24 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:24 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:24 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x24x20) for time after (2024-12-10 21:00:00)
20:13:24 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 18:00:00) in space (linearNDFast)
20:13:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 21:00:00) in space (linearNDFast)
20:13:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
20:13:24 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 18:00:00, weight 0.94) and
after (2024-12-10 21:00:00, weight 0.06) in time
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5921 elements
20:13:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5921 elements
20:13:24 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:24 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 18:00:00 (before)
2024-12-10 21:00:00 (after)
20:13:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:24 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:24 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:24 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-12-10 21:00:00)
20:13:24 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 18:00:00) in space (linearNDFast)
20:13:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 21:00:00) in space (linearNDFast)
20:13:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 18:00:00, weight 0.94) and
after (2024-12-10 21:00:00, weight 0.06) in time
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:24 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:24 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:24 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:24 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:24 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.193395 (min) 0.317782 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.14406 (min) 0.132853 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.0278243 (min) 2.39035 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.0372343 (min) 2.39089 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:24 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:24 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000095, mean: 0.151320, max: 0.273970
20:13:24 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:24 DEBUG opendrift.models.physics_methods:1061: min: 0.052965, mean: 2.073824, max: 2.851552
20:13:24 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.052965, mean: 2.073824, max: 2.851552
20:13:24 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:24 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:24 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:24 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:24 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:24 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:24 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:24 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:24 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:24 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:24 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:24 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:24 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:24 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:24 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:24 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:24 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:24 DEBUG opendrift.models.physics_methods:1061: min: 0.052965, mean: 2.074034, max: 2.851552
20:13:24 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:24 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.256106, dN_50: 0.020099
20:13:24 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:24 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004022596580865928
20:13:24 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:24 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:24 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:24 DEBUG opendrift.models.physics_methods:915: Advecting 465 of 5919 elements above 0.100m with wind-sheared ocean current (0.001860 m/s - 0.072805 m/s)
20:13:24 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:24 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002711512527657671 and 0.4676392099634298 m/s
20:13:24 DEBUG opendrift.models.basemodel:2123: 5919 active elements (81 deactivated)
20:13:24 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:24 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:24 INFO opendrift.models.basemodel:2035: 2024-12-10 19:11:28.612916 - step 72 of 120 - 5919 active elements (81 deactivated)
20:13:24 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:24 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:24 DEBUG opendrift.models.basemodel:2054: 34.54963480133898 <- latitude -> 35.19453135916812
20:13:24 DEBUG opendrift.models.basemodel:2059: 23.562932736372872 <- longitude -> 24.52146651001511
20:13:24 DEBUG opendrift.models.basemodel:2064: -89.35227640843505 <- z -> 0.0
20:13:24 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5919 elements
20:13:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5919 elements
20:13:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5919 elements
20:13:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5919 elements
20:13:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:24 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:24 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:24 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:24 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:24 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:24 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5919 elements
20:13:24 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5919 elements
20:13:24 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:24 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 18:00:00 (before)
2024-12-10 21:00:00 (after)
20:13:24 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 18:00:00) in space (linearNDFast)
20:13:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 21:00:00) in space (linearNDFast)
20:13:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:24 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 18:00:00, weight 0.60) and
after (2024-12-10 21:00:00, weight 0.40) in time
20:13:24 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5919 elements
20:13:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5919 elements
20:13:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 18:00:00 (before)
2024-12-10 21:00:00 (after)
20:13:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 18:00:00) in space (linearNDFast)
20:13:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 21:00:00) in space (linearNDFast)
20:13:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 18:00:00, weight 0.60) and
after (2024-12-10 21:00:00, weight 0.40) in time
20:13:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:25 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:25 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:25 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:25 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.219688 (min) 0.294722 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.143002 (min) 0.144811 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.382574 (min) 2.67497 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.16459 (min) 2.22297 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:25 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.003668, mean: 0.174297, max: 0.293105
20:13:25 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:25 DEBUG opendrift.models.physics_methods:1061: min: 0.329963, mean: 2.237231, max: 2.949450
20:13:25 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.329963, mean: 2.237231, max: 2.949450
20:13:25 DEBUG opendrift.models.basemodel:662: 7 elements hit land, moving them to the coastline.
20:13:25 DEBUG opendrift.models.basemodel:1693: 7 elements scheduled for deactivation (stranded)
20:13:25 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:25 DEBUG opendrift.models.basemodel:1713: Removed 7 elements.
20:13:25 DEBUG opendrift.models.basemodel:1716: Removed 7 values from environment.
20:13:25 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:25 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:25 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:25 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:25 DEBUG opendrift.models.basemodel:1725: Removed 7 values from environment_profiles.
20:13:25 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:25 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:25 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:25 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:25 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:25 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:25 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:25 DEBUG opendrift.models.physics_methods:1061: min: 0.329963, mean: 2.237988, max: 2.949450
20:13:25 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:25 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.246965, dN_50: 0.019382
20:13:25 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:25 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004303247857881305
20:13:25 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:25 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:25 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:25 DEBUG opendrift.models.physics_methods:915: Advecting 458 of 5912 elements above 0.100m with wind-sheared ocean current (0.011585 m/s - 0.078973 m/s)
20:13:25 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:25 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013187961459002074 and 0.43721647190292035 m/s
20:13:25 DEBUG opendrift.models.basemodel:2123: 5912 active elements (88 deactivated)
20:13:25 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:25 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:25 INFO opendrift.models.basemodel:2035: 2024-12-10 20:11:28.612916 - step 73 of 120 - 5912 active elements (88 deactivated)
20:13:25 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:25 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:25 DEBUG opendrift.models.basemodel:2054: 34.544435626280126 <- latitude -> 35.18360810069353
20:13:25 DEBUG opendrift.models.basemodel:2059: 23.56521353424585 <- longitude -> 24.51464892657383
20:13:25 DEBUG opendrift.models.basemodel:2064: -88.29123142214246 <- z -> 0.0
20:13:25 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5912 elements
20:13:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5912 elements
20:13:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5912 elements
20:13:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5912 elements
20:13:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:25 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5912 elements
20:13:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5912 elements
20:13:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 18:00:00 (before)
2024-12-10 21:00:00 (after)
20:13:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 18:00:00) in space (linearNDFast)
20:13:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 21:00:00) in space (linearNDFast)
20:13:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 18:00:00, weight 0.27) and
after (2024-12-10 21:00:00, weight 0.73) in time
20:13:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5912 elements
20:13:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5912 elements
20:13:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 18:00:00 (before)
2024-12-10 21:00:00 (after)
20:13:25 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 18:00:00) in space (linearNDFast)
20:13:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:25 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-10 21:00:00) in space (linearNDFast)
20:13:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:25 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 18:00:00, weight 0.27) and
after (2024-12-10 21:00:00, weight 0.73) in time
20:13:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:25 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:25 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:25 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:25 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:25 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.284552 (min) 0.280557 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.151452 (min) 0.16063 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.818608 (min) 2.95634 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.294471 (min) 2.06419 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:25 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:25 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.016721, mean: 0.202082, max: 0.317504
20:13:25 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:25 DEBUG opendrift.models.physics_methods:1061: min: 0.704472, mean: 2.419731, max: 3.069758
20:13:25 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.704472, mean: 2.419731, max: 3.069758
20:13:25 DEBUG opendrift.models.basemodel:662: 4 elements hit land, moving them to the coastline.
20:13:25 DEBUG opendrift.models.basemodel:1693: 4 elements scheduled for deactivation (stranded)
20:13:25 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:25 DEBUG opendrift.models.basemodel:1713: Removed 4 elements.
20:13:25 DEBUG opendrift.models.basemodel:1716: Removed 4 values from environment.
20:13:25 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:25 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:25 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:25 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:25 DEBUG opendrift.models.basemodel:1725: Removed 4 values from environment_profiles.
20:13:25 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:25 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:25 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:25 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:25 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:25 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:25 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:25 DEBUG opendrift.models.physics_methods:1061: min: 0.704472, mean: 2.420219, max: 3.069757
20:13:25 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:25 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.240140, dN_50: 0.018846
20:13:25 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:25 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.004661118031452864
20:13:25 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:25 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:25 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:25 DEBUG opendrift.models.physics_methods:915: Advecting 456 of 5908 elements above 0.100m with wind-sheared ocean current (0.024734 m/s - 0.086760 m/s)
20:13:25 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:25 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0025924404909932765 and 0.5143895190348614 m/s
20:13:25 DEBUG opendrift.models.basemodel:2123: 5908 active elements (92 deactivated)
20:13:25 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:25 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:25 INFO opendrift.models.basemodel:2035: 2024-12-10 21:11:28.612916 - step 74 of 120 - 5908 active elements (92 deactivated)
20:13:25 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:25 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:25 DEBUG opendrift.models.basemodel:2054: 34.542754197580805 <- latitude -> 35.19096722983662
20:13:25 DEBUG opendrift.models.basemodel:2059: 23.567930814457927 <- longitude -> 24.5240573554206
20:13:25 DEBUG opendrift.models.basemodel:2064: -87.06510821225653 <- z -> 0.0
20:13:25 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5908 elements
20:13:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5908 elements
20:13:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5908 elements
20:13:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5908 elements
20:13:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:25 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:25 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:25 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:25 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:25 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:25 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:25 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5908 elements
20:13:25 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5908 elements
20:13:25 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:25 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 21:00:00 (before)
2024-12-11 00:00:00 (after)
20:13:25 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:29 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:29 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:29 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x24x20) for time after (2024-12-11 00:00:00)
20:13:29 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 21:00:00) in space (linearNDFast)
20:13:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:29 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 00:00:00) in space (linearNDFast)
20:13:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
20:13:29 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 21:00:00, weight 0.94) and
after (2024-12-11 00:00:00, weight 0.06) in time
20:13:29 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:29 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:29 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:29 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:29 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:29 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:29 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:29 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5908 elements
20:13:29 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5908 elements
20:13:29 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:29 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 21:00:00 (before)
2024-12-11 00:00:00 (after)
20:13:29 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:30 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:30 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:30 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-12-11 00:00:00)
20:13:30 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 21:00:00) in space (linearNDFast)
20:13:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:30 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 00:00:00) in space (linearNDFast)
20:13:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:30 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 21:00:00, weight 0.94) and
after (2024-12-11 00:00:00, weight 0.06) in time
20:13:30 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:30 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:30 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:30 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:30 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.369299 (min) 0.263551 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.166465 (min) 0.177304 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.24721 (min) 3.24335 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.418642 (min) 1.87042 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:30 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.039357, mean: 0.234688, max: 0.344838
20:13:30 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:30 DEBUG opendrift.models.physics_methods:1061: min: 1.080789, mean: 2.616520, max: 3.199166
20:13:30 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.080789, mean: 2.616520, max: 3.199166
20:13:30 DEBUG opendrift.models.basemodel:662: 5 elements hit land, moving them to the coastline.
20:13:30 DEBUG opendrift.models.basemodel:1693: 5 elements scheduled for deactivation (stranded)
20:13:30 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:30 DEBUG opendrift.models.basemodel:1713: Removed 5 elements.
20:13:30 DEBUG opendrift.models.basemodel:1716: Removed 5 values from environment.
20:13:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:30 DEBUG opendrift.models.basemodel:1725: Removed 5 values from environment_profiles.
20:13:30 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:30 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:30 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:30 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:30 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:30 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:30 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:30 DEBUG opendrift.models.physics_methods:1061: min: 1.080789, mean: 2.617213, max: 3.199167
20:13:30 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:30 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.234367, dN_50: 0.018393
20:13:30 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:30 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.005062027588287406
20:13:30 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:30 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:30 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:30 DEBUG opendrift.models.physics_methods:915: Advecting 454 of 5903 elements above 0.100m with wind-sheared ocean current (0.037946 m/s - 0.093998 m/s)
20:13:30 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:30 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001601540592560788 and 0.5394467770615462 m/s
20:13:30 DEBUG opendrift.models.basemodel:2123: 5903 active elements (97 deactivated)
20:13:30 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:30 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:30 INFO opendrift.models.basemodel:2035: 2024-12-10 22:11:28.612916 - step 75 of 120 - 5903 active elements (97 deactivated)
20:13:30 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:30 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:30 DEBUG opendrift.models.basemodel:2054: 34.539186407644635 <- latitude -> 35.18928629539546
20:13:30 DEBUG opendrift.models.basemodel:2059: 23.56582333303795 <- longitude -> 24.528544310709844
20:13:30 DEBUG opendrift.models.basemodel:2064: -86.31744943902247 <- z -> 0.0
20:13:30 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:30 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:30 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5903 elements
20:13:30 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5903 elements
20:13:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:30 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:30 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:30 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:30 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5903 elements
20:13:30 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5903 elements
20:13:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:30 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:30 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:30 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:30 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:30 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5903 elements
20:13:30 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5903 elements
20:13:30 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:30 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 21:00:00 (before)
2024-12-11 00:00:00 (after)
20:13:30 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 21:00:00) in space (linearNDFast)
20:13:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:30 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 00:00:00) in space (linearNDFast)
20:13:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:30 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 21:00:00, weight 0.60) and
after (2024-12-11 00:00:00, weight 0.40) in time
20:13:30 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:30 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:30 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:30 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5903 elements
20:13:30 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5903 elements
20:13:30 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:30 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 21:00:00 (before)
2024-12-11 00:00:00 (after)
20:13:30 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 21:00:00) in space (linearNDFast)
20:13:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:30 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 00:00:00) in space (linearNDFast)
20:13:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:30 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 21:00:00, weight 0.60) and
after (2024-12-11 00:00:00, weight 0.40) in time
20:13:30 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:30 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:30 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:30 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:30 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:30 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.370822 (min) 0.219535 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.189444 (min) 0.178813 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.63047 (min) 3.58265 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.54561 (min) 1.58539 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:30 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:30 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.068759, mean: 0.274688, max: 0.377375
20:13:30 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:30 DEBUG opendrift.models.physics_methods:1061: min: 1.428541, mean: 2.837501, max: 3.346696
20:13:30 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.428541, mean: 2.837501, max: 3.346696
20:13:30 DEBUG opendrift.models.basemodel:662: 5 elements hit land, moving them to the coastline.
20:13:30 DEBUG opendrift.models.basemodel:1693: 5 elements scheduled for deactivation (stranded)
20:13:30 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:30 DEBUG opendrift.models.basemodel:1713: Removed 5 elements.
20:13:30 DEBUG opendrift.models.basemodel:1716: Removed 5 values from environment.
20:13:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:30 DEBUG opendrift.models.basemodel:1725: Removed 5 values from environment_profiles.
20:13:30 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:30 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:30 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:30 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:30 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:30 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:30 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:30 DEBUG opendrift.models.physics_methods:1061: min: 1.428541, mean: 2.838063, max: 3.346696
20:13:30 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:30 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.227956, dN_50: 0.017890
20:13:30 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:30 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.005539268027452648
20:13:30 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:30 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:30 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:30 DEBUG opendrift.models.physics_methods:915: Advecting 456 of 5898 elements above 0.100m with wind-sheared ocean current (0.011337 m/s - 0.102251 m/s)
20:13:30 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:30 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001591947283381226 and 0.4626516141788322 m/s
20:13:31 DEBUG opendrift.models.basemodel:2123: 5898 active elements (102 deactivated)
20:13:31 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:31 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:31 INFO opendrift.models.basemodel:2035: 2024-12-10 23:11:28.612916 - step 76 of 120 - 5898 active elements (102 deactivated)
20:13:31 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:31 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:31 DEBUG opendrift.models.basemodel:2054: 34.53352213240956 <- latitude -> 35.1822409946665
20:13:31 DEBUG opendrift.models.basemodel:2059: 23.564761695885654 <- longitude -> 24.526198319772256
20:13:31 DEBUG opendrift.models.basemodel:2064: -85.18444427248512 <- z -> 0.0
20:13:31 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5898 elements
20:13:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5898 elements
20:13:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5898 elements
20:13:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5898 elements
20:13:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:31 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5898 elements
20:13:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5898 elements
20:13:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 21:00:00 (before)
2024-12-11 00:00:00 (after)
20:13:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 21:00:00) in space (linearNDFast)
20:13:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 00:00:00) in space (linearNDFast)
20:13:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 21:00:00, weight 0.27) and
after (2024-12-11 00:00:00, weight 0.73) in time
20:13:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5898 elements
20:13:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5898 elements
20:13:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-10 21:00:00 (before)
2024-12-11 00:00:00 (after)
20:13:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-10 21:00:00) in space (linearNDFast)
20:13:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 00:00:00) in space (linearNDFast)
20:13:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-10 21:00:00, weight 0.27) and
after (2024-12-11 00:00:00, weight 0.73) in time
20:13:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:31 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:31 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:31 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:31 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.395792 (min) 0.193265 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.225806 (min) 0.179643 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.96563 (min) 3.91924 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.686033 (min) 1.3095 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:31 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:31 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.098823, mean: 0.322174, max: 0.419409
20:13:31 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:31 DEBUG opendrift.models.physics_methods:1061: min: 1.712613, mean: 3.077820, max: 3.528162
20:13:31 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.712613, mean: 3.077820, max: 3.528162
20:13:31 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:31 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:31 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:31 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:31 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:31 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:31 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:31 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:31 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:31 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:31 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:31 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:31 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:31 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:31 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:31 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:31 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:31 DEBUG opendrift.models.physics_methods:1061: min: 1.712613, mean: 3.078001, max: 3.528162
20:13:31 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:31 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.222042, dN_50: 0.017426
20:13:31 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:31 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.006155789201041894
20:13:31 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:31 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:31 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:31 DEBUG opendrift.models.physics_methods:915: Advecting 453 of 5897 elements above 0.100m with wind-sheared ocean current (0.015368 m/s - 0.111184 m/s)
20:13:31 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:31 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0016613331435282887 and 0.45775646418835625 m/s
20:13:31 DEBUG opendrift.models.basemodel:2123: 5897 active elements (103 deactivated)
20:13:31 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:31 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:31 INFO opendrift.models.basemodel:2035: 2024-12-11 00:11:28.612916 - step 77 of 120 - 5897 active elements (103 deactivated)
20:13:31 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:31 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:31 DEBUG opendrift.models.basemodel:2054: 34.524529702148136 <- latitude -> 35.173999131291204
20:13:31 DEBUG opendrift.models.basemodel:2059: 23.56832448367975 <- longitude -> 24.522727636526295
20:13:31 DEBUG opendrift.models.basemodel:2064: -84.15214349184848 <- z -> 0.0
20:13:31 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5897 elements
20:13:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5897 elements
20:13:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5897 elements
20:13:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5897 elements
20:13:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:31 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5897 elements
20:13:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5897 elements
20:13:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 00:00:00 (before)
2024-12-11 03:00:00 (after)
20:13:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:33 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x24x20) for time after (2024-12-11 03:00:00)
20:13:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 00:00:00) in space (linearNDFast)
20:13:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 03:00:00) in space (linearNDFast)
20:13:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
20:13:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 00:00:00, weight 0.94) and
after (2024-12-11 03:00:00, weight 0.06) in time
20:13:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:33 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:33 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:33 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:33 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:33 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:33 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5897 elements
20:13:33 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5897 elements
20:13:33 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:33 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 00:00:00 (before)
2024-12-11 03:00:00 (after)
20:13:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:33 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:33 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:33 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:33 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x7x1) for time after (2024-12-11 03:00:00)
20:13:33 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 00:00:00) in space (linearNDFast)
20:13:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:33 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 03:00:00) in space (linearNDFast)
20:13:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:33 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 00:00:00, weight 0.94) and
after (2024-12-11 03:00:00, weight 0.06) in time
20:13:33 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:33 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:33 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:33 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:33 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:33 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:33 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:33 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.446432 (min) 0.1748 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.25539 (min) 0.182656 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.23075 (min) 4.18207 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.805758 (min) 0.975907 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:33 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:33 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.126676, mean: 0.365025, max: 0.453251
20:13:33 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:33 DEBUG opendrift.models.physics_methods:1061: min: 1.938993, mean: 3.279443, max: 3.667743
20:13:33 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.938993, mean: 3.279443, max: 3.667743
20:13:33 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:33 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:33 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:33 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:33 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:33 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:33 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:33 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:33 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:33 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:33 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:33 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:33 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:33 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:33 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:33 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:33 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:33 DEBUG opendrift.models.physics_methods:1061: min: 1.938993, mean: 3.279508, max: 3.667743
20:13:33 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:33 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.219000, dN_50: 0.017187
20:13:34 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:34 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.006652156981852009
20:13:34 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:34 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:34 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:34 DEBUG opendrift.models.physics_methods:915: Advecting 456 of 5896 elements above 0.100m with wind-sheared ocean current (0.037362 m/s - 0.119524 m/s)
20:13:34 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:34 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017997733399626866 and 0.4242915949904783 m/s
20:13:34 DEBUG opendrift.models.basemodel:2123: 5896 active elements (104 deactivated)
20:13:34 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:34 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:34 INFO opendrift.models.basemodel:2035: 2024-12-11 01:11:28.612916 - step 78 of 120 - 5896 active elements (104 deactivated)
20:13:34 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:34 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:34 DEBUG opendrift.models.basemodel:2054: 34.514715263753914 <- latitude -> 35.17689165260783
20:13:34 DEBUG opendrift.models.basemodel:2059: 23.566132553177997 <- longitude -> 24.521738433538182
20:13:34 DEBUG opendrift.models.basemodel:2064: -83.33926466304874 <- z -> 0.0
20:13:34 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5896 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5896 elements
20:13:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5896 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5896 elements
20:13:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:34 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5896 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5896 elements
20:13:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 00:00:00 (before)
2024-12-11 03:00:00 (after)
20:13:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 00:00:00) in space (linearNDFast)
20:13:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 03:00:00) in space (linearNDFast)
20:13:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 00:00:00, weight 0.60) and
after (2024-12-11 03:00:00, weight 0.40) in time
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5896 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5896 elements
20:13:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 00:00:00 (before)
2024-12-11 03:00:00 (after)
20:13:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 00:00:00) in space (linearNDFast)
20:13:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 03:00:00) in space (linearNDFast)
20:13:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 00:00:00, weight 0.60) and
after (2024-12-11 03:00:00, weight 0.40) in time
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:34 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:34 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:34 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.415114 (min) 0.175975 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.265813 (min) 0.187157 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.23264 (min) 4.17692 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.846628 (min) 0.677309 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:34 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.126293, mean: 0.363940, max: 0.434275
20:13:34 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:34 DEBUG opendrift.models.physics_methods:1061: min: 1.936062, mean: 3.276662, max: 3.590144
20:13:34 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.936062, mean: 3.276662, max: 3.590144
20:13:34 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:34 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:34 DEBUG opendrift.models.basemodel:1695: (z: -2.448882 to 0.000000)
20:13:34 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:34 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:34 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:34 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:34 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:34 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:34 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:34 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:34 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:34 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:34 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:34 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:34 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:34 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:34 DEBUG opendrift.models.physics_methods:1061: min: 1.936062, mean: 3.276758, max: 3.590144
20:13:34 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:34 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.225361, dN_50: 0.017686
20:13:34 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:34 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.006373828644282052
20:13:34 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:34 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:34 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:34 DEBUG opendrift.models.physics_methods:915: Advecting 462 of 5894 elements above 0.100m with wind-sheared ocean current (0.001855 m/s - 0.117997 m/s)
20:13:34 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:34 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001159030161041198 and 0.48175814354099045 m/s
20:13:34 DEBUG opendrift.models.basemodel:2123: 5894 active elements (106 deactivated)
20:13:34 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:34 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:34 INFO opendrift.models.basemodel:2035: 2024-12-11 02:11:28.612916 - step 79 of 120 - 5894 active elements (106 deactivated)
20:13:34 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:34 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:34 DEBUG opendrift.models.basemodel:2054: 34.506008953734444 <- latitude -> 35.18200331926794
20:13:34 DEBUG opendrift.models.basemodel:2059: 23.575751510990877 <- longitude -> 24.520594359803777
20:13:34 DEBUG opendrift.models.basemodel:2064: -82.56420936180322 <- z -> 0.0
20:13:34 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5894 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5894 elements
20:13:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5894 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5894 elements
20:13:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:34 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5894 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5894 elements
20:13:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 00:00:00 (before)
2024-12-11 03:00:00 (after)
20:13:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 00:00:00) in space (linearNDFast)
20:13:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 03:00:00) in space (linearNDFast)
20:13:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 00:00:00, weight 0.27) and
after (2024-12-11 03:00:00, weight 0.73) in time
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5894 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5894 elements
20:13:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 00:00:00 (before)
2024-12-11 03:00:00 (after)
20:13:34 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 00:00:00) in space (linearNDFast)
20:13:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:34 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 03:00:00) in space (linearNDFast)
20:13:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:34 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 00:00:00, weight 0.27) and
after (2024-12-11 03:00:00, weight 0.73) in time
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:34 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:34 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:34 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:34 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.438867 (min) 0.18952 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.282123 (min) 0.216079 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.23684 (min) 4.16227 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.880637 (min) 0.546484 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:34 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:34 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.124676, mean: 0.369795, max: 0.426377
20:13:34 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:34 DEBUG opendrift.models.physics_methods:1061: min: 1.923631, mean: 3.304220, max: 3.557349
20:13:34 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.923631, mean: 3.304220, max: 3.557349
20:13:34 DEBUG opendrift.models.basemodel:662: 7 elements hit land, moving them to the coastline.
20:13:34 DEBUG opendrift.models.basemodel:1693: 7 elements scheduled for deactivation (stranded)
20:13:34 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:34 DEBUG opendrift.models.basemodel:1713: Removed 7 elements.
20:13:34 DEBUG opendrift.models.basemodel:1716: Removed 7 values from environment.
20:13:34 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:34 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:34 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:34 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:34 DEBUG opendrift.models.basemodel:1725: Removed 7 values from environment_profiles.
20:13:34 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:34 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:34 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:34 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:34 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:34 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:34 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:34 DEBUG opendrift.models.physics_methods:1061: min: 1.991668, mean: 3.305225, max: 3.557349
20:13:34 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:34 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.230727, dN_50: 0.018107
20:13:34 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:34 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.006257989722603405
20:13:34 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:34 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:34 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:34 DEBUG opendrift.models.physics_methods:915: Advecting 453 of 5887 elements above 0.100m with wind-sheared ocean current (0.019769 m/s - 0.117692 m/s)
20:13:34 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:34 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0010596800002015013 and 0.5452971092969356 m/s
20:13:34 DEBUG opendrift.models.basemodel:2123: 5887 active elements (113 deactivated)
20:13:34 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:34 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:34 INFO opendrift.models.basemodel:2035: 2024-12-11 03:11:28.612916 - step 80 of 120 - 5887 active elements (113 deactivated)
20:13:34 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:34 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:34 DEBUG opendrift.models.basemodel:2054: 34.49672930256261 <- latitude -> 35.18160686046997
20:13:34 DEBUG opendrift.models.basemodel:2059: 23.576231772512987 <- longitude -> 24.51702271167751
20:13:34 DEBUG opendrift.models.basemodel:2064: -81.17708385479345 <- z -> 0.0
20:13:34 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5887 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5887 elements
20:13:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5887 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5887 elements
20:13:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:34 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:34 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:34 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:34 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:34 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:34 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:34 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5887 elements
20:13:34 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5887 elements
20:13:34 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:34 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 03:00:00 (before)
2024-12-11 06:00:00 (after)
20:13:34 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:36 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:36 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:36 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x25x20) for time after (2024-12-11 06:00:00)
20:13:36 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 03:00:00) in space (linearNDFast)
20:13:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:36 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 06:00:00) in space (linearNDFast)
20:13:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
20:13:36 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 03:00:00, weight 0.94) and
after (2024-12-11 06:00:00, weight 0.06) in time
20:13:36 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:36 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:36 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:36 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:36 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:36 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:36 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:36 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5887 elements
20:13:36 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5887 elements
20:13:36 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:36 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 03:00:00 (before)
2024-12-11 06:00:00 (after)
20:13:36 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:37 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:37 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:37 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:37 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-11 06:00:00)
20:13:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 03:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 06:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 03:00:00, weight 0.94) and
after (2024-12-11 06:00:00, weight 0.06) in time
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:37 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.437213 (min) 0.170022 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.285378 (min) 0.233373 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.3463 (min) 4.1411 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.90813 (min) 0.389777 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:37 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.135965, mean: 0.380178, max: 0.429794
20:13:37 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:37 DEBUG opendrift.models.physics_methods:1061: min: 2.008831, mean: 3.351258, max: 3.571573
20:13:37 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.008831, mean: 3.351258, max: 3.571573
20:13:37 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:13:37 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:13:37 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:37 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:37 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:37 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:37 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:37 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:37 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:37 DEBUG opendrift.models.physics_methods:1061: min: 2.008831, mean: 3.351258, max: 3.571573
20:13:37 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:37 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.235366, dN_50: 0.018471
20:13:37 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:37 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.006308101048435285
20:13:37 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:37 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:37 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:37 DEBUG opendrift.models.physics_methods:915: Advecting 458 of 5887 elements above 0.100m with wind-sheared ocean current (0.038300 m/s - 0.117846 m/s)
20:13:37 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:37 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003321290096548019 and 0.4133006022103829 m/s
20:13:37 DEBUG opendrift.models.basemodel:2123: 5887 active elements (113 deactivated)
20:13:37 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:37 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:37 INFO opendrift.models.basemodel:2035: 2024-12-11 04:11:28.612916 - step 81 of 120 - 5887 active elements (113 deactivated)
20:13:37 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:37 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:37 DEBUG opendrift.models.basemodel:2054: 34.48720032243914 <- latitude -> 35.18475785966789
20:13:37 DEBUG opendrift.models.basemodel:2059: 23.577920274655067 <- longitude -> 24.52340863140452
20:13:37 DEBUG opendrift.models.basemodel:2064: -80.28105083698307 <- z -> 0.0
20:13:37 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5887 elements
20:13:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5887 elements
20:13:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5887 elements
20:13:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5887 elements
20:13:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5887 elements
20:13:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5887 elements
20:13:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 03:00:00 (before)
2024-12-11 06:00:00 (after)
20:13:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 03:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 06:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 03:00:00, weight 0.60) and
after (2024-12-11 06:00:00, weight 0.40) in time
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5887 elements
20:13:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5887 elements
20:13:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 03:00:00 (before)
2024-12-11 06:00:00 (after)
20:13:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 03:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 06:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 03:00:00, weight 0.60) and
after (2024-12-11 06:00:00, weight 0.40) in time
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:37 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.457486 (min) 0.161285 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.287717 (min) 0.238413 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.38109 (min) 4.11654 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: -0.871615 (min) 0.301296 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:37 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.139473, mean: 0.383146, max: 0.433728
20:13:37 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:37 DEBUG opendrift.models.physics_methods:1061: min: 2.034577, mean: 3.364745, max: 3.587883
20:13:37 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.034577, mean: 3.364745, max: 3.587883
20:13:37 DEBUG opendrift.models.basemodel:662: 5 elements hit land, moving them to the coastline.
20:13:37 DEBUG opendrift.models.basemodel:1693: 5 elements scheduled for deactivation (stranded)
20:13:37 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:37 DEBUG opendrift.models.basemodel:1713: Removed 5 elements.
20:13:37 DEBUG opendrift.models.basemodel:1716: Removed 5 values from environment.
20:13:37 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:37 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:37 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:37 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:37 DEBUG opendrift.models.basemodel:1725: Removed 5 values from environment_profiles.
20:13:37 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:37 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:37 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:37 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:37 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:37 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:37 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:37 DEBUG opendrift.models.physics_methods:1061: min: 2.034577, mean: 3.365620, max: 3.587883
20:13:37 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:37 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.242027, dN_50: 0.018994
20:13:37 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:37 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.006365808752036224
20:13:37 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:37 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:37 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:37 DEBUG opendrift.models.physics_methods:915: Advecting 453 of 5882 elements above 0.100m with wind-sheared ocean current (0.004781 m/s - 0.120472 m/s)
20:13:37 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:37 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0006797073273748133 and 0.4683624268698096 m/s
20:13:37 DEBUG opendrift.models.basemodel:2123: 5882 active elements (118 deactivated)
20:13:37 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:37 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:37 INFO opendrift.models.basemodel:2035: 2024-12-11 05:11:28.612916 - step 82 of 120 - 5882 active elements (118 deactivated)
20:13:37 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:37 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:37 DEBUG opendrift.models.basemodel:2054: 34.479609638995484 <- latitude -> 35.19513451767972
20:13:37 DEBUG opendrift.models.basemodel:2059: 23.58023904779798 <- longitude -> 24.531680383325547
20:13:37 DEBUG opendrift.models.basemodel:2064: -79.72291372053778 <- z -> 0.0
20:13:37 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5882 elements
20:13:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5882 elements
20:13:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5882 elements
20:13:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5882 elements
20:13:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:37 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5882 elements
20:13:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5882 elements
20:13:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 03:00:00 (before)
2024-12-11 06:00:00 (after)
20:13:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 03:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 06:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 03:00:00, weight 0.27) and
after (2024-12-11 06:00:00, weight 0.73) in time
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:37 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:37 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5882 elements
20:13:37 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5882 elements
20:13:37 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:37 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 03:00:00 (before)
2024-12-11 06:00:00 (after)
20:13:37 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 03:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 06:00:00) in space (linearNDFast)
20:13:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:37 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 03:00:00, weight 0.27) and
after (2024-12-11 06:00:00, weight 0.73) in time
20:13:37 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:37 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:37 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:37 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:37 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:37 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:37 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.442723 (min) 0.152306 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.300619 (min) 0.255228 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.40479 (min) 4.39549 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: y_wind: -1.18815 (min) 0.252443 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:37 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:37 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.142263, mean: 0.387569, max: 0.489883
20:13:37 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:37 DEBUG opendrift.models.physics_methods:1061: min: 2.054827, mean: 3.383566, max: 3.813079
20:13:37 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.054827, mean: 3.383566, max: 3.813079
20:13:37 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:37 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:37 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:37 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:37 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:37 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:37 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:37 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:37 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:37 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:37 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:37 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:37 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:37 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:37 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:37 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:37 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:37 DEBUG opendrift.models.physics_methods:1061: min: 2.054827, mean: 3.383776, max: 3.813079
20:13:37 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:37 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.248890, dN_50: 0.019533
20:13:37 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:37 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.0071894505398579014
20:13:37 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:37 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:37 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:38 DEBUG opendrift.models.physics_methods:915: Advecting 461 of 5881 elements above 0.100m with wind-sheared ocean current (0.003540 m/s - 0.126960 m/s)
20:13:38 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:38 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.000790581757468925 and 0.41575015325651166 m/s
20:13:38 DEBUG opendrift.models.basemodel:2123: 5881 active elements (119 deactivated)
20:13:38 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:38 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:38 INFO opendrift.models.basemodel:2035: 2024-12-11 06:11:28.612916 - step 83 of 120 - 5881 active elements (119 deactivated)
20:13:38 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:38 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:38 DEBUG opendrift.models.basemodel:2054: 34.464899292083196 <- latitude -> 35.183800138058054
20:13:38 DEBUG opendrift.models.basemodel:2059: 23.585105266539625 <- longitude -> 24.53526472025782
20:13:38 DEBUG opendrift.models.basemodel:2064: -78.46242878428943 <- z -> 0.0
20:13:38 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5881 elements
20:13:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5881 elements
20:13:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5881 elements
20:13:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5881 elements
20:13:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:38 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:38 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:38 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:38 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:38 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:38 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:38 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5881 elements
20:13:38 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5881 elements
20:13:38 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:38 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 06:00:00 (before)
2024-12-11 09:00:00 (after)
20:13:38 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:40 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:42 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:42 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:42 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 20x26x19) for time after (2024-12-11 09:00:00)
20:13:42 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 06:00:00) in space (linearNDFast)
20:13:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:42 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 09:00:00) in space (linearNDFast)
20:13:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 1
20:13:42 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 06:00:00, weight 0.94) and
after (2024-12-11 09:00:00, weight 0.06) in time
20:13:42 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:42 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:42 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:42 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:42 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:42 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:42 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:42 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5881 elements
20:13:42 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5881 elements
20:13:42 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:42 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 06:00:00 (before)
2024-12-11 09:00:00 (after)
20:13:42 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:43 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:43 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:43 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:43 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-11 09:00:00)
20:13:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 06:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 09:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 06:00:00, weight 0.94) and
after (2024-12-11 09:00:00, weight 0.06) in time
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:43 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:43 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.452685 (min) 0.145569 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.310443 (min) 0.259545 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.47824 (min) 4.65816 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: y_wind: -1.47302 (min) 0.0218915 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:43 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.151223, mean: 0.395859, max: 0.553946
20:13:43 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:43 DEBUG opendrift.models.physics_methods:1061: min: 2.118546, mean: 3.418480, max: 4.054743
20:13:43 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.118546, mean: 3.418480, max: 4.054743
20:13:43 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:43 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:43 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:43 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:43 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:43 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:43 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:43 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:43 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:43 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:43 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:43 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:43 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:43 DEBUG opendrift.models.physics_methods:1061: min: 2.118546, mean: 3.418856, max: 4.054743
20:13:43 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:43 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.255303, dN_50: 0.020036
20:13:43 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:43 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.00812908152868869
20:13:43 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:43 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:43 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:43 DEBUG opendrift.models.physics_methods:915: Advecting 463 of 5879 elements above 0.100m with wind-sheared ocean current (0.026724 m/s - 0.133705 m/s)
20:13:43 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:43 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0023836012351955214 and 0.42278870251566136 m/s
20:13:43 DEBUG opendrift.models.basemodel:2123: 5879 active elements (121 deactivated)
20:13:43 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:43 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:43 INFO opendrift.models.basemodel:2035: 2024-12-11 07:11:28.612916 - step 84 of 120 - 5879 active elements (121 deactivated)
20:13:43 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:43 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:43 DEBUG opendrift.models.basemodel:2054: 34.4601125482814 <- latitude -> 35.18305658773
20:13:43 DEBUG opendrift.models.basemodel:2059: 23.586026979431484 <- longitude -> 24.535114337811923
20:13:43 DEBUG opendrift.models.basemodel:2064: -77.64882123786519 <- z -> 0.0
20:13:43 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5879 elements
20:13:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5879 elements
20:13:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5879 elements
20:13:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5879 elements
20:13:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:43 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5879 elements
20:13:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5879 elements
20:13:43 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 06:00:00 (before)
2024-12-11 09:00:00 (after)
20:13:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 06:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 09:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 06:00:00, weight 0.60) and
after (2024-12-11 09:00:00, weight 0.40) in time
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5879 elements
20:13:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5879 elements
20:13:43 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 06:00:00 (before)
2024-12-11 09:00:00 (after)
20:13:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 06:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 09:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 06:00:00, weight 0.60) and
after (2024-12-11 09:00:00, weight 0.40) in time
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:43 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:43 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.441871 (min) 0.13531 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.277085 (min) 0.260352 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.76659 (min) 4.94696 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: y_wind: -1.62112 (min) -0.319748 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:43 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.191197, mean: 0.417423, max: 0.626061
20:13:43 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:43 DEBUG opendrift.models.physics_methods:1061: min: 2.382155, mean: 3.511586, max: 4.310601
20:13:43 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.382155, mean: 3.511586, max: 4.310601
20:13:43 DEBUG opendrift.models.basemodel:662: 5 elements hit land, moving them to the coastline.
20:13:43 DEBUG opendrift.models.basemodel:1693: 5 elements scheduled for deactivation (stranded)
20:13:43 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:43 DEBUG opendrift.models.basemodel:1713: Removed 5 elements.
20:13:43 DEBUG opendrift.models.basemodel:1716: Removed 5 values from environment.
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:43 DEBUG opendrift.models.basemodel:1725: Removed 5 values from environment_profiles.
20:13:43 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:43 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:43 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:43 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:43 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:43 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:43 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:43 DEBUG opendrift.models.physics_methods:1061: min: 2.382155, mean: 3.512423, max: 4.310601
20:13:43 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:43 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.258426, dN_50: 0.020281
20:13:43 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:43 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.00918680651055882
20:13:43 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:43 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:43 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:43 DEBUG opendrift.models.physics_methods:915: Advecting 458 of 5874 elements above 0.100m with wind-sheared ocean current (0.004237 m/s - 0.140715 m/s)
20:13:43 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:43 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020722355853541913 and 0.46043202505467173 m/s
20:13:43 DEBUG opendrift.models.basemodel:2123: 5874 active elements (126 deactivated)
20:13:43 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:43 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:43 INFO opendrift.models.basemodel:2035: 2024-12-11 08:11:28.612916 - step 85 of 120 - 5874 active elements (126 deactivated)
20:13:43 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:43 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:43 DEBUG opendrift.models.basemodel:2054: 34.44718801248277 <- latitude -> 35.18764152317205
20:13:43 DEBUG opendrift.models.basemodel:2059: 23.582230068007483 <- longitude -> 24.546541670079954
20:13:43 DEBUG opendrift.models.basemodel:2064: -76.22759001536629 <- z -> 0.0
20:13:43 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5874 elements
20:13:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5874 elements
20:13:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5874 elements
20:13:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5874 elements
20:13:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:43 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5874 elements
20:13:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5874 elements
20:13:43 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 06:00:00 (before)
2024-12-11 09:00:00 (after)
20:13:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 06:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 09:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 06:00:00, weight 0.27) and
after (2024-12-11 09:00:00, weight 0.73) in time
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:43 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:43 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5874 elements
20:13:43 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5874 elements
20:13:43 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:43 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 06:00:00 (before)
2024-12-11 09:00:00 (after)
20:13:43 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 06:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 09:00:00) in space (linearNDFast)
20:13:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:43 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 06:00:00, weight 0.27) and
after (2024-12-11 09:00:00, weight 0.73) in time
20:13:43 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:43 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:43 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:43 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:43 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:43 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:43 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.442531 (min) 0.130514 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.243518 (min) 0.258547 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.04111 (min) 5.19247 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: y_wind: -1.76226 (min) -0.616041 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:43 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:43 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.236846, mean: 0.441467, max: 0.691430
20:13:43 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:43 DEBUG opendrift.models.physics_methods:1061: min: 2.651322, mean: 3.612080, max: 4.530058
20:13:43 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.651322, mean: 3.612080, max: 4.530058
20:13:43 DEBUG opendrift.models.basemodel:662: 4 elements hit land, moving them to the coastline.
20:13:43 DEBUG opendrift.models.basemodel:1693: 4 elements scheduled for deactivation (stranded)
20:13:43 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:43 DEBUG opendrift.models.basemodel:1713: Removed 4 elements.
20:13:43 DEBUG opendrift.models.basemodel:1716: Removed 4 values from environment.
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:43 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:43 DEBUG opendrift.models.basemodel:1725: Removed 4 values from environment_profiles.
20:13:43 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:43 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:43 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:43 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:43 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:43 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:43 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:43 DEBUG opendrift.models.physics_methods:1061: min: 2.808761, mean: 3.612626, max: 4.530057
20:13:43 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:43 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.260939, dN_50: 0.020479
20:13:43 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:43 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.010145597452971299
20:13:43 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:43 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:43 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:44 DEBUG opendrift.models.physics_methods:915: Advecting 460 of 5870 elements above 0.100m with wind-sheared ocean current (0.038273 m/s - 0.148537 m/s)
20:13:44 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:44 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021618190204025518 and 0.40739875328182973 m/s
20:13:44 DEBUG opendrift.models.basemodel:2123: 5870 active elements (130 deactivated)
20:13:44 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:44 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:44 INFO opendrift.models.basemodel:2035: 2024-12-11 09:11:28.612916 - step 86 of 120 - 5870 active elements (130 deactivated)
20:13:44 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:44 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:44 DEBUG opendrift.models.basemodel:2054: 34.44211627513648 <- latitude -> 35.19477905908926
20:13:44 DEBUG opendrift.models.basemodel:2059: 23.579613850483042 <- longitude -> 24.552090933582118
20:13:44 DEBUG opendrift.models.basemodel:2064: -75.04112478089766 <- z -> 0.0
20:13:44 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5870 elements
20:13:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5870 elements
20:13:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5870 elements
20:13:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5870 elements
20:13:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:44 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:44 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:44 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:44 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:44 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:44 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:44 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5870 elements
20:13:44 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5870 elements
20:13:44 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:44 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 09:00:00 (before)
2024-12-11 12:00:00 (after)
20:13:44 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:45 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x27x19) for time after (2024-12-11 12:00:00)
20:13:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 09:00:00) in space (linearNDFast)
20:13:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 12:00:00) in space (linearNDFast)
20:13:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
20:13:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 09:00:00, weight 0.94) and
after (2024-12-11 12:00:00, weight 0.06) in time
20:13:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5870 elements
20:13:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5870 elements
20:13:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 09:00:00 (before)
2024-12-11 12:00:00 (after)
20:13:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:45 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:45 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:45 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:45 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-11 12:00:00)
20:13:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 09:00:00) in space (linearNDFast)
20:13:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 12:00:00) in space (linearNDFast)
20:13:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 09:00:00, weight 0.94) and
after (2024-12-11 12:00:00, weight 0.06) in time
20:13:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:45 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:45 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.443987 (min) 0.136706 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.220604 (min) 0.265435 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.13938 (min) 5.48639 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: -1.95814 (min) -0.867033 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:45 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.309348, mean: 0.473890, max: 0.773931
20:13:45 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:45 DEBUG opendrift.models.physics_methods:1061: min: 3.030074, mean: 3.742973, max: 4.792706
20:13:45 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.030074, mean: 3.742973, max: 4.792706
20:13:45 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:13:45 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:13:45 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:45 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:13:45 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:13:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:45 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:13:45 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:45 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:45 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:45 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:45 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:45 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:45 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:45 DEBUG opendrift.models.physics_methods:1061: min: 3.030074, mean: 3.743060, max: 4.792706
20:13:45 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:45 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.261397, dN_50: 0.020514
20:13:45 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:45 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.011355666012767938
20:13:45 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:45 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:45 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:45 DEBUG opendrift.models.physics_methods:915: Advecting 455 of 5867 elements above 0.100m with wind-sheared ocean current (0.015292 m/s - 0.156030 m/s)
20:13:45 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:45 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.004063870862432759 and 0.46146106846338975 m/s
20:13:45 DEBUG opendrift.models.basemodel:2123: 5867 active elements (133 deactivated)
20:13:45 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:45 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:45 INFO opendrift.models.basemodel:2035: 2024-12-11 10:11:28.612916 - step 87 of 120 - 5867 active elements (133 deactivated)
20:13:45 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:45 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:45 DEBUG opendrift.models.basemodel:2054: 34.43436234551211 <- latitude -> 35.19079043949013
20:13:45 DEBUG opendrift.models.basemodel:2059: 23.58557417094862 <- longitude -> 24.560419284015442
20:13:45 DEBUG opendrift.models.basemodel:2064: -74.0488235189293 <- z -> 0.0
20:13:45 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5867 elements
20:13:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5867 elements
20:13:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5867 elements
20:13:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5867 elements
20:13:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:45 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5867 elements
20:13:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5867 elements
20:13:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 09:00:00 (before)
2024-12-11 12:00:00 (after)
20:13:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 09:00:00) in space (linearNDFast)
20:13:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 12:00:00) in space (linearNDFast)
20:13:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 09:00:00, weight 0.60) and
after (2024-12-11 12:00:00, weight 0.40) in time
20:13:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:45 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:45 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:45 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5867 elements
20:13:45 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5867 elements
20:13:45 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:45 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 09:00:00 (before)
2024-12-11 12:00:00 (after)
20:13:45 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 09:00:00) in space (linearNDFast)
20:13:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:45 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 12:00:00) in space (linearNDFast)
20:13:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:45 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 09:00:00, weight 0.60) and
after (2024-12-11 12:00:00, weight 0.40) in time
20:13:45 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:45 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:45 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:45 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:45 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:45 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:45 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:45 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.450348 (min) 0.132854 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.214033 (min) 0.253536 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.13931 (min) 5.88137 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.34709 (min) -0.743418 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:45 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:45 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.351390, mean: 0.536339, max: 0.890356
20:13:45 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:45 DEBUG opendrift.models.physics_methods:1061: min: 3.229419, mean: 3.983208, max: 5.140572
20:13:45 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.229419, mean: 3.983208, max: 5.140572
20:13:45 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:45 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:45 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:45 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:45 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:45 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:45 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:45 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:45 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:45 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:45 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:45 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:45 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:45 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:45 DEBUG opendrift.models.physics_methods:1061: min: 3.229419, mean: 3.983266, max: 5.140572
20:13:45 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:45 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.255817, dN_50: 0.020076
20:13:45 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:45 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01306329753678884
20:13:45 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:45 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:45 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:46 DEBUG opendrift.models.physics_methods:915: Advecting 455 of 5866 elements above 0.100m with wind-sheared ocean current (0.089329 m/s - 0.165117 m/s)
20:13:46 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:46 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0018949042641436655 and 0.5168318828696361 m/s
20:13:46 DEBUG opendrift.models.basemodel:2123: 5866 active elements (134 deactivated)
20:13:46 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:46 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:46 INFO opendrift.models.basemodel:2035: 2024-12-11 11:11:28.612916 - step 88 of 120 - 5866 active elements (134 deactivated)
20:13:46 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:46 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:46 DEBUG opendrift.models.basemodel:2054: 34.42833947191716 <- latitude -> 35.18563888745669
20:13:46 DEBUG opendrift.models.basemodel:2059: 23.587765046671993 <- longitude -> 24.567653425812004
20:13:46 DEBUG opendrift.models.basemodel:2064: -73.74349316818824 <- z -> 0.0
20:13:46 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5866 elements
20:13:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5866 elements
20:13:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5866 elements
20:13:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5866 elements
20:13:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:46 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5866 elements
20:13:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5866 elements
20:13:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 09:00:00 (before)
2024-12-11 12:00:00 (after)
20:13:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 09:00:00) in space (linearNDFast)
20:13:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 12:00:00) in space (linearNDFast)
20:13:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 09:00:00, weight 0.27) and
after (2024-12-11 12:00:00, weight 0.73) in time
20:13:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5866 elements
20:13:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5866 elements
20:13:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 09:00:00 (before)
2024-12-11 12:00:00 (after)
20:13:46 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 09:00:00) in space (linearNDFast)
20:13:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:46 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 12:00:00) in space (linearNDFast)
20:13:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:46 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 09:00:00, weight 0.27) and
after (2024-12-11 12:00:00, weight 0.73) in time
20:13:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:46 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:46 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:46 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:46 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:46 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.458216 (min) 0.12538 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.202283 (min) 0.246129 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.13873 (min) 6.2225 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: y_wind: -2.75791 (min) -0.59842 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:46 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:46 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.405049, mean: 0.605308, max: 0.998831
20:13:46 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:46 DEBUG opendrift.models.physics_methods:1061: min: 3.467235, mean: 4.232224, max: 5.444720
20:13:46 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.467235, mean: 4.232224, max: 5.444720
20:13:46 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:46 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:46 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:46 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:46 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:46 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:46 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:46 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:46 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:46 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:46 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:46 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:46 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:46 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:46 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:46 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:46 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:46 DEBUG opendrift.models.physics_methods:1061: min: 3.467235, mean: 4.232236, max: 5.444720
20:13:46 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:46 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.250685, dN_50: 0.019674
20:13:46 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:46 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.014654330809845486
20:13:46 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:46 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:46 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:46 DEBUG opendrift.models.physics_methods:915: Advecting 465 of 5865 elements above 0.100m with wind-sheared ocean current (0.002648 m/s - 0.174381 m/s)
20:13:46 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:46 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.001804819674933045 and 0.4196178133718228 m/s
20:13:46 DEBUG opendrift.models.basemodel:2123: 5865 active elements (135 deactivated)
20:13:46 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:46 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:46 INFO opendrift.models.basemodel:2035: 2024-12-11 12:11:28.612916 - step 89 of 120 - 5865 active elements (135 deactivated)
20:13:46 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:46 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:46 DEBUG opendrift.models.basemodel:2054: 34.42446577450088 <- latitude -> 35.1848160254407
20:13:46 DEBUG opendrift.models.basemodel:2059: 23.58467804600007 <- longitude -> 24.577326212099376
20:13:46 DEBUG opendrift.models.basemodel:2064: -72.77810395772914 <- z -> 0.0
20:13:46 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5865 elements
20:13:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5865 elements
20:13:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5865 elements
20:13:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5865 elements
20:13:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:46 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:46 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:46 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:46 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:46 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:46 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:46 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5865 elements
20:13:46 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5865 elements
20:13:46 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:46 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 12:00:00 (before)
2024-12-11 15:00:00 (after)
20:13:46 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:48 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x27x19) for time after (2024-12-11 15:00:00)
20:13:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 12:00:00) in space (linearNDFast)
20:13:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 15:00:00) in space (linearNDFast)
20:13:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
20:13:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 12:00:00, weight 0.94) and
after (2024-12-11 15:00:00, weight 0.06) in time
20:13:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:48 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:48 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:48 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:48 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:48 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:48 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5865 elements
20:13:48 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5865 elements
20:13:48 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:48 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 12:00:00 (before)
2024-12-11 15:00:00 (after)
20:13:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:48 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:48 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:48 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:48 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-11 15:00:00)
20:13:48 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 12:00:00) in space (linearNDFast)
20:13:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:48 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 15:00:00) in space (linearNDFast)
20:13:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:48 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 12:00:00, weight 0.94) and
after (2024-12-11 15:00:00, weight 0.06) in time
20:13:48 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:48 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:48 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:48 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:48 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:48 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:48 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:48 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.477017 (min) 0.128458 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.201369 (min) 0.248323 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.13605 (min) 6.61407 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.07675 (min) -0.463961 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:48 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:48 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.458853, mean: 0.671246, max: 1.128483
20:13:48 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:48 DEBUG opendrift.models.physics_methods:1061: min: 3.690341, mean: 4.456748, max: 5.787316
20:13:48 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.690341, mean: 4.456748, max: 5.787316
20:13:48 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:13:48 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:13:48 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:48 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:48 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:48 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:48 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:48 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:48 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:48 DEBUG opendrift.models.physics_methods:1061: min: 3.690341, mean: 4.456748, max: 5.787316
20:13:48 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:48 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.247425, dN_50: 0.019418
20:13:48 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:48 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.016555981322833615
20:13:48 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:48 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:48 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:49 DEBUG opendrift.models.physics_methods:915: Advecting 469 of 5865 elements above 0.100m with wind-sheared ocean current (0.044745 m/s - 0.183493 m/s)
20:13:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:49 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022275843287982502 and 0.43361757574434984 m/s
20:13:49 DEBUG opendrift.models.basemodel:2123: 5865 active elements (135 deactivated)
20:13:49 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:49 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:49 INFO opendrift.models.basemodel:2035: 2024-12-11 13:11:28.612916 - step 90 of 120 - 5865 active elements (135 deactivated)
20:13:49 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:49 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:49 DEBUG opendrift.models.basemodel:2054: 34.417584808459466 <- latitude -> 35.183089786988155
20:13:49 DEBUG opendrift.models.basemodel:2059: 23.58392103973425 <- longitude -> 24.5871059994329
20:13:49 DEBUG opendrift.models.basemodel:2064: -71.51037225852684 <- z -> 0.0
20:13:49 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5865 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5865 elements
20:13:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5865 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5865 elements
20:13:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5865 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5865 elements
20:13:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 12:00:00 (before)
2024-12-11 15:00:00 (after)
20:13:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 12:00:00) in space (linearNDFast)
20:13:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 15:00:00) in space (linearNDFast)
20:13:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 12:00:00, weight 0.60) and
after (2024-12-11 15:00:00, weight 0.40) in time
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5865 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5865 elements
20:13:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 12:00:00 (before)
2024-12-11 15:00:00 (after)
20:13:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 12:00:00) in space (linearNDFast)
20:13:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 15:00:00) in space (linearNDFast)
20:13:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 12:00:00, weight 0.60) and
after (2024-12-11 15:00:00, weight 0.40) in time
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:49 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:49 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:49 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.470059 (min) 0.132461 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.225372 (min) 0.25164 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.17155 (min) 6.92924 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.0723 (min) -0.40975 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:49 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.465454, mean: 0.698457, max: 1.230673
20:13:49 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:49 DEBUG opendrift.models.physics_methods:1061: min: 3.716792, mean: 4.544373, max: 6.043672
20:13:49 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.716792, mean: 4.544373, max: 6.043672
20:13:49 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:13:49 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:13:49 DEBUG opendrift.models.basemodel:1695: (z: -3.061051 to 0.000000)
20:13:49 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:13:49 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:13:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:49 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:13:49 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:49 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:49 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:49 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:49 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:49 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:49 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:49 DEBUG opendrift.models.physics_methods:1061: min: 3.716792, mean: 4.544185, max: 6.043672
20:13:49 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:49 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.250852, dN_50: 0.019687
20:13:49 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:49 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.018054817124894512
20:13:49 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:49 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:49 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:49 DEBUG opendrift.models.physics_methods:915: Advecting 479 of 5862 elements above 0.100m with wind-sheared ocean current (0.087041 m/s - 0.196014 m/s)
20:13:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:49 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0023160290146988552 and 0.39728363112065196 m/s
20:13:49 DEBUG opendrift.models.basemodel:2123: 5862 active elements (138 deactivated)
20:13:49 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:49 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:49 INFO opendrift.models.basemodel:2035: 2024-12-11 14:11:28.612916 - step 91 of 120 - 5862 active elements (138 deactivated)
20:13:49 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:49 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:49 DEBUG opendrift.models.basemodel:2054: 34.408154000770054 <- latitude -> 35.188142711133366
20:13:49 DEBUG opendrift.models.basemodel:2059: 23.58765423210848 <- longitude -> 24.59640460039928
20:13:49 DEBUG opendrift.models.basemodel:2064: -70.75664941658297 <- z -> 0.0
20:13:49 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5862 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5862 elements
20:13:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5862 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5862 elements
20:13:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5862 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5862 elements
20:13:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 12:00:00 (before)
2024-12-11 15:00:00 (after)
20:13:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 12:00:00) in space (linearNDFast)
20:13:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 15:00:00) in space (linearNDFast)
20:13:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 12:00:00, weight 0.27) and
after (2024-12-11 15:00:00, weight 0.73) in time
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5862 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5862 elements
20:13:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 12:00:00 (before)
2024-12-11 15:00:00 (after)
20:13:49 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 12:00:00) in space (linearNDFast)
20:13:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:49 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 15:00:00) in space (linearNDFast)
20:13:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:49 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 12:00:00, weight 0.27) and
after (2024-12-11 15:00:00, weight 0.73) in time
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:49 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:49 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:49 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:49 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.476635 (min) 0.13581 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.24664 (min) 0.258276 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.22269 (min) 7.21911 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.05403 (min) -0.403642 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:49 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:49 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.471940, mean: 0.726427, max: 1.331498
20:13:49 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:49 DEBUG opendrift.models.physics_methods:1061: min: 3.742597, mean: 4.632309, max: 6.286369
20:13:49 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.742597, mean: 4.632309, max: 6.286369
20:13:49 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:49 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:49 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:49 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:49 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:49 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:49 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:49 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:49 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:49 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:49 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:49 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:49 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:49 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:49 DEBUG opendrift.models.physics_methods:1061: min: 3.742597, mean: 4.632259, max: 6.286369
20:13:49 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:49 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.254204, dN_50: 0.019950
20:13:49 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:49 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.019533650351438673
20:13:49 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:49 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:49 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:49 DEBUG opendrift.models.physics_methods:915: Advecting 478 of 5860 elements above 0.100m with wind-sheared ocean current (0.032535 m/s - 0.202541 m/s)
20:13:49 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:49 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0017628624234665314 and 0.47591766606574665 m/s
20:13:49 DEBUG opendrift.models.basemodel:2123: 5860 active elements (140 deactivated)
20:13:49 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:49 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:49 INFO opendrift.models.basemodel:2035: 2024-12-11 15:11:28.612916 - step 92 of 120 - 5860 active elements (140 deactivated)
20:13:49 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:49 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:49 DEBUG opendrift.models.basemodel:2054: 34.40597093798368 <- latitude -> 35.18774994422002
20:13:49 DEBUG opendrift.models.basemodel:2059: 23.58699754206224 <- longitude -> 24.60494499358827
20:13:49 DEBUG opendrift.models.basemodel:2064: -69.61212246729578 <- z -> 0.0
20:13:49 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5860 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5860 elements
20:13:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5860 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5860 elements
20:13:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:49 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:49 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:49 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:49 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:49 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:49 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:49 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5860 elements
20:13:49 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5860 elements
20:13:49 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:49 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 15:00:00 (before)
2024-12-11 18:00:00 (after)
20:13:49 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:51 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:53 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:53 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:53 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x27x18) for time after (2024-12-11 18:00:00)
20:13:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 15:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 18:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
20:13:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 15:00:00, weight 0.94) and
after (2024-12-11 18:00:00, weight 0.06) in time
20:13:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 15:00:00 (before)
2024-12-11 18:00:00 (after)
20:13:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:53 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:53 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:53 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:53 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-11 18:00:00)
20:13:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 15:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 18:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 15:00:00, weight 0.94) and
after (2024-12-11 18:00:00, weight 0.06) in time
20:13:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:53 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:53 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:53 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:53 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.461816 (min) 0.143178 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.273284 (min) 0.256936 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.26248 (min) 7.4711 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.11494 (min) -0.517216 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:53 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.491431, mean: 0.757623, max: 1.426260
20:13:53 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:53 DEBUG opendrift.models.physics_methods:1061: min: 3.819097, mean: 4.729747, max: 6.506223
20:13:53 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.819097, mean: 4.729747, max: 6.506223
20:13:53 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:13:53 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:13:53 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:53 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:53 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:53 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:53 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:53 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:53 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:53 DEBUG opendrift.models.physics_methods:1061: min: 3.819097, mean: 4.729747, max: 6.506223
20:13:53 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:53 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.256599, dN_50: 0.020138
20:13:53 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:53 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02092355170768725
20:13:53 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:53 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:53 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:53 DEBUG opendrift.models.physics_methods:915: Advecting 481 of 5860 elements above 0.100m with wind-sheared ocean current (0.062308 m/s - 0.209278 m/s)
20:13:53 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:53 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007492804101626898 and 0.4117957407987776 m/s
20:13:53 DEBUG opendrift.models.basemodel:2123: 5860 active elements (140 deactivated)
20:13:53 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:53 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:53 INFO opendrift.models.basemodel:2035: 2024-12-11 16:11:28.612916 - step 93 of 120 - 5860 active elements (140 deactivated)
20:13:53 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:53 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:53 DEBUG opendrift.models.basemodel:2054: 34.400568507867106 <- latitude -> 35.18494900112762
20:13:53 DEBUG opendrift.models.basemodel:2059: 23.59085061865953 <- longitude -> 24.612516712700753
20:13:53 DEBUG opendrift.models.basemodel:2064: -68.63624120725802 <- z -> 0.0
20:13:53 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:53 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 15:00:00 (before)
2024-12-11 18:00:00 (after)
20:13:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 15:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 18:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 15:00:00, weight 0.60) and
after (2024-12-11 18:00:00, weight 0.40) in time
20:13:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5860 elements
20:13:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 15:00:00 (before)
2024-12-11 18:00:00 (after)
20:13:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 15:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 18:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 15:00:00, weight 0.60) and
after (2024-12-11 18:00:00, weight 0.40) in time
20:13:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:53 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:53 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:53 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:53 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:53 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.490574 (min) 0.165623 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.267462 (min) 0.237146 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.29246 (min) 7.22369 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.48002 (min) -1.14421 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:53 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:53 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.456962, mean: 0.804399, max: 1.368986
20:13:53 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:53 DEBUG opendrift.models.physics_methods:1061: min: 3.682730, mean: 4.876640, max: 6.374249
20:13:53 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.682730, mean: 4.876640, max: 6.374249
20:13:53 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:53 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:53 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:53 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:53 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:53 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:53 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:53 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:53 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:53 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:53 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:53 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:53 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:53 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:53 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:53 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:53 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:53 DEBUG opendrift.models.physics_methods:1061: min: 3.682730, mean: 4.876799, max: 6.374249
20:13:53 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:53 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.255337, dN_50: 0.020039
20:13:53 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:53 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.020083494657398678
20:13:53 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:53 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:53 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:53 DEBUG opendrift.models.physics_methods:915: Advecting 485 of 5858 elements above 0.100m with wind-sheared ocean current (0.001193 m/s - 0.212232 m/s)
20:13:53 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:53 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002108070290006107 and 0.43293887946434373 m/s
20:13:53 DEBUG opendrift.models.basemodel:2123: 5858 active elements (142 deactivated)
20:13:53 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:53 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:53 INFO opendrift.models.basemodel:2035: 2024-12-11 17:11:28.612916 - step 94 of 120 - 5858 active elements (142 deactivated)
20:13:53 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:53 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:53 DEBUG opendrift.models.basemodel:2054: 34.39134953122479 <- latitude -> 35.1836641062074
20:13:53 DEBUG opendrift.models.basemodel:2059: 23.59364104812166 <- longitude -> 24.62794147444098
20:13:53 DEBUG opendrift.models.basemodel:2064: -67.42632250563612 <- z -> 0.0
20:13:53 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements
20:13:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5858 elements
20:13:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements
20:13:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5858 elements
20:13:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:53 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:53 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:53 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:53 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:53 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:53 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:53 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements
20:13:53 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5858 elements
20:13:53 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:53 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 15:00:00 (before)
2024-12-11 18:00:00 (after)
20:13:53 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 15:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:53 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 18:00:00) in space (linearNDFast)
20:13:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:54 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 15:00:00, weight 0.27) and
after (2024-12-11 18:00:00, weight 0.73) in time
20:13:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements
20:13:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5858 elements
20:13:54 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 15:00:00 (before)
2024-12-11 18:00:00 (after)
20:13:54 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 15:00:00) in space (linearNDFast)
20:13:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:54 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 18:00:00) in space (linearNDFast)
20:13:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:54 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 15:00:00, weight 0.27) and
after (2024-12-11 18:00:00, weight 0.73) in time
20:13:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:54 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:54 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:54 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:54 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:54 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.504112 (min) 0.219579 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.255065 (min) 0.221939 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: x_wind: 3.3289 (min) 7.04897 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: y_wind: -3.84485 (min) -1.46156 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:54 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:54 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.362349, mean: 0.860842, max: 1.365461
20:13:54 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:54 DEBUG opendrift.models.physics_methods:1061: min: 3.279390, mean: 5.044654, max: 6.366037
20:13:54 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.279390, mean: 5.044654, max: 6.366037
20:13:54 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:13:54 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:13:54 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:54 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:54 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:54 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:54 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:54 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:54 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:54 DEBUG opendrift.models.physics_methods:1061: min: 3.279390, mean: 5.044654, max: 6.366037
20:13:54 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:54 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.253435, dN_50: 0.019890
20:13:54 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:54 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.020031787990873868
20:13:54 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:54 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:54 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:54 DEBUG opendrift.models.physics_methods:915: Advecting 484 of 5858 elements above 0.100m with wind-sheared ocean current (0.115138 m/s - 0.213569 m/s)
20:13:54 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:54 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009949837434774552 and 0.4772741787725408 m/s
20:13:54 DEBUG opendrift.models.basemodel:2123: 5858 active elements (142 deactivated)
20:13:54 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:54 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:54 INFO opendrift.models.basemodel:2035: 2024-12-11 18:11:28.612916 - step 95 of 120 - 5858 active elements (142 deactivated)
20:13:54 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:54 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:54 DEBUG opendrift.models.basemodel:2054: 34.383501197682385 <- latitude -> 35.18168548961558
20:13:54 DEBUG opendrift.models.basemodel:2059: 23.587459510801065 <- longitude -> 24.643577014434992
20:13:54 DEBUG opendrift.models.basemodel:2064: -66.44366331352919 <- z -> 0.0
20:13:54 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements
20:13:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5858 elements
20:13:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements
20:13:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5858 elements
20:13:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:54 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:54 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:54 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:54 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:54 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:54 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:54 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements
20:13:54 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5858 elements
20:13:54 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:54 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 18:00:00 (before)
2024-12-11 21:00:00 (after)
20:13:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:54 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:55 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:55 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:55 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x28x18) for time after (2024-12-11 21:00:00)
20:13:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 18:00:00) in space (linearNDFast)
20:13:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:55 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 21:00:00) in space (linearNDFast)
20:13:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
20:13:55 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 18:00:00, weight 0.94) and
after (2024-12-11 21:00:00, weight 0.06) in time
20:13:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:55 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:55 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:55 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:55 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:55 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:55 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5858 elements
20:13:55 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5858 elements
20:13:55 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:55 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 18:00:00 (before)
2024-12-11 21:00:00 (after)
20:13:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:55 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:55 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:55 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:55 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-11 21:00:00)
20:13:55 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 18:00:00) in space (linearNDFast)
20:13:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:55 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 21:00:00) in space (linearNDFast)
20:13:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:55 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 18:00:00, weight 0.94) and
after (2024-12-11 21:00:00, weight 0.06) in time
20:13:55 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:55 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:55 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:55 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:55 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:55 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:55 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:55 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.510338 (min) 0.260922 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.267825 (min) 0.211431 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: x_wind: 2.62786 (min) 6.86624 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.19711 (min) -1.52494 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:55 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:55 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.278158, mean: 0.912182, max: 1.347247
20:13:55 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:55 DEBUG opendrift.models.physics_methods:1061: min: 2.873261, mean: 5.190199, max: 6.323436
20:13:55 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.873261, mean: 5.190199, max: 6.323436
20:13:55 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:55 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:55 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:56 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:56 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:56 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:56 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:56 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:56 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:56 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:56 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:56 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:56 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:56 DEBUG opendrift.models.physics_methods:1061: min: 2.873261, mean: 5.190727, max: 6.323436
20:13:56 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:56 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.252082, dN_50: 0.019783
20:13:56 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:56 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.019764638055700626
20:13:56 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:56 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:56 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:56 DEBUG opendrift.models.physics_methods:915: Advecting 489 of 5856 elements above 0.100m with wind-sheared ocean current (0.032622 m/s - 0.211858 m/s)
20:13:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:56 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026792584496326544 and 0.4248151238536434 m/s
20:13:56 DEBUG opendrift.models.basemodel:2123: 5856 active elements (144 deactivated)
20:13:56 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:56 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:56 INFO opendrift.models.basemodel:2035: 2024-12-11 19:11:28.612916 - step 96 of 120 - 5856 active elements (144 deactivated)
20:13:56 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:56 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:56 DEBUG opendrift.models.basemodel:2054: 34.37342203301488 <- latitude -> 35.18225693998147
20:13:56 DEBUG opendrift.models.basemodel:2059: 23.590265269014765 <- longitude -> 24.6501063763183
20:13:56 DEBUG opendrift.models.basemodel:2064: -65.72959878555004 <- z -> 0.0
20:13:56 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5856 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5856 elements
20:13:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5856 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5856 elements
20:13:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5856 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5856 elements
20:13:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 18:00:00 (before)
2024-12-11 21:00:00 (after)
20:13:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 18:00:00) in space (linearNDFast)
20:13:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 21:00:00) in space (linearNDFast)
20:13:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 18:00:00, weight 0.60) and
after (2024-12-11 21:00:00, weight 0.40) in time
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5856 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5856 elements
20:13:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 18:00:00 (before)
2024-12-11 21:00:00 (after)
20:13:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 18:00:00) in space (linearNDFast)
20:13:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 21:00:00) in space (linearNDFast)
20:13:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 18:00:00, weight 0.60) and
after (2024-12-11 21:00:00, weight 0.40) in time
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:56 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:56 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:56 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.523762 (min) 0.242578 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.279245 (min) 0.220125 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.41761 (min) 6.33979 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.37577 (min) -1.50773 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:56 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.175268, mean: 0.910672, max: 1.200430
20:13:56 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:56 DEBUG opendrift.models.physics_methods:1061: min: 2.280768, mean: 5.178036, max: 5.968950
20:13:56 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.280768, mean: 5.178036, max: 5.968950
20:13:56 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:56 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:56 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:56 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:56 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:56 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:56 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:56 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:56 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:56 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:56 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:56 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:56 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:56 DEBUG opendrift.models.physics_methods:1061: min: 2.280767, mean: 5.178393, max: 5.968950
20:13:56 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:56 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.254295, dN_50: 0.019957
20:13:56 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:56 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01761123661154265
20:13:56 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:56 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:56 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:56 DEBUG opendrift.models.physics_methods:915: Advecting 498 of 5855 elements above 0.100m with wind-sheared ocean current (0.004230 m/s - 0.201307 m/s)
20:13:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:56 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002917801126193435 and 0.49867877778668557 m/s
20:13:56 DEBUG opendrift.models.basemodel:2123: 5855 active elements (145 deactivated)
20:13:56 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:56 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:56 INFO opendrift.models.basemodel:2035: 2024-12-11 20:11:28.612916 - step 97 of 120 - 5855 active elements (145 deactivated)
20:13:56 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:56 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:56 DEBUG opendrift.models.basemodel:2054: 34.36448703718537 <- latitude -> 35.16983231476264
20:13:56 DEBUG opendrift.models.basemodel:2059: 23.58832014886427 <- longitude -> 24.657912886150314
20:13:56 DEBUG opendrift.models.basemodel:2064: -64.685549085148 <- z -> 0.0
20:13:56 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5855 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5855 elements
20:13:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5855 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5855 elements
20:13:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5855 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5855 elements
20:13:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 18:00:00 (before)
2024-12-11 21:00:00 (after)
20:13:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 18:00:00) in space (linearNDFast)
20:13:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 21:00:00) in space (linearNDFast)
20:13:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 18:00:00, weight 0.27) and
after (2024-12-11 21:00:00, weight 0.73) in time
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5855 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5855 elements
20:13:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 18:00:00 (before)
2024-12-11 21:00:00 (after)
20:13:56 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 18:00:00) in space (linearNDFast)
20:13:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:56 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-11 21:00:00) in space (linearNDFast)
20:13:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:56 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 18:00:00, weight 0.27) and
after (2024-12-11 21:00:00, weight 0.73) in time
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:56 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:56 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:56 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:56 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.546833 (min) 0.217876 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.303614 (min) 0.234323 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.20382 (min) 5.8199 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.56695 (min) -1.47157 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:56 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:56 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.123217, mean: 0.916134, max: 1.071933
20:13:56 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:56 DEBUG opendrift.models.physics_methods:1061: min: 1.912340, mean: 5.183912, max: 5.640446
20:13:56 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.912340, mean: 5.183912, max: 5.640446
20:13:56 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:56 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:56 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:56 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:13:56 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:56 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:56 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:13:56 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:56 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:56 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:56 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:56 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:56 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:56 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:56 DEBUG opendrift.models.physics_methods:1061: min: 1.912340, mean: 5.184393, max: 5.640446
20:13:56 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:56 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.256271, dN_50: 0.020112
20:13:56 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:56 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.015726539898680742
20:13:56 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:56 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:56 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:56 DEBUG opendrift.models.physics_methods:915: Advecting 500 of 5854 elements above 0.100m with wind-sheared ocean current (0.002590 m/s - 0.193533 m/s)
20:13:56 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:56 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0013550109794711062 and 0.43649485321549786 m/s
20:13:56 DEBUG opendrift.models.basemodel:2123: 5854 active elements (146 deactivated)
20:13:56 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:56 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:56 INFO opendrift.models.basemodel:2035: 2024-12-11 21:11:28.612916 - step 98 of 120 - 5854 active elements (146 deactivated)
20:13:56 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:56 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:56 DEBUG opendrift.models.basemodel:2054: 34.35391395068112 <- latitude -> 35.17004546855288
20:13:56 DEBUG opendrift.models.basemodel:2059: 23.590140367307015 <- longitude -> 24.66905333704739
20:13:56 DEBUG opendrift.models.basemodel:2064: -64.3092107425243 <- z -> 0.0
20:13:56 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5854 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5854 elements
20:13:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5854 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5854 elements
20:13:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:56 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:56 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:56 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:56 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:56 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:56 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:56 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5854 elements
20:13:56 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5854 elements
20:13:56 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:56 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 21:00:00 (before)
2024-12-12 00:00:00 (after)
20:13:56 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:13:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:13:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:13:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:13:58 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:58 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x29x18) for time after (2024-12-12 00:00:00)
20:13:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 21:00:00) in space (linearNDFast)
20:13:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 00:00:00) in space (linearNDFast)
20:13:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
20:13:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 21:00:00, weight 0.94) and
after (2024-12-12 00:00:00, weight 0.06) in time
20:13:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:58 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 21:00:00 (before)
2024-12-12 00:00:00 (after)
20:13:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:13:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:13:58 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:13:58 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:13:58 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:13:58 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-12 00:00:00)
20:13:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 21:00:00) in space (linearNDFast)
20:13:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 00:00:00) in space (linearNDFast)
20:13:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 21:00:00, weight 0.94) and
after (2024-12-12 00:00:00, weight 0.06) in time
20:13:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:58 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:58 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.56837 (min) 0.185826 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.298879 (min) 0.258986 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.835275 (min) 5.29075 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.76306 (min) -1.44547 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:58 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.104177, mean: 0.917416, max: 1.096335
20:13:58 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:58 DEBUG opendrift.models.physics_methods:1061: min: 1.758395, mean: 5.179985, max: 5.704286
20:13:58 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.758395, mean: 5.179985, max: 5.704286
20:13:58 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:13:58 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:13:58 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:58 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:58 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:58 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:58 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:58 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:58 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:58 DEBUG opendrift.models.physics_methods:1061: min: 1.758395, mean: 5.179985, max: 5.704286
20:13:58 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:58 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.258868, dN_50: 0.020316
20:13:58 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:58 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.016084453261033492
20:13:58 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:58 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:58 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:58 DEBUG opendrift.models.physics_methods:915: Advecting 503 of 5854 elements above 0.100m with wind-sheared ocean current (0.028924 m/s - 0.200274 m/s)
20:13:58 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:58 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003457512695745065 and 0.4368614714111445 m/s
20:13:58 DEBUG opendrift.models.basemodel:2123: 5854 active elements (146 deactivated)
20:13:58 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:58 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:58 INFO opendrift.models.basemodel:2035: 2024-12-11 22:11:28.612916 - step 99 of 120 - 5854 active elements (146 deactivated)
20:13:58 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:58 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:58 DEBUG opendrift.models.basemodel:2054: 34.34385661295801 <- latitude -> 35.173146435538996
20:13:58 DEBUG opendrift.models.basemodel:2059: 23.59606851409986 <- longitude -> 24.679774900770543
20:13:58 DEBUG opendrift.models.basemodel:2064: -62.98105576269092 <- z -> 0.0
20:13:58 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:58 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:58 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 21:00:00 (before)
2024-12-12 00:00:00 (after)
20:13:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 21:00:00) in space (linearNDFast)
20:13:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 00:00:00) in space (linearNDFast)
20:13:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 21:00:00, weight 0.60) and
after (2024-12-12 00:00:00, weight 0.40) in time
20:13:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:58 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:58 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:58 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5854 elements
20:13:58 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:58 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 21:00:00 (before)
2024-12-12 00:00:00 (after)
20:13:58 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 21:00:00) in space (linearNDFast)
20:13:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:58 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 00:00:00) in space (linearNDFast)
20:13:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:58 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 21:00:00, weight 0.60) and
after (2024-12-12 00:00:00, weight 0.40) in time
20:13:58 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:58 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:58 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:58 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:58 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:58 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:58 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:58 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.574327 (min) 0.150789 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.313484 (min) 0.253545 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.39712 (min) 4.95577 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.86436 (min) -1.34523 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:58 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:58 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.074737, mean: 0.877445, max: 1.103455
20:13:58 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:58 DEBUG opendrift.models.physics_methods:1061: min: 1.489355, mean: 5.058719, max: 5.722778
20:13:58 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.489355, mean: 5.058719, max: 5.722778
20:13:58 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:13:58 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:13:58 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:13:58 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:13:58 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:13:58 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:13:58 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:13:58 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:13:58 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:13:58 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:13:58 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:13:58 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:13:58 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:13:58 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:13:58 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:13:58 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:13:58 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:13:58 DEBUG opendrift.models.physics_methods:1061: min: 1.500870, mean: 5.059920, max: 5.722778
20:13:58 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:13:58 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.266033, dN_50: 0.020878
20:13:58 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:13:58 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01618887668272073
20:13:58 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:13:58 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:13:58 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:13:59 DEBUG opendrift.models.physics_methods:915: Advecting 501 of 5852 elements above 0.100m with wind-sheared ocean current (0.019325 m/s - 0.200924 m/s)
20:13:59 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:13:59 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002988372783510682 and 0.3988235413352312 m/s
20:13:59 DEBUG opendrift.models.basemodel:2123: 5852 active elements (148 deactivated)
20:13:59 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:13:59 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:13:59 INFO opendrift.models.basemodel:2035: 2024-12-11 23:11:28.612916 - step 100 of 120 - 5852 active elements (148 deactivated)
20:13:59 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:13:59 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:13:59 DEBUG opendrift.models.basemodel:2054: 34.3345495738207 <- latitude -> 35.1714469423801
20:13:59 DEBUG opendrift.models.basemodel:2059: 23.58657709279905 <- longitude -> 24.68529703003898
20:13:59 DEBUG opendrift.models.basemodel:2064: -62.39786804974867 <- z -> 0.0
20:13:59 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:13:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:13:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5852 elements
20:13:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5852 elements
20:13:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:13:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:13:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5852 elements
20:13:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5852 elements
20:13:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:13:59 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:13:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:13:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:13:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5852 elements
20:13:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5852 elements
20:13:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 21:00:00 (before)
2024-12-12 00:00:00 (after)
20:13:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 21:00:00) in space (linearNDFast)
20:13:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:59 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 00:00:00) in space (linearNDFast)
20:13:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:59 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 21:00:00, weight 0.27) and
after (2024-12-12 00:00:00, weight 0.73) in time
20:13:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:59 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:13:59 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:13:59 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5852 elements
20:13:59 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5852 elements
20:13:59 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:13:59 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-11 21:00:00 (before)
2024-12-12 00:00:00 (after)
20:13:59 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-11 21:00:00) in space (linearNDFast)
20:13:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:59 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 00:00:00) in space (linearNDFast)
20:13:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:13:59 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-11 21:00:00, weight 0.27) and
after (2024-12-12 00:00:00, weight 0.73) in time
20:13:59 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:13:59 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:13:59 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:13:59 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:13:59 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:13:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:13:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:13:59 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:13:59 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:13:59 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.581061 (min) 0.113599 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.346039 (min) 0.251718 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.99774 (min) 4.90823 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: y_wind: -4.95732 (min) -1.23656 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:13:59 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:13:59 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.050618, mean: 0.842321, max: 1.103687
20:13:59 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:13:59 DEBUG opendrift.models.physics_methods:1061: min: 1.225690, mean: 4.949879, max: 5.723380
20:13:59 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.225690, mean: 4.949879, max: 5.723380
20:13:59 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:13:59 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:13:59 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:00 INFO opendrift.export.io_netcdf:121: Wrote 100 steps to file oil.nc
20:14:00 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:00 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:00 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:00 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:00 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:00 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:00 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:00 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:00 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:00 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:00 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:00 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:00 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:00 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:00 DEBUG opendrift.models.physics_methods:1061: min: 1.225690, mean: 4.950497, max: 5.723380
20:14:00 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:00 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.273074, dN_50: 0.021431
20:14:00 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:00 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01619228418941623
20:14:00 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:00 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:00 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:00 DEBUG opendrift.models.physics_methods:915: Advecting 504 of 5851 elements above 0.100m with wind-sheared ocean current (0.043033 m/s - 0.200945 m/s)
20:14:00 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:00 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0021651568539842085 and 0.4368224995966522 m/s
20:14:00 DEBUG opendrift.models.basemodel:2123: 5851 active elements (149 deactivated)
20:14:00 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:00 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:00 INFO opendrift.models.basemodel:2035: 2024-12-12 00:11:28.612916 - step 101 of 120 - 5851 active elements (149 deactivated)
20:14:00 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:00 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:00 DEBUG opendrift.models.basemodel:2054: 34.33086008481503 <- latitude -> 35.17142868552021
20:14:00 DEBUG opendrift.models.basemodel:2059: 23.584358617685382 <- longitude -> 24.68820393679916
20:14:00 DEBUG opendrift.models.basemodel:2064: -61.35166816680459 <- z -> 0.0
20:14:00 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5851 elements
20:14:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5851 elements
20:14:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5851 elements
20:14:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5851 elements
20:14:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:00 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:00 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:00 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:00 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:00 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:00 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:00 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5851 elements
20:14:00 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5851 elements
20:14:00 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:00 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 00:00:00 (before)
2024-12-12 03:00:00 (after)
20:14:00 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:14:02 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:14:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:04 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:14:04 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:14:04 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:04 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 22x29x18) for time after (2024-12-12 03:00:00)
20:14:04 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 00:00:00) in space (linearNDFast)
20:14:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:04 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 03:00:00) in space (linearNDFast)
20:14:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
20:14:04 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 00:00:00, weight 0.94) and
after (2024-12-12 03:00:00, weight 0.06) in time
20:14:04 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:04 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:04 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:04 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:04 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:04 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:04 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:04 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5851 elements
20:14:04 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5851 elements
20:14:04 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:04 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 00:00:00 (before)
2024-12-12 03:00:00 (after)
20:14:04 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:14:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:14:05 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:05 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:14:05 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:14:05 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-12 03:00:00)
20:14:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 00:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 03:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 00:00:00, weight 0.94) and
after (2024-12-12 03:00:00, weight 0.06) in time
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:05 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:05 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.590151 (min) 0.0952268 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.35603 (min) 0.266163 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.39712 (min) 4.87421 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.09868 (min) -1.0113 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:05 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.034291, mean: 0.811271, max: 1.139330
20:14:05 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:05 DEBUG opendrift.models.physics_methods:1061: min: 1.008832, mean: 4.849979, max: 5.815063
20:14:05 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.008832, mean: 4.849979, max: 5.815063
20:14:05 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:14:05 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:14:05 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:05 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:05 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:05 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:05 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:05 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:05 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:05 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:05 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:05 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:05 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:05 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:05 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:05 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:05 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:05 DEBUG opendrift.models.physics_methods:1061: min: 1.008832, mean: 4.850601, max: 5.815063
20:14:05 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:05 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.279385, dN_50: 0.021926
20:14:05 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:05 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.016715074690277495
20:14:05 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:05 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:05 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:05 DEBUG opendrift.models.physics_methods:915: Advecting 513 of 5850 elements above 0.100m with wind-sheared ocean current (0.022413 m/s - 0.204164 m/s)
20:14:05 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:05 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0046747520294681605 and 0.4315247723393022 m/s
20:14:05 DEBUG opendrift.models.basemodel:2123: 5850 active elements (150 deactivated)
20:14:05 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:05 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:05 INFO opendrift.models.basemodel:2035: 2024-12-12 01:11:28.612916 - step 102 of 120 - 5850 active elements (150 deactivated)
20:14:05 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:05 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:05 DEBUG opendrift.models.basemodel:2054: 34.324472905438014 <- latitude -> 35.17013507055379
20:14:05 DEBUG opendrift.models.basemodel:2059: 23.582788827015708 <- longitude -> 24.68798627928579
20:14:05 DEBUG opendrift.models.basemodel:2064: -60.44457971656446 <- z -> 0.0
20:14:05 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:05 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 00:00:00 (before)
2024-12-12 03:00:00 (after)
20:14:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 00:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 03:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 00:00:00, weight 0.60) and
after (2024-12-12 03:00:00, weight 0.40) in time
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 00:00:00 (before)
2024-12-12 03:00:00 (after)
20:14:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 00:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 03:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 00:00:00, weight 0.60) and
after (2024-12-12 03:00:00, weight 0.40) in time
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:05 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:05 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.573195 (min) 0.0993402 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.310563 (min) 0.263614 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: x_wind: -2.19578 (min) 4.72766 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.3732 (min) -0.573264 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:05 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.028687, mean: 0.788891, max: 1.220251
20:14:05 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:05 DEBUG opendrift.models.physics_methods:1061: min: 0.922719, mean: 4.762723, max: 6.018027
20:14:05 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.922719, mean: 4.762723, max: 6.018027
20:14:05 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:14:05 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:14:05 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:05 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:05 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:05 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:05 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:05 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:05 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:05 DEBUG opendrift.models.physics_methods:1061: min: 0.922719, mean: 4.762723, max: 6.018027
20:14:05 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:05 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.283181, dN_50: 0.022224
20:14:05 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:05 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.017901958807208518
20:14:05 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:05 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:05 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:05 DEBUG opendrift.models.physics_methods:915: Advecting 518 of 5850 elements above 0.100m with wind-sheared ocean current (0.006931 m/s - 0.211290 m/s)
20:14:05 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:05 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0014440359586312336 and 0.4331753135453001 m/s
20:14:05 DEBUG opendrift.models.basemodel:2123: 5850 active elements (150 deactivated)
20:14:05 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:05 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:05 INFO opendrift.models.basemodel:2035: 2024-12-12 02:11:28.612916 - step 103 of 120 - 5850 active elements (150 deactivated)
20:14:05 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:05 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:05 DEBUG opendrift.models.basemodel:2054: 34.31606812598156 <- latitude -> 35.17070254629544
20:14:05 DEBUG opendrift.models.basemodel:2059: 23.581893116742904 <- longitude -> 24.68243684250818
20:14:05 DEBUG opendrift.models.basemodel:2064: -59.2468466921996 <- z -> 0.0
20:14:05 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:05 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 00:00:00 (before)
2024-12-12 03:00:00 (after)
20:14:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 00:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 03:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 00:00:00, weight 0.27) and
after (2024-12-12 03:00:00, weight 0.73) in time
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:05 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:05 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5850 elements
20:14:05 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:05 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 00:00:00 (before)
2024-12-12 03:00:00 (after)
20:14:05 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 00:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 03:00:00) in space (linearNDFast)
20:14:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:05 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 00:00:00, weight 0.27) and
after (2024-12-12 03:00:00, weight 0.73) in time
20:14:05 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:05 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:05 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:05 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:05 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:05 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:05 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.546025 (min) 0.0947571 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.300402 (min) 0.255476 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.97766 (min) 4.64248 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.72017 (min) -0.0348144 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:05 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:05 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.008099, mean: 0.781008, max: 1.328148
20:14:05 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:05 DEBUG opendrift.models.physics_methods:1061: min: 0.490275, mean: 4.710735, max: 6.278456
20:14:05 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.490275, mean: 4.710735, max: 6.278456
20:14:05 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:14:05 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:14:05 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:05 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:05 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:05 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:05 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:05 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:05 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:05 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:05 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:05 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:05 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:05 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:05 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:05 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:05 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:05 DEBUG opendrift.models.physics_methods:1061: min: 0.490275, mean: 4.711190, max: 6.278456
20:14:05 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:05 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.287374, dN_50: 0.022553
20:14:05 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:05 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.019484520909326085
20:14:05 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:05 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:05 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:06 DEBUG opendrift.models.physics_methods:915: Advecting 516 of 5849 elements above 0.100m with wind-sheared ocean current (0.014975 m/s - 0.220433 m/s)
20:14:06 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:06 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0009252091236969971 and 0.4382949069250813 m/s
20:14:06 DEBUG opendrift.models.basemodel:2123: 5849 active elements (151 deactivated)
20:14:06 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:06 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:06 INFO opendrift.models.basemodel:2035: 2024-12-12 03:11:28.612916 - step 104 of 120 - 5849 active elements (151 deactivated)
20:14:06 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:06 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:06 DEBUG opendrift.models.basemodel:2054: 34.30707401824681 <- latitude -> 35.177464958850216
20:14:06 DEBUG opendrift.models.basemodel:2059: 23.580140323915142 <- longitude -> 24.685421531786805
20:14:06 DEBUG opendrift.models.basemodel:2064: -58.16163696957134 <- z -> 0.0
20:14:06 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements
20:14:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5849 elements
20:14:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements
20:14:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5849 elements
20:14:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:06 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:06 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:06 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:06 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:06 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:06 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:06 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements
20:14:06 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5849 elements
20:14:06 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:06 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 03:00:00 (before)
2024-12-12 06:00:00 (after)
20:14:06 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:14:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:14:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:07 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:14:07 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:14:07 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:07 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 22x30x17) for time after (2024-12-12 06:00:00)
20:14:07 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 03:00:00) in space (linearNDFast)
20:14:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:07 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 06:00:00) in space (linearNDFast)
20:14:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 1
20:14:07 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 03:00:00, weight 0.94) and
after (2024-12-12 06:00:00, weight 0.06) in time
20:14:07 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:07 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:07 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:07 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:07 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:07 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:07 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:07 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements
20:14:07 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5849 elements
20:14:07 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:07 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 03:00:00 (before)
2024-12-12 06:00:00 (after)
20:14:07 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:14:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:14:08 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:08 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:14:08 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:14:08 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-12 06:00:00)
20:14:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 03:00:00) in space (linearNDFast)
20:14:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:08 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 06:00:00) in space (linearNDFast)
20:14:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:08 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 03:00:00, weight 0.94) and
after (2024-12-12 06:00:00, weight 0.06) in time
20:14:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:08 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:08 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:08 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:08 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.531244 (min) 0.104075 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.286447 (min) 0.251229 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.76654 (min) 4.62084 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.99997 (min) 0.469717 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:08 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000167, mean: 0.778414, max: 1.407016
20:14:08 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:08 DEBUG opendrift.models.physics_methods:1061: min: 0.070388, mean: 4.674608, max: 6.462180
20:14:08 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.070388, mean: 4.674608, max: 6.462180
20:14:08 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:14:08 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:14:08 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:08 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:08 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:08 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:08 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:08 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:08 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:08 DEBUG opendrift.models.physics_methods:1061: min: 0.070388, mean: 4.674608, max: 6.462181
20:14:08 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:08 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.294987, dN_50: 0.023151
20:14:08 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:08 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.020641289224712384
20:14:08 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:08 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:08 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:08 DEBUG opendrift.models.physics_methods:915: Advecting 525 of 5849 elements above 0.100m with wind-sheared ocean current (0.002471 m/s - 0.226884 m/s)
20:14:08 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:08 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0032618639873631568 and 0.44979635417892366 m/s
20:14:08 DEBUG opendrift.models.basemodel:2123: 5849 active elements (151 deactivated)
20:14:08 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:08 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:08 INFO opendrift.models.basemodel:2035: 2024-12-12 04:11:28.612916 - step 105 of 120 - 5849 active elements (151 deactivated)
20:14:08 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:08 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:08 DEBUG opendrift.models.basemodel:2054: 34.2980175859521 <- latitude -> 35.178589013742595
20:14:08 DEBUG opendrift.models.basemodel:2059: 23.5834376703422 <- longitude -> 24.68571143785348
20:14:08 DEBUG opendrift.models.basemodel:2064: -56.99685598523014 <- z -> 0.0
20:14:08 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements
20:14:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5849 elements
20:14:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements
20:14:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5849 elements
20:14:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:08 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements
20:14:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5849 elements
20:14:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 03:00:00 (before)
2024-12-12 06:00:00 (after)
20:14:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 03:00:00) in space (linearNDFast)
20:14:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:08 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 06:00:00) in space (linearNDFast)
20:14:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:08 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 03:00:00, weight 0.60) and
after (2024-12-12 06:00:00, weight 0.40) in time
20:14:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5849 elements
20:14:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5849 elements
20:14:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 03:00:00 (before)
2024-12-12 06:00:00 (after)
20:14:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 03:00:00) in space (linearNDFast)
20:14:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:08 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 06:00:00) in space (linearNDFast)
20:14:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:08 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 03:00:00, weight 0.60) and
after (2024-12-12 06:00:00, weight 0.40) in time
20:14:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:08 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:08 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:08 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:08 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:08 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.534933 (min) 0.115309 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.256535 (min) 0.244171 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.27907 (min) 4.77688 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.77354 (min) 0.770176 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:08 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:08 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000036, mean: 0.744872, max: 1.381346
20:14:08 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:08 DEBUG opendrift.models.physics_methods:1061: min: 0.032843, mean: 4.560985, max: 6.402960
20:14:08 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.032843, mean: 4.560985, max: 6.402960
20:14:08 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:14:08 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:14:08 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:08 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:08 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:08 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:08 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:08 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:08 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:08 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:08 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:08 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:08 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:08 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:08 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:08 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:08 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:08 DEBUG opendrift.models.physics_methods:1061: min: 0.032843, mean: 4.561605, max: 6.402960
20:14:08 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:08 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.301981, dN_50: 0.023700
20:14:08 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:08 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.02026477824433711
20:14:08 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:08 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:08 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:08 DEBUG opendrift.models.physics_methods:915: Advecting 530 of 5848 elements above 0.100m with wind-sheared ocean current (0.001153 m/s - 0.224804 m/s)
20:14:08 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:08 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026790299629572438 and 0.4638574148670171 m/s
20:14:08 DEBUG opendrift.models.basemodel:2123: 5848 active elements (152 deactivated)
20:14:08 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:08 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:08 INFO opendrift.models.basemodel:2035: 2024-12-12 05:11:28.612916 - step 106 of 120 - 5848 active elements (152 deactivated)
20:14:08 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:08 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:08 DEBUG opendrift.models.basemodel:2054: 34.28615391446272 <- latitude -> 35.185309885187465
20:14:08 DEBUG opendrift.models.basemodel:2059: 23.584538196036416 <- longitude -> 24.677910732716754
20:14:08 DEBUG opendrift.models.basemodel:2064: -56.08348204775152 <- z -> 0.0
20:14:08 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5848 elements
20:14:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5848 elements
20:14:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5848 elements
20:14:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5848 elements
20:14:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:08 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:08 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:08 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:08 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:08 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:08 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:08 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5848 elements
20:14:08 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5848 elements
20:14:08 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:08 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 03:00:00 (before)
2024-12-12 06:00:00 (after)
20:14:08 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 03:00:00) in space (linearNDFast)
20:14:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 06:00:00) in space (linearNDFast)
20:14:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 03:00:00, weight 0.27) and
after (2024-12-12 06:00:00, weight 0.73) in time
20:14:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5848 elements
20:14:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5848 elements
20:14:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 03:00:00 (before)
2024-12-12 06:00:00 (after)
20:14:09 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 03:00:00) in space (linearNDFast)
20:14:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:09 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 06:00:00) in space (linearNDFast)
20:14:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:09 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 03:00:00, weight 0.27) and
after (2024-12-12 06:00:00, weight 0.73) in time
20:14:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:09 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:09 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:09 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:09 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:09 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.519879 (min) 0.118907 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.264773 (min) 0.239863 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.859426 (min) 4.90814 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.52018 (min) 1.07974 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:09 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:09 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000256, mean: 0.715949, max: 1.336455
20:14:09 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:09 DEBUG opendrift.models.physics_methods:1061: min: 0.087097, mean: 4.460722, max: 6.298058
20:14:09 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.087097, mean: 4.460722, max: 6.298058
20:14:09 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:14:09 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:14:09 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:09 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:09 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:09 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:09 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:09 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:09 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:09 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:09 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:09 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:09 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:09 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:09 DEBUG opendrift.models.physics_methods:1061: min: 0.087097, mean: 4.461354, max: 6.298058
20:14:09 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:09 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.310149, dN_50: 0.024340
20:14:09 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:09 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.019606346765621698
20:14:09 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:09 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:09 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:09 DEBUG opendrift.models.physics_methods:915: Advecting 531 of 5847 elements above 0.100m with wind-sheared ocean current (0.005656 m/s - 0.221121 m/s)
20:14:09 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:09 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0022469647680494233 and 0.5427104454972128 m/s
20:14:09 DEBUG opendrift.models.basemodel:2123: 5847 active elements (153 deactivated)
20:14:09 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:09 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:09 INFO opendrift.models.basemodel:2035: 2024-12-12 06:11:28.612916 - step 107 of 120 - 5847 active elements (153 deactivated)
20:14:09 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:09 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:09 DEBUG opendrift.models.basemodel:2054: 34.272560564080294 <- latitude -> 35.186571840901955
20:14:09 DEBUG opendrift.models.basemodel:2059: 23.587592403068165 <- longitude -> 24.683348357451784
20:14:09 DEBUG opendrift.models.basemodel:2064: -55.23444788230052 <- z -> 0.0
20:14:09 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5847 elements
20:14:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5847 elements
20:14:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5847 elements
20:14:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5847 elements
20:14:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:09 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:09 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:09 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:09 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:09 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:09 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:09 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5847 elements
20:14:09 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5847 elements
20:14:09 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:09 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 06:00:00 (before)
2024-12-12 09:00:00 (after)
20:14:09 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:14:11 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:14:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:12 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:14:12 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:14:12 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:12 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x31x17) for time after (2024-12-12 09:00:00)
20:14:12 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 06:00:00) in space (linearNDFast)
20:14:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:12 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 09:00:00) in space (linearNDFast)
20:14:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
20:14:12 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 06:00:00, weight 0.94) and
after (2024-12-12 09:00:00, weight 0.06) in time
20:14:12 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:12 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:12 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:12 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:12 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:12 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:12 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:12 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5847 elements
20:14:12 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5847 elements
20:14:12 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:12 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 06:00:00 (before)
2024-12-12 09:00:00 (after)
20:14:12 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:14:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:14:13 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:13 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:14:13 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:14:13 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-12 09:00:00)
20:14:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 06:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 09:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 06:00:00, weight 0.94) and
after (2024-12-12 09:00:00, weight 0.06) in time
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:13 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:13 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.520195 (min) 0.113726 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.272171 (min) 0.233604 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.531408 (min) 4.92819 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.37016 (min) 1.22472 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:13 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000640, mean: 0.705600, max: 1.303076
20:14:13 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:13 DEBUG opendrift.models.physics_methods:1061: min: 0.137840, mean: 4.421118, max: 6.218912
20:14:13 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.137840, mean: 4.421118, max: 6.218912
20:14:13 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:14:13 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:14:13 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:13 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:13 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:13 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:13 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:13 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:13 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:13 DEBUG opendrift.models.physics_methods:1061: min: 0.137840, mean: 4.421118, max: 6.218912
20:14:13 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:13 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.314147, dN_50: 0.024654
20:14:13 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:13 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.019116774607321238
20:14:13 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:13 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:13 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:13 DEBUG opendrift.models.physics_methods:915: Advecting 540 of 5847 elements above 0.100m with wind-sheared ocean current (0.011492 m/s - 0.216618 m/s)
20:14:13 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:13 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0028154965762995365 and 0.5106947528818382 m/s
20:14:13 DEBUG opendrift.models.basemodel:2123: 5847 active elements (153 deactivated)
20:14:13 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:13 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:13 INFO opendrift.models.basemodel:2035: 2024-12-12 07:11:28.612916 - step 108 of 120 - 5847 active elements (153 deactivated)
20:14:13 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:13 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:13 DEBUG opendrift.models.basemodel:2054: 34.25349113678038 <- latitude -> 35.18828733970594
20:14:13 DEBUG opendrift.models.basemodel:2059: 23.589925351682083 <- longitude -> 24.68552866704024
20:14:13 DEBUG opendrift.models.basemodel:2064: -54.052561821153716 <- z -> 0.0
20:14:13 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5847 elements
20:14:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5847 elements
20:14:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5847 elements
20:14:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5847 elements
20:14:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:13 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5847 elements
20:14:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5847 elements
20:14:13 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 06:00:00 (before)
2024-12-12 09:00:00 (after)
20:14:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 06:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 09:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 06:00:00, weight 0.60) and
after (2024-12-12 09:00:00, weight 0.40) in time
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5847 elements
20:14:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5847 elements
20:14:13 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 06:00:00 (before)
2024-12-12 09:00:00 (after)
20:14:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 06:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 09:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 06:00:00, weight 0.60) and
after (2024-12-12 09:00:00, weight 0.40) in time
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:13 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:13 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.518394 (min) 0.120561 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.27267 (min) 0.2134 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.462782 (min) 4.89953 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.66255 (min) 0.836775 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:13 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000078, mean: 0.756809, max: 1.360824
20:14:13 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:13 DEBUG opendrift.models.physics_methods:1061: min: 0.047984, mean: 4.584756, max: 6.355221
20:14:13 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.047984, mean: 4.584756, max: 6.355221
20:14:13 DEBUG opendrift.models.basemodel:662: 3 elements hit land, moving them to the coastline.
20:14:13 DEBUG opendrift.models.basemodel:1693: 3 elements scheduled for deactivation (stranded)
20:14:13 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:13 DEBUG opendrift.models.basemodel:1713: Removed 3 elements.
20:14:13 DEBUG opendrift.models.basemodel:1716: Removed 3 values from environment.
20:14:13 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:13 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:13 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:13 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:13 DEBUG opendrift.models.basemodel:1725: Removed 3 values from environment_profiles.
20:14:13 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:13 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:13 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:13 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:13 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:13 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:13 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:13 DEBUG opendrift.models.physics_methods:1061: min: 0.047984, mean: 4.586475, max: 6.355221
20:14:13 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:13 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.311792, dN_50: 0.024469
20:14:13 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:13 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.019963787695592455
20:14:13 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:13 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:13 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:13 DEBUG opendrift.models.physics_methods:915: Advecting 544 of 5844 elements above 0.100m with wind-sheared ocean current (0.006648 m/s - 0.222501 m/s)
20:14:13 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:13 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0023983081297229043 and 0.4337603038750718 m/s
20:14:13 DEBUG opendrift.models.basemodel:2123: 5844 active elements (156 deactivated)
20:14:13 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:13 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:13 INFO opendrift.models.basemodel:2035: 2024-12-12 08:11:28.612916 - step 109 of 120 - 5844 active elements (156 deactivated)
20:14:13 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:13 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:13 DEBUG opendrift.models.basemodel:2054: 34.23710665673329 <- latitude -> 35.190046931501115
20:14:13 DEBUG opendrift.models.basemodel:2059: 23.593491988409433 <- longitude -> 24.677566490856904
20:14:13 DEBUG opendrift.models.basemodel:2064: -53.01812376574067 <- z -> 0.0
20:14:13 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5844 elements
20:14:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5844 elements
20:14:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5844 elements
20:14:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5844 elements
20:14:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:13 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5844 elements
20:14:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5844 elements
20:14:13 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 06:00:00 (before)
2024-12-12 09:00:00 (after)
20:14:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 06:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 09:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 06:00:00, weight 0.27) and
after (2024-12-12 09:00:00, weight 0.73) in time
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:13 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:13 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5844 elements
20:14:13 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5844 elements
20:14:13 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:13 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 06:00:00 (before)
2024-12-12 09:00:00 (after)
20:14:13 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 06:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 09:00:00) in space (linearNDFast)
20:14:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:13 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 06:00:00, weight 0.27) and
after (2024-12-12 09:00:00, weight 0.73) in time
20:14:13 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:13 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:13 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:13 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:13 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:13 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:13 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.517365 (min) 0.13425 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.27429 (min) 0.198618 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.387713 (min) 4.8447 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.94586 (min) 0.438229 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:13 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:13 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000766, mean: 0.810020, max: 1.435277
20:14:13 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:13 DEBUG opendrift.models.physics_methods:1061: min: 0.150825, mean: 4.751767, max: 6.526758
20:14:13 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.150825, mean: 4.751767, max: 6.526758
20:14:13 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:14:13 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:14:13 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:13 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:14:13 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:14:13 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:13 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:13 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:13 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:13 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:14:13 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:13 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:13 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:13 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:13 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:13 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:13 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:13 DEBUG opendrift.models.physics_methods:1061: min: 0.150825, mean: 4.752972, max: 6.526758
20:14:13 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:13 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.306482, dN_50: 0.024053
20:14:13 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:13 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.021055806332534642
20:14:13 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:13 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:13 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:14 DEBUG opendrift.models.physics_methods:915: Advecting 540 of 5842 elements above 0.100m with wind-sheared ocean current (0.005295 m/s - 0.226727 m/s)
20:14:14 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:14 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0020031602814175407 and 0.46378006887739054 m/s
20:14:14 DEBUG opendrift.models.basemodel:2123: 5842 active elements (158 deactivated)
20:14:14 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:14 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:14 INFO opendrift.models.basemodel:2035: 2024-12-12 09:11:28.612916 - step 110 of 120 - 5842 active elements (158 deactivated)
20:14:14 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:14 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:14 DEBUG opendrift.models.basemodel:2054: 34.21819773978116 <- latitude -> 35.188895039049655
20:14:14 DEBUG opendrift.models.basemodel:2059: 23.5928256802116 <- longitude -> 24.677243588564856
20:14:14 DEBUG opendrift.models.basemodel:2064: -52.340062866060926 <- z -> 0.0
20:14:14 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5842 elements
20:14:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5842 elements
20:14:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:14 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5842 elements
20:14:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5842 elements
20:14:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:14 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:14 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:14 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:14 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:14 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:14 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:14 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5842 elements
20:14:14 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5842 elements
20:14:14 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:14 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 09:00:00 (before)
2024-12-12 12:00:00 (after)
20:14:14 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:14:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:14:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:16 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:14:16 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:14:16 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:16 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 21x32x17) for time after (2024-12-12 12:00:00)
20:14:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 09:00:00) in space (linearNDFast)
20:14:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 12:00:00) in space (linearNDFast)
20:14:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
20:14:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 09:00:00, weight 0.94) and
after (2024-12-12 12:00:00, weight 0.06) in time
20:14:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:16 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 09:00:00 (before)
2024-12-12 12:00:00 (after)
20:14:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:14:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:14:16 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:16 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:14:16 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:14:16 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-12 12:00:00)
20:14:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 09:00:00) in space (linearNDFast)
20:14:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 12:00:00) in space (linearNDFast)
20:14:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 09:00:00, weight 0.94) and
after (2024-12-12 12:00:00, weight 0.06) in time
20:14:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:16 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:16 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:16 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:16 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.528863 (min) 0.138976 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.274001 (min) 0.186526 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: x_wind: -0.172009 (min) 4.70046 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.15923 (min) -0.0425978 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:16 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.000574, mean: 0.850365, max: 1.462386
20:14:16 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:16 DEBUG opendrift.models.physics_methods:1061: min: 0.130474, mean: 4.880562, max: 6.588106
20:14:16 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.130474, mean: 4.880562, max: 6.588106
20:14:16 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:14:16 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:14:16 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:16 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:16 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:16 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:16 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:16 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:16 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:16 DEBUG opendrift.models.physics_methods:1061: min: 0.130474, mean: 4.880562, max: 6.588106
20:14:16 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:16 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.304000, dN_50: 0.023858
20:14:16 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:16 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.021453419880241447
20:14:16 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:16 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:16 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:16 DEBUG opendrift.models.physics_methods:915: Advecting 549 of 5842 elements above 0.100m with wind-sheared ocean current (0.004581 m/s - 0.230637 m/s)
20:14:16 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:16 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0007520735950576016 and 0.4707704592218607 m/s
20:14:16 DEBUG opendrift.models.basemodel:2123: 5842 active elements (158 deactivated)
20:14:16 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:16 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:16 INFO opendrift.models.basemodel:2035: 2024-12-12 10:11:28.612916 - step 111 of 120 - 5842 active elements (158 deactivated)
20:14:16 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:16 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:16 DEBUG opendrift.models.basemodel:2054: 34.207727834800295 <- latitude -> 35.18831892079697
20:14:16 DEBUG opendrift.models.basemodel:2059: 23.595575685825406 <- longitude -> 24.67909654121895
20:14:16 DEBUG opendrift.models.basemodel:2064: -51.475674579119094 <- z -> 0.0
20:14:16 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:16 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:16 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 09:00:00 (before)
2024-12-12 12:00:00 (after)
20:14:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 09:00:00) in space (linearNDFast)
20:14:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 12:00:00) in space (linearNDFast)
20:14:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 09:00:00, weight 0.60) and
after (2024-12-12 12:00:00, weight 0.40) in time
20:14:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:16 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:16 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:16 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5842 elements
20:14:16 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:16 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 09:00:00 (before)
2024-12-12 12:00:00 (after)
20:14:16 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 09:00:00) in space (linearNDFast)
20:14:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:16 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 12:00:00) in space (linearNDFast)
20:14:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:16 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 09:00:00, weight 0.60) and
after (2024-12-12 12:00:00, weight 0.40) in time
20:14:16 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:16 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:16 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:16 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:16 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:16 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:16 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:16 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.526979 (min) 0.132456 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.258529 (min) 0.176527 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.64853 (min) 4.06574 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.13603 (min) -0.160732 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:16 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:16 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.010982, mean: 0.834691, max: 1.331913
20:14:16 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:16 DEBUG opendrift.models.physics_methods:1061: min: 0.570916, mean: 4.856626, max: 6.287348
20:14:16 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.570916, mean: 4.856626, max: 6.287348
20:14:16 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:14:16 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:14:16 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:16 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:14:16 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:14:16 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:16 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:16 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:16 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:16 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:14:16 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:16 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:16 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:16 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:16 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:16 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:16 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:16 DEBUG opendrift.models.physics_methods:1061: min: 0.570916, mean: 4.857892, max: 6.287348
20:14:16 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:16 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.308807, dN_50: 0.024235
20:14:16 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:16 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01953973556256794
20:14:16 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:16 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:16 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:17 DEBUG opendrift.models.physics_methods:915: Advecting 555 of 5840 elements above 0.100m with wind-sheared ocean current (0.008008 m/s - 0.220745 m/s)
20:14:17 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:17 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002460573106613233 and 0.4566005230150581 m/s
20:14:17 DEBUG opendrift.models.basemodel:2123: 5840 active elements (160 deactivated)
20:14:17 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:17 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:17 INFO opendrift.models.basemodel:2035: 2024-12-12 11:11:28.612916 - step 112 of 120 - 5840 active elements (160 deactivated)
20:14:17 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:17 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:17 DEBUG opendrift.models.basemodel:2054: 34.198452184893334 <- latitude -> 35.19250107387844
20:14:17 DEBUG opendrift.models.basemodel:2059: 23.59319972823654 <- longitude -> 24.678891955963827
20:14:17 DEBUG opendrift.models.basemodel:2064: -51.02053678575873 <- z -> 0.0
20:14:17 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5840 elements
20:14:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5840 elements
20:14:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5840 elements
20:14:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5840 elements
20:14:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:17 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5840 elements
20:14:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5840 elements
20:14:17 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 09:00:00 (before)
2024-12-12 12:00:00 (after)
20:14:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 09:00:00) in space (linearNDFast)
20:14:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:17 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 12:00:00) in space (linearNDFast)
20:14:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:17 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 09:00:00, weight 0.27) and
after (2024-12-12 12:00:00, weight 0.73) in time
20:14:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5840 elements
20:14:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5840 elements
20:14:17 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 09:00:00 (before)
2024-12-12 12:00:00 (after)
20:14:17 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 09:00:00) in space (linearNDFast)
20:14:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:17 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 12:00:00) in space (linearNDFast)
20:14:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:17 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 09:00:00, weight 0.27) and
after (2024-12-12 12:00:00, weight 0.73) in time
20:14:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:17 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:17 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:17 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:17 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:17 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.523957 (min) 0.133869 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.268176 (min) 0.163626 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.802719 (min) 3.49588 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.1167 (min) -0.10261 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:17 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:17 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.035677, mean: 0.823696, max: 1.218653
20:14:17 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:17 DEBUG opendrift.models.physics_methods:1061: min: 1.029016, mean: 4.848397, max: 6.014086
20:14:17 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.029016, mean: 4.848397, max: 6.014086
20:14:17 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:14:17 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:14:17 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:17 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:17 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:17 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:17 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:17 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:17 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:17 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:17 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:17 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:17 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:17 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:17 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:17 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:17 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:17 DEBUG opendrift.models.physics_methods:1061: min: 1.029016, mean: 4.848963, max: 6.014086
20:14:17 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:17 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.312880, dN_50: 0.024555
20:14:17 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:17 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.017878524045692738
20:14:17 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:17 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:17 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:17 DEBUG opendrift.models.physics_methods:915: Advecting 556 of 5839 elements above 0.100m with wind-sheared ocean current (0.019135 m/s - 0.211151 m/s)
20:14:17 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:17 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003272418296688892 and 0.43563347353433485 m/s
20:14:17 DEBUG opendrift.models.basemodel:2123: 5839 active elements (161 deactivated)
20:14:17 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:17 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:17 INFO opendrift.models.basemodel:2035: 2024-12-12 12:11:28.612916 - step 113 of 120 - 5839 active elements (161 deactivated)
20:14:17 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:17 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:17 DEBUG opendrift.models.basemodel:2054: 34.19253728517941 <- latitude -> 35.189069380786776
20:14:17 DEBUG opendrift.models.basemodel:2059: 23.586045125089775 <- longitude -> 24.680338442447727
20:14:17 DEBUG opendrift.models.basemodel:2064: -49.60003379089894 <- z -> 0.0
20:14:17 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5839 elements
20:14:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5839 elements
20:14:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5839 elements
20:14:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5839 elements
20:14:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:17 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:17 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:17 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:17 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:17 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:17 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:17 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5839 elements
20:14:17 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5839 elements
20:14:17 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:17 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 12:00:00 (before)
2024-12-12 15:00:00 (after)
20:14:17 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:14:19 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:14:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:14:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:14:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:21 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 22x33x16) for time after (2024-12-12 15:00:00)
20:14:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 12:00:00) in space (linearNDFast)
20:14:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 15:00:00) in space (linearNDFast)
20:14:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 1
20:14:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 12:00:00, weight 0.94) and
after (2024-12-12 15:00:00, weight 0.06) in time
20:14:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:21 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 12:00:00 (before)
2024-12-12 15:00:00 (after)
20:14:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:14:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:14:21 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:21 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:14:21 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:14:21 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-12 15:00:00)
20:14:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 12:00:00) in space (linearNDFast)
20:14:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 15:00:00) in space (linearNDFast)
20:14:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 12:00:00, weight 0.94) and
after (2024-12-12 15:00:00, weight 0.06) in time
20:14:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:21 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:21 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:21 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:21 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.520482 (min) 0.145936 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.299348 (min) 0.159845 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.940257 (min) 3.06402 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: y_wind: -6.04244 (min) 0.049979 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:21 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.058891, mean: 0.817075, max: 1.121570
20:14:21 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:21 DEBUG opendrift.models.physics_methods:1061: min: 1.322064, mean: 4.846112, max: 5.769560
20:14:21 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.322064, mean: 4.846112, max: 5.769560
20:14:21 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:14:21 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:14:21 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:21 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:21 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:21 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:21 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:21 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:21 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:21 DEBUG opendrift.models.physics_methods:1061: min: 1.322065, mean: 4.846112, max: 5.769560
20:14:21 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:21 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.317724, dN_50: 0.024935
20:14:21 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:21 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01645457406460008
20:14:21 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:21 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:21 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:21 DEBUG opendrift.models.physics_methods:915: Advecting 562 of 5839 elements above 0.100m with wind-sheared ocean current (0.032513 m/s - 0.202566 m/s)
20:14:21 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:21 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.003255142549200838 and 0.4738722480685112 m/s
20:14:21 DEBUG opendrift.models.basemodel:2123: 5839 active elements (161 deactivated)
20:14:21 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:21 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:21 INFO opendrift.models.basemodel:2035: 2024-12-12 13:11:28.612916 - step 114 of 120 - 5839 active elements (161 deactivated)
20:14:21 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:21 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:21 DEBUG opendrift.models.basemodel:2054: 34.17504272957286 <- latitude -> 35.189490406154874
20:14:21 DEBUG opendrift.models.basemodel:2059: 23.58437211028301 <- longitude -> 24.679654402855455
20:14:21 DEBUG opendrift.models.basemodel:2064: -48.758994689083906 <- z -> 0.0
20:14:21 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:21 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:21 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 12:00:00 (before)
2024-12-12 15:00:00 (after)
20:14:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 12:00:00) in space (linearNDFast)
20:14:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 15:00:00) in space (linearNDFast)
20:14:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 12:00:00, weight 0.60) and
after (2024-12-12 15:00:00, weight 0.40) in time
20:14:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:21 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:21 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:21 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5839 elements
20:14:21 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:21 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 12:00:00 (before)
2024-12-12 15:00:00 (after)
20:14:21 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 12:00:00) in space (linearNDFast)
20:14:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:21 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 15:00:00) in space (linearNDFast)
20:14:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:21 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 12:00:00, weight 0.60) and
after (2024-12-12 15:00:00, weight 0.40) in time
20:14:21 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:21 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:21 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:21 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:21 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:21 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:21 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:21 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.500697 (min) 0.145603 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.307412 (min) 0.157842 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: x_wind: 1.06943 (min) 3.36306 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.82552 (min) -0.580494 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:21 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:21 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.047776, mean: 0.815191, max: 1.081128
20:14:21 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:21 DEBUG opendrift.models.physics_methods:1061: min: 1.190793, mean: 4.843281, max: 5.664586
20:14:21 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.190793, mean: 4.843281, max: 5.664586
20:14:21 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:14:21 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:14:21 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:21 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:14:21 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:14:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:21 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:21 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:14:21 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:21 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:21 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:21 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:21 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:22 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:22 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:22 DEBUG opendrift.models.physics_methods:1061: min: 1.190793, mean: 4.844220, max: 5.664586
20:14:22 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:22 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.322853, dN_50: 0.025337
20:14:22 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:22 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01586140524128087
20:14:22 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:22 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:22 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:22 DEBUG opendrift.models.physics_methods:915: Advecting 565 of 5837 elements above 0.100m with wind-sheared ocean current (0.019142 m/s - 0.198529 m/s)
20:14:22 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:22 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002234018929764057 and 0.4361597107635411 m/s
20:14:22 DEBUG opendrift.models.basemodel:2123: 5837 active elements (163 deactivated)
20:14:22 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:22 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:22 INFO opendrift.models.basemodel:2035: 2024-12-12 14:11:28.612916 - step 115 of 120 - 5837 active elements (163 deactivated)
20:14:22 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:22 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:22 DEBUG opendrift.models.basemodel:2054: 34.16033296261451 <- latitude -> 35.191811383744444
20:14:22 DEBUG opendrift.models.basemodel:2059: 23.583197766242705 <- longitude -> 24.679717935324298
20:14:22 DEBUG opendrift.models.basemodel:2064: -47.85467258914192 <- z -> 0.0
20:14:22 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5837 elements
20:14:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5837 elements
20:14:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5837 elements
20:14:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5837 elements
20:14:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5837 elements
20:14:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5837 elements
20:14:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 12:00:00 (before)
2024-12-12 15:00:00 (after)
20:14:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 12:00:00) in space (linearNDFast)
20:14:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 15:00:00) in space (linearNDFast)
20:14:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 12:00:00, weight 0.27) and
after (2024-12-12 15:00:00, weight 0.73) in time
20:14:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5837 elements
20:14:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5837 elements
20:14:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 12:00:00 (before)
2024-12-12 15:00:00 (after)
20:14:22 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 12:00:00) in space (linearNDFast)
20:14:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:22 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 15:00:00) in space (linearNDFast)
20:14:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:22 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 12:00:00, weight 0.27) and
after (2024-12-12 15:00:00, weight 0.73) in time
20:14:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:22 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:22 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:22 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:22 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:22 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.485626 (min) 0.147952 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.295113 (min) 0.151555 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.817159 (min) 3.69325 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.81447 (min) -0.712422 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:22 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:22 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.036145, mean: 0.816652, max: 1.072071
20:14:22 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:22 DEBUG opendrift.models.physics_methods:1061: min: 1.035749, mean: 4.853735, max: 5.640808
20:14:22 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.035749, mean: 4.853735, max: 5.640808
20:14:22 DEBUG opendrift.models.basemodel:662: 2 elements hit land, moving them to the coastline.
20:14:22 DEBUG opendrift.models.basemodel:1693: 2 elements scheduled for deactivation (stranded)
20:14:22 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:22 DEBUG opendrift.models.basemodel:1713: Removed 2 elements.
20:14:22 DEBUG opendrift.models.basemodel:1716: Removed 2 values from environment.
20:14:22 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:22 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:22 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:22 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:22 DEBUG opendrift.models.basemodel:1725: Removed 2 values from environment_profiles.
20:14:22 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:22 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:22 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:22 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:22 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:22 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:22 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:22 DEBUG opendrift.models.physics_methods:1061: min: 1.035749, mean: 4.854797, max: 5.640808
20:14:22 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:22 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.326921, dN_50: 0.025657
20:14:22 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:22 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.01572855831314859
20:14:22 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:22 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:22 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:22 DEBUG opendrift.models.physics_methods:915: Advecting 570 of 5835 elements above 0.100m with wind-sheared ocean current (0.028343 m/s - 0.195661 m/s)
20:14:22 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:22 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0010251372706738997 and 0.4332057593927892 m/s
20:14:22 DEBUG opendrift.models.basemodel:2123: 5835 active elements (165 deactivated)
20:14:22 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:22 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:22 INFO opendrift.models.basemodel:2035: 2024-12-12 15:11:28.612916 - step 116 of 120 - 5835 active elements (165 deactivated)
20:14:22 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:22 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:22 DEBUG opendrift.models.basemodel:2054: 34.14407645884261 <- latitude -> 35.1959379518846
20:14:22 DEBUG opendrift.models.basemodel:2059: 23.585122135869472 <- longitude -> 24.684855550406372
20:14:22 DEBUG opendrift.models.basemodel:2064: -46.932798530018154 <- z -> 0.0
20:14:22 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5835 elements
20:14:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5835 elements
20:14:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5835 elements
20:14:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5835 elements
20:14:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:22 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:22 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:22 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:22 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:22 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:22 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:22 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5835 elements
20:14:22 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5835 elements
20:14:22 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:22 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 15:00:00 (before)
2024-12-12 18:00:00 (after)
20:14:22 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:14:24 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:14:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:14:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:14:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:26 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 22x34x16) for time after (2024-12-12 18:00:00)
20:14:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 15:00:00) in space (linearNDFast)
20:14:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:26 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 18:00:00) in space (linearNDFast)
20:14:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 1
20:14:26 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 15:00:00, weight 0.94) and
after (2024-12-12 18:00:00, weight 0.06) in time
20:14:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5835 elements
20:14:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5835 elements
20:14:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 15:00:00 (before)
2024-12-12 18:00:00 (after)
20:14:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:14:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:14:26 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:26 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:14:26 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:14:26 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-12 18:00:00)
20:14:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 15:00:00) in space (linearNDFast)
20:14:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:26 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 18:00:00) in space (linearNDFast)
20:14:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:26 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 15:00:00, weight 0.94) and
after (2024-12-12 18:00:00, weight 0.06) in time
20:14:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:26 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:26 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:26 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:26 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.479837 (min) 0.196684 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.309425 (min) 0.153146 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: x_wind: 0.184311 (min) 3.94378 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.82625 (min) -0.737594 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:26 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.021777, mean: 0.807995, max: 1.078386
20:14:26 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:26 DEBUG opendrift.models.physics_methods:1061: min: 0.803951, mean: 4.828592, max: 5.657398
20:14:26 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.803951, mean: 4.828592, max: 5.657398
20:14:26 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:14:26 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:14:26 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:26 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:26 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:26 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:26 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:26 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:26 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:26 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:26 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:26 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:26 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:26 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:26 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:26 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:26 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:26 DEBUG opendrift.models.physics_methods:1061: min: 0.803951, mean: 4.829006, max: 5.657398
20:14:26 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:26 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.331756, dN_50: 0.026036
20:14:26 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:26 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.015821186790552534
20:14:26 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:26 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:26 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:26 DEBUG opendrift.models.physics_methods:915: Advecting 570 of 5834 elements above 0.100m with wind-sheared ocean current (0.028226 m/s - 0.193659 m/s)
20:14:26 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:26 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.002397108146539431 and 0.43194987039172206 m/s
20:14:26 DEBUG opendrift.models.basemodel:2123: 5834 active elements (166 deactivated)
20:14:26 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:26 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:26 INFO opendrift.models.basemodel:2035: 2024-12-12 16:11:28.612916 - step 117 of 120 - 5834 active elements (166 deactivated)
20:14:26 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:26 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:26 DEBUG opendrift.models.basemodel:2054: 34.13237347997115 <- latitude -> 35.20106580952601
20:14:26 DEBUG opendrift.models.basemodel:2059: 23.574254136229744 <- longitude -> 24.682496131416574
20:14:26 DEBUG opendrift.models.basemodel:2064: -45.94511082811321 <- z -> 0.0
20:14:26 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5834 elements
20:14:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5834 elements
20:14:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5834 elements
20:14:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5834 elements
20:14:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:26 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5834 elements
20:14:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5834 elements
20:14:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 15:00:00 (before)
2024-12-12 18:00:00 (after)
20:14:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 15:00:00) in space (linearNDFast)
20:14:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:26 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 18:00:00) in space (linearNDFast)
20:14:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:26 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 15:00:00, weight 0.60) and
after (2024-12-12 18:00:00, weight 0.40) in time
20:14:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:26 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:26 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:26 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5834 elements
20:14:26 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5834 elements
20:14:26 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:26 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 15:00:00 (before)
2024-12-12 18:00:00 (after)
20:14:26 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 15:00:00) in space (linearNDFast)
20:14:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:26 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 18:00:00) in space (linearNDFast)
20:14:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:26 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 15:00:00, weight 0.60) and
after (2024-12-12 18:00:00, weight 0.40) in time
20:14:26 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:26 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:26 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:26 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:26 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:26 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:26 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:26 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.502563 (min) 0.221154 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.290957 (min) 0.153186 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: x_wind: -1.10371 (min) 3.97733 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.79532 (min) -0.381853 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:26 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:26 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.032097, mean: 0.754139, max: 1.045493
20:14:26 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:26 DEBUG opendrift.models.physics_methods:1061: min: 0.976033, mean: 4.648164, max: 5.570447
20:14:27 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 0.976033, mean: 4.648164, max: 5.570447
20:14:27 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:14:27 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:14:27 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:27 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:27 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:27 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:27 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:27 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:27 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:27 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:27 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:27 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:27 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:27 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:27 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:27 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:27 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:27 DEBUG opendrift.models.physics_methods:1061: min: 0.976033, mean: 4.648531, max: 5.570447
20:14:27 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:27 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.340702, dN_50: 0.026738
20:14:27 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:27 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.015338732848515103
20:14:27 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:27 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:27 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:27 DEBUG opendrift.models.physics_methods:915: Advecting 575 of 5833 elements above 0.100m with wind-sheared ocean current (0.023040 m/s - 0.194245 m/s)
20:14:27 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:27 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.00200628531223173 and 0.4364005030950741 m/s
20:14:27 DEBUG opendrift.models.basemodel:2123: 5833 active elements (167 deactivated)
20:14:27 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:27 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:27 INFO opendrift.models.basemodel:2035: 2024-12-12 17:11:28.612916 - step 118 of 120 - 5833 active elements (167 deactivated)
20:14:27 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:27 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:27 DEBUG opendrift.models.basemodel:2054: 34.125248648431075 <- latitude -> 35.20113443958061
20:14:27 DEBUG opendrift.models.basemodel:2059: 23.567774553300925 <- longitude -> 24.680463048043492
20:14:27 DEBUG opendrift.models.basemodel:2064: -44.62605501153555 <- z -> 0.0
20:14:27 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 15:00:00 (before)
2024-12-12 18:00:00 (after)
20:14:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 15:00:00) in space (linearNDFast)
20:14:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 18:00:00) in space (linearNDFast)
20:14:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 15:00:00, weight 0.27) and
after (2024-12-12 18:00:00, weight 0.73) in time
20:14:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 15:00:00 (before)
2024-12-12 18:00:00 (after)
20:14:27 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 15:00:00) in space (linearNDFast)
20:14:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:27 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 18:00:00) in space (linearNDFast)
20:14:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:27 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 15:00:00, weight 0.27) and
after (2024-12-12 18:00:00, weight 0.73) in time
20:14:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:27 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:27 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:27 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:27 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:27 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.50503 (min) 0.245852 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.274687 (min) 0.153909 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: x_wind: -3.0179 (min) 4.06621 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.7942 (min) -0.0133284 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:27 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:27 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.072571, mean: 0.717018, max: 1.052364
20:14:27 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:27 DEBUG opendrift.models.physics_methods:1061: min: 1.467610, mean: 4.534987, max: 5.588723
20:14:27 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.467610, mean: 4.534987, max: 5.588723
20:14:27 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:14:27 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:14:27 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:27 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:27 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:27 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:27 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:27 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:27 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:27 DEBUG opendrift.models.physics_methods:1061: min: 1.467610, mean: 4.534987, max: 5.588723
20:14:27 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:27 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.344998, dN_50: 0.027075
20:14:27 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:27 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.015439516072930632
20:14:27 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:27 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:27 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:27 DEBUG opendrift.models.physics_methods:915: Advecting 586 of 5833 elements above 0.100m with wind-sheared ocean current (0.032969 m/s - 0.194879 m/s)
20:14:27 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:27 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.0026168362393691126 and 0.4453630754659665 m/s
20:14:27 DEBUG opendrift.models.basemodel:2123: 5833 active elements (167 deactivated)
20:14:27 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:27 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:27 INFO opendrift.models.basemodel:2035: 2024-12-12 18:11:28.612916 - step 119 of 120 - 5833 active elements (167 deactivated)
20:14:27 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:27 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:27 DEBUG opendrift.models.basemodel:2054: 34.120825514422556 <- latitude -> 35.20376038623969
20:14:27 DEBUG opendrift.models.basemodel:2059: 23.569367725309107 <- longitude -> 24.674874544556623
20:14:27 DEBUG opendrift.models.basemodel:2064: -43.71005172949014 <- z -> 0.0
20:14:27 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:27 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:27 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:27 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:27 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:27 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:27 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:27 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5833 elements
20:14:27 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:27 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 18:00:00 (before)
2024-12-12 21:00:00 (after)
20:14:27 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_sea_water_velocity to retrieve x_sea_water_velocity
20:14:28 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_sea_water_velocity to retrieve y_sea_water_velocity
20:14:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:30 DEBUG opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
20:14:30 DEBUG opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
20:14:30 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:30 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 22x36x15) for time after (2024-12-12 21:00:00)
20:14:30 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 18:00:00) in space (linearNDFast)
20:14:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:30 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 21:00:00) in space (linearNDFast)
20:14:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift:136: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 1
20:14:30 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 18:00:00, weight 0.94) and
after (2024-12-12 21:00:00, weight 0.06) in time
20:14:30 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:30 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:30 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:30 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:30 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:30 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:30 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5833 elements
20:14:30 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5833 elements
20:14:30 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:30 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 18:00:00 (before)
2024-12-12 21:00:00 (after)
20:14:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using eastward_wind to retrieve x_wind
20:14:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:452: Using northward_wind to retrieve y_wind
20:14:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:552: North is up, no rotation necessary
20:14:30 DEBUG opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
20:14:30 DEBUG opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
20:14:30 DEBUG opendrift.readers.basereader.structured:313: Fetched env-block (size 8x8x1) for time after (2024-12-12 21:00:00)
20:14:30 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 18:00:00) in space (linearNDFast)
20:14:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:30 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 21:00:00) in space (linearNDFast)
20:14:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:30 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 18:00:00, weight 0.94) and
after (2024-12-12 21:00:00, weight 0.06) in time
20:14:30 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:30 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:30 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:30 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:30 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:30 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:30 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:30 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.482054 (min) 0.226707 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.274267 (min) 0.158823 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: x_wind: -4.60725 (min) 3.81987 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.7695 (min) 0.252311 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 1 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:30 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:30 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.093060, mean: 0.676892, max: 1.019519
20:14:30 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:30 DEBUG opendrift.models.physics_methods:1061: min: 1.661927, mean: 4.412087, max: 5.500819
20:14:30 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.661927, mean: 4.412087, max: 5.500819
20:14:30 DEBUG opendrift.models.basemodel:662: 1 elements hit land, moving them to the coastline.
20:14:30 DEBUG opendrift.models.basemodel:1693: 1 elements scheduled for deactivation (stranded)
20:14:30 DEBUG opendrift.models.basemodel:1695: (z: 0.000000 to 0.000000)
20:14:30 DEBUG opendrift.models.basemodel:1713: Removed 1 elements.
20:14:30 DEBUG opendrift.models.basemodel:1716: Removed 1 values from environment.
20:14:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for z
20:14:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_temperature
20:14:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for sea_water_salinity
20:14:30 DEBUG opendrift.models.basemodel:1721: remove items from profile for ocean_vertical_diffusivity
20:14:30 DEBUG opendrift.models.basemodel:1725: Removed 1 values from environment_profiles.
20:14:30 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:30 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:30 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:30 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:30 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:30 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:30 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:30 DEBUG opendrift.models.physics_methods:1061: min: 1.661927, mean: 4.412314, max: 5.500819
20:14:30 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:30 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.352332, dN_50: 0.027651
20:14:30 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:30 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.014957774305080981
20:14:30 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:30 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:30 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:31 DEBUG opendrift.models.physics_methods:915: Advecting 592 of 5832 elements above 0.100m with wind-sheared ocean current (0.006922 m/s - 0.191322 m/s)
20:14:31 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:31 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 8.721287848896291e-05 and 0.4606982679056434 m/s
20:14:31 DEBUG opendrift.models.basemodel:2123: 5832 active elements (168 deactivated)
20:14:31 DEBUG opendrift.models.basemodel:890: to be seeded: 0, already seeded 6000
20:14:31 DEBUG opendrift.models.basemodel:2034: ======================================================================
20:14:31 INFO opendrift.models.basemodel:2035: 2024-12-12 19:11:28.612916 - step 120 of 120 - 5832 active elements (168 deactivated)
20:14:31 DEBUG opendrift.models.basemodel:2041: 0 elements scheduled.
20:14:31 DEBUG opendrift.models.basemodel:2043: ======================================================================
20:14:31 DEBUG opendrift.models.basemodel:2054: 34.11455811127463 <- latitude -> 35.204304375954024
20:14:31 DEBUG opendrift.models.basemodel:2059: 23.570766084873338 <- longitude -> 24.66869577440685
20:14:31 DEBUG opendrift.models.basemodel:2064: -42.6622769564295 <- z -> 0.0
20:14:31 DEBUG opendrift.models.basemodel:2065: ---------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['ocean_mixed_layer_thickness']
20:14:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader constant_reader
20:14:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from constant_reader covering 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:31 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_sea_water_velocity', 'y_sea_water_velocity']
20:14:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd
20:14:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://tds.hycom.org/thredds/dodsC/FMRC_ESPC-D-V02_uv3z/FMRC_ESPC-D-V02_uv3z_best.ncd covering 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 18:00:00 (before)
2024-12-12 21:00:00 (after)
20:14:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 18:00:00) in space (linearNDFast)
20:14:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 21:00:00) in space (linearNDFast)
20:14:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 18:00:00, weight 0.60) and
after (2024-12-12 21:00:00, weight 0.40) in time
20:14:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind']
20:14:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd
20:14:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from https://pae-paha.pacioos.hawaii.edu/thredds/dodsC/ncep_global/NCEP_Global_Atmospheric_Model_best.ncd covering 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.structured:213: Shifting coordinates to 0-360
20:14:31 DEBUG opendrift.readers.basereader.structured:222: Reader time:
2024-12-12 18:00:00 (before)
2024-12-12 21:00:00 (after)
20:14:31 DEBUG opendrift.readers.basereader.structured:334: Interpolating before (2024-12-12 18:00:00) in space (linearNDFast)
20:14:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:31 DEBUG opendrift.readers.basereader.structured:340: Interpolating after (2024-12-12 21:00:00) in space (linearNDFast)
20:14:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
20:14:31 DEBUG opendrift.readers.basereader.structured:355: Interpolating before (2024-12-12 18:00:00, weight 0.60) and
after (2024-12-12 21:00:00, weight 0.40) in time
20:14:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:31 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:31 DEBUG opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['sea_water_temperature', 'sea_water_salinity', 'ocean_vertical_diffusivity']
20:14:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 10 for sea_water_temperature for all profiles
20:14:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 34 for sea_water_salinity for all profiles
20:14:31 DEBUG opendrift.models.basemodel.environment:803: Using fallback value 0.02 for ocean_vertical_diffusivity for all profiles
20:14:31 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:31 DEBUG opendrift.models.basemodel.environment:905: x_sea_water_velocity: -0.489996 (min) 0.191989 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: y_sea_water_velocity: -0.275437 (min) 0.151342 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: x_wind: -4.23797 (min) 2.95846 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: y_wind: -5.88107 (min) 0.0910055 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_height: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: upward_sea_water_velocity: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_significant_height: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_area_fraction: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_x_velocity: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_ice_y_velocity: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_water_temperature: 10 (min) 10 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_water_salinity: 34 (min) 34 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: sea_floor_depth_below_sea_level: 10000 (min) 10000 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:905: ocean_mixed_layer_thickness: 20 (min) 20 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:31 DEBUG opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.090803, mean: 0.575644, max: 1.030367
20:14:31 DEBUG opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
20:14:31 DEBUG opendrift.models.physics_methods:1061: min: 1.641645, mean: 4.071798, max: 5.530007
20:14:31 DEBUG opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.641645, mean: 4.071798, max: 5.530007
20:14:31 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:14:31 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:14:31 DEBUG opendrift.models.basemodel:2108: Calling OpenOil.update()
20:14:31 DEBUG opendrift.models.openoil.openoil:708: NOAA oil weathering
20:14:31 DEBUG opendrift.models.openoil.openoil:813: Calculating evaporation - NOAA
20:14:31 DEBUG opendrift.models.openoil.openoil:819: All surface oil elements older than 24 hours, skipping further evaporation.
20:14:31 DEBUG opendrift.models.openoil.openoil:846: Calculating emulsification - NOAA
20:14:31 DEBUG opendrift.models.openoil.openoil:549: Calculating: biodegradation (half_time)
20:14:31 DEBUG opendrift.models.physics_methods:1043: Using mean period Tm02 as wave period
20:14:31 DEBUG opendrift.models.physics_methods:1061: min: 1.641645, mean: 4.071798, max: 5.530006
20:14:31 DEBUG opendrift.models.openoil.openoil:1118: Generating wave breaking droplet size spectrum
20:14:31 DEBUG opendrift.models.openoil.openoil:1145: Droplet distribution median diameter dV_50: 0.381318, dN_50: 0.029926
20:14:31 DEBUG opendrift.models.oceandrift:512: Using diffusivity from Large1994 since model diffusivities not available
20:14:31 DEBUG opendrift.models.oceandrift:526: Diffusivities are in range 0.0 to 0.015116887063406212
20:14:31 DEBUG opendrift.models.oceandrift:545: TSprofiles deactivated for vertical mixing
20:14:31 DEBUG opendrift.models.oceandrift:559: Vertical mixing module:environment
20:14:31 DEBUG opendrift.models.oceandrift:562: Turbulent diffusion with random walk scheme using 60 fast time steps of dt=60s
20:14:31 DEBUG opendrift.models.physics_methods:915: Advecting 599 of 5832 elements above 0.100m with wind-sheared ocean current (0.017456 m/s - 0.184036 m/s)
20:14:31 DEBUG opendrift.models.physics_methods:933: No Stokes drift velocity available
20:14:31 DEBUG opendrift.models.basemodel:1671: Moving elements according to horizontal diffusivity of 20.0, with speeds between 0.000799149371708661 and 0.4191001003003242 m/s
20:14:31 DEBUG opendrift.models.basemodel:2123: 5832 active elements (168 deactivated)
20:14:31 DEBUG opendrift.models.basemodel:2152: Cleaning up
20:14:31 DEBUG opendrift.models.basemodel.environment:607: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
20:14:31 DEBUG opendrift.models.basemodel.environment:609: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:613: Calling reader global_landmask
20:14:31 DEBUG opendrift.models.basemodel.environment:614: ----------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:630: Data needed for 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 5832 elements
20:14:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
20:14:31 DEBUG opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
20:14:31 DEBUG opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
20:14:31 DEBUG opendrift.models.basemodel.environment:764: Obtained data for all elements.
20:14:31 DEBUG opendrift.models.basemodel.environment:777: ---------------------------------------
20:14:31 DEBUG opendrift.models.basemodel.environment:778: Finished processing all variable groups
20:14:31 DEBUG opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
20:14:31 DEBUG opendrift.models.basemodel.environment:905: land_binary_mask: 0 (min) 0 (max)
20:14:31 DEBUG opendrift.models.basemodel.environment:907: ---------------------------------
20:14:31 DEBUG opendrift.models.basemodel:659: No elements hit coastline.
20:14:31 DEBUG opendrift.models.basemodel:2182: Writing and closing output file: oil.nc
20:14:31 INFO opendrift.export.io_netcdf:121: Wrote 21 steps to file oil.nc
20:14:32 DEBUG opendrift.export.io_netcdf:189: Making netCDF file CDM compliant with fixed dimensions
20:14:33 DEBUG opendrift.models.basemodel:1709: No elements to deactivate
20:14:33 DEBUG opendrift.export.io_netcdf:294: Importing from oil.nc
/opt/conda/envs/opendrift/lib/python3.11/site-packages/numpy/ma/core.py:467: RuntimeWarning: invalid value encountered in cast
fill_value = np.array(fill_value, copy=False, dtype=ndtype)
20:14:34 DEBUG opendrift.models.basemodel:1713: Removed 168 elements.
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:x_sea_water_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:x_sea_water_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:y_sea_water_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:y_sea_water_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:x_wind -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:x_wind -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:y_wind -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:y_wind -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_surface_height -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_surface_height -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:upward_sea_water_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:upward_sea_water_velocity -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_surface_wave_significant_height -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_surface_wave_significant_height -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_surface_wave_stokes_drift_x_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_surface_wave_stokes_drift_x_velocity -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_surface_wave_stokes_drift_y_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_surface_wave_stokes_drift_y_velocity -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_surface_wave_period_at_variance_spectral_density_maximum -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_surface_wave_period_at_variance_spectral_density_maximum -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_ice_area_fraction -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_ice_area_fraction -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_ice_x_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_ice_x_velocity -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_ice_y_velocity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_ice_y_velocity -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_water_temperature -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_water_temperature -> 10
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_water_salinity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_water_salinity -> 34
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:sea_floor_depth_below_sea_level -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:sea_floor_depth_below_sea_level -> 10000
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:ocean_vertical_diffusivity -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:ocean_vertical_diffusivity -> 0.02
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:land_binary_mask -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:land_binary_mask -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:constant:ocean_mixed_layer_thickness -> 20.0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: environment:fallback:ocean_mixed_layer_thickness -> 50
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: general:use_auto_landmask -> True
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:current_uncertainty -> 0.0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:current_uncertainty_uniform -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:max_speed -> 1.3
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: readers:max_number_of_fails -> 1
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: general:simulation_name ->
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: general:coastline_action -> stranding
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: general:coastline_approximation_precision -> 0.001
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: general:time_step_minutes -> 60
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: general:time_step_output_minutes -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:ocean_only -> True
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:number -> 1
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:max_age_seconds -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:advection_scheme -> euler
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:horizontal_diffusivity -> 20.0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:profiles_depth -> 50
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:wind_uncertainty -> 0.0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:relative_wind -> False
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:deactivate_north_of -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:deactivate_south_of -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:deactivate_east_of -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:deactivate_west_of -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:origin_marker -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:z -> 0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:wind_drift_factor -> 0.03
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:current_drift_factor -> 1
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:terminal_velocity -> 0.0
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:oil_film_thickness -> 0.001
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:vertical_advection -> False
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:vertical_mixing -> True
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: vertical_mixing:timestep -> 60
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: vertical_mixing:diffusivitymodel -> environment
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: vertical_mixing:background_diffusivity -> 1.2e-05
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: vertical_mixing:TSprofiles -> False
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:wind_drift_depth -> 0.1
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:stokes_drift -> True
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:stokes_drift_profile -> Phillips
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:use_tabularised_stokes_drift -> False
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:tabularised_stokes_drift_fetch -> 25000
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: general:seafloor_action -> lift_to_seafloor
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: drift:truncate_ocean_model_below_m -> None
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:seafloor -> False
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:m3_per_hour -> 1
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:droplet_size_distribution -> uniform
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:droplet_diameter_mu -> 0.001
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:droplet_diameter_sigma -> 0.0005
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:droplet_diameter_min_subsea -> 0.0005
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:droplet_diameter_max_subsea -> 0.005
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: processes:dispersion -> False
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: processes:evaporation -> True
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: processes:emulsification -> True
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: processes:biodegradation -> True
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: biodegradation:method -> half_time
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: processes:update_oilfilm_thickness -> False
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: wave_entrainment:droplet_size_distribution -> Johansen et al. (2015)
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: wave_entrainment:entrainment_rate -> Li et al. (2017)
20:14:34 DEBUG opendrift.export.io_netcdf:393: Setting imported config: seed:oil_type -> GENERIC MEDIUM CRUDE
20:14:34 DEBUG opendrift.models.basemodel:95: Changed mode from Mode.Result to Mode.Result
Plot and animate results
o.animation(color='z', markersize='mass_oil', markersize_scaling=80)
20:14:34 DEBUG opendrift.models.basemodel:2364: Setting up map: corners=None, fast=False, lscale=None
20:14:35 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:14:53 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:14:55 DEBUG opendrift.models.basemodel:3044: Saving animation..
20:14:55 INFO opendrift.models.basemodel:4613: Saving animation to /root/project/docs/source/gallery/animations/example_oilspill_seafloor_biodegradation_0.gif...
20:14:56 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:14:57 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:14:59 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:01 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:03 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:04 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:07 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:08 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:10 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:12 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:16 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:17 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:19 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:21 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:23 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:25 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:27 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:29 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:33 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:34 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:38 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:40 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:41 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:43 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:45 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:47 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:48 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:50 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:52 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:54 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:56 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:58 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:15:59 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:01 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:03 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:05 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:07 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:09 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:10 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:12 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:16 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:18 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:20 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:22 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:25 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:27 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:29 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:33 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:34 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:38 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:40 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:42 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:44 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:45 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:47 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:49 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:51 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:52 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:54 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:55 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:57 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:16:58 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:00 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:01 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:03 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:04 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:06 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:08 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:09 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:11 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:12 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:15 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:17 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:19 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:21 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:22 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:24 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:25 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:27 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:28 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:30 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:33 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:35 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:38 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:39 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:41 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:42 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:44 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:45 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:47 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:48 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:50 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:51 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:53 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:54 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:56 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:57 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:17:59 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:00 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:02 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:03 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:05 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:06 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:08 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:09 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:11 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:12 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:15 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:17 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:18 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:20 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:21 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:23 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:24 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:26 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:27 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:29 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:30 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:32 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:33 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:35 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:38 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:40 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:41 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:43 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:44 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:46 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:47 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:49 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:50 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:52 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:54 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:55 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:57 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:18:58 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:00 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:01 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:03 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:04 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:06 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:08 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:09 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:11 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:13 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:16 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:18 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:19 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:21 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:23 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:24 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:26 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:27 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:29 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:32 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:34 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:37 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:39 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:40 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:42 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:44 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:46 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:47 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:49 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:51 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:53 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:55 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:57 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:19:58 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:00 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:02 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:04 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:05 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:07 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:09 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:10 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:12 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:16 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:18 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:19 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:21 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:23 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:25 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:26 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:28 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:30 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:32 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:33 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:35 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:38 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:40 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:41 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:43 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:45 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:46 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:48 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:49 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:51 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:52 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:54 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:55 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:57 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:20:59 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:00 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:02 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:04 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:05 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:07 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:09 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:10 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:12 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:14 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:15 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:17 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:19 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:21 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:23 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:24 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:26 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:28 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:29 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:31 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:32 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:34 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:36 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:37 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:39 DEBUG opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (23.056771850585935, 25.088203811645506, 33.899891662597646, 35.430712890624996)..
20:21:45 DEBUG opendrift.models.basemodel:4651: MPLBACKEND = agg
20:21:45 DEBUG opendrift.models.basemodel:4652: DISPLAY = None
20:21:45 DEBUG opendrift.models.basemodel:4653: Time to save animation: 0:06:49.734173
20:21:45 INFO opendrift.models.basemodel:3037: Time to make animation: 0:07:10.797973
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, time_relative = o.get_time_array()
time = np.array([t.total_seconds() / 3600. for t in time_relative])
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)
20:21:48 DEBUG opendrift.models.basemodel:3044: Saving animation..
20:21:48 INFO opendrift.models.basemodel:4613: Saving animation to /root/project/docs/source/gallery/animations/example_oilspill_seafloor_biodegradation_1.gif...
20:22:03 DEBUG opendrift.models.basemodel:4651: MPLBACKEND = agg
20:22:03 DEBUG opendrift.models.basemodel:4652: DISPLAY = None
20:22:03 DEBUG opendrift.models.basemodel:4653: Time to save animation: 0:00:15.145296
20:22:03 INFO opendrift.models.basemodel:3251: Time to make animation: 0:00:15.850021
Total running time of the script: (10 minutes 42.590 seconds)